/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR */
.navbar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo {
    color: white;
    font-size: 26px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 32px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: rgba(255,255,255,0.2);
}

/* SUBMENU */
.menu-item-has-children {
    position: relative;
}

.submenu-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 5px;
    z-index: 1000;
    list-style: none;
}

.menu-item-has-children:hover .submenu {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.submenu a:hover {
    background-color: #f8f9fa;
    color: #3498db;
    padding-left: 25px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 140px 20px 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.hero-title {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: #ffd700;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #2c3e50;
}

.btn-large {
    width: 100%;
    font-size: 18px;
    padding: 18px 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #3498db;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* SECTIONS */
.section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #7f8c8d;
}

/* SOBRE SECTION */
.sobre-section {
    background-color: #f8f9fa;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.sobre-text h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 25px;
    font-size: 24px;
}

.sobre-text h3:first-child {
    margin-top: 0;
}

.sobre-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sobre-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 36px;
    color: #3498db;
    margin-bottom: 10px;
}

.feature-box h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* SERVIÇOS SECTION */
.servicos-section {
    background-color: #fff;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.servico-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #3498db;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(52, 152, 219, 0.2);
}

.servico-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.servico-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 22px;
}

.servico-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.servico-list {
    list-style: none;
    padding-left: 0;
}

.servico-list li {
    color: #555;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.servico-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* DIFERENCIAIS SECTION */
.diferenciais-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.diferencial-item {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

.diferencial-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.diferencial-number {
    font-size: 48px;
    font-weight: bold;
    color: #3498db;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 30px;
}

.diferencial-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 22px;
    position: relative;
    z-index: 1;
}

.diferencial-item p {
    color: #666;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* DEPOIMENTOS SECTION */
.depoimento-autor {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 2px solid #3498db;
    padding-top: 20px;
}

.depoimento-autor strong {
    color: #2c3e50;
    font-size: 18px;
}

.depoimento-autor span {
    color: #7f8c8d;
    font-size: 14px;
}

/* CONTATO SECTION */
.contato-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.contato-section .section-title,
.contato-section .section-subtitle {
    color: white;
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contato-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contato-info > p {
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.info-icon {
    font-size: 28px;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.info-item p {
    opacity: 0.9;
    margin: 0;
}

.horario-atendimento {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.horario-atendimento strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

.horario-atendimento p {
    margin: 5px 0;
    opacity: 0.9;
}

/* FORMULÁRIO */
.contato-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* FOOTER */
.footer {
    background-color: #1a252f;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #3498db;
}

.footer-col p {
    color: #bbb;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .sobre-content {
        grid-template-columns: 1fr;
    }
    
    .contato-wrapper {
        grid-template-columns: 1fr;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px;
    }
    
    /* Submenu Mobile */
    .menu-item-has-children {
        position: relative;
    }
    
    .submenu {
        position: static;
        display: none;
        background: rgba(255,255,255,0.1);
        box-shadow: none;
        margin: 0;
        padding: 0;
        border-radius: 0;
    }
    
    .menu-item-has-children.submenu-open .submenu {
        display: block;
    }
    
    .menu-item-has-children.submenu-open .submenu-arrow {
        transform: rotate(180deg);
    }
    
    .submenu a {
        color: white;
        padding-left: 35px;
        font-size: 14px;
    }
    
    .submenu a:hover {
        background-color: rgba(255,255,255,0.1);
        color: white;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .sobre-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .servicos-grid,
    .diferenciais-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 120px 15px 60px;
    }
    
    .section {
        padding: 60px 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .contato-form {
        padding: 25px;
    }
}poimentos-section {
    background-color: #fff;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.depoimento-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.depoimento-aspas {
    font-size: 80px;
    color: #3498db;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 30px;
    font-family: Georgia, serif;
}

.depoimento-texto {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.de