/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, #f5f6f7 80%, #e9ecef 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(44, 62, 80, 0.08);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(44, 62, 80, 0.15);
}

.nav-logo::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -12px;
    right: -12px;
    bottom: -8px;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.08), rgba(44, 62, 80, 0.03));
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0.9);
}

.nav-logo:hover::before {
    opacity: 1;
    transform: scale(1);
}

.navbar {
    padding: 1.8rem 0;
    position: relative;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 100px;
}

.nav-logo {
    position: relative;
    z-index: 10;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-logo .logo {
    height: 100px;
    width: auto;
    background: #fff;
    border-radius: 20px;
    padding: 10px 28px;
    box-shadow: 0 2px 12px 0 rgba(44,62,80,0.10);
    filter: none;
    transition: none;
    position: relative;
    cursor: pointer;
    z-index: 2;
}

.nav-logo .logo:hover {
    transform: none;
    filter: none;
    box-shadow: 0 2px 12px 0 rgba(44,62,80,0.10);
    background: #fff;
}

.nav-logo .logo:active {
    transform: scale(0.98);
}

.nav-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-logo a:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    gap: 3.5rem;
    list-style: none;
    align-items: center;
    flex: 4;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.2s, box-shadow 0.2s;
    position: relative;
    text-transform: uppercase;
    padding: 16px 0;
    cursor: pointer;
    opacity: 0.92;
    border-radius: 4px;
}

.nav-link:hover, .nav-link.active {
    color: #34495e;
    background: rgba(44,62,80,0.06);
    box-shadow: 0 2px 8px rgba(44,62,80,0.07);
}

.nav-link:hover {
    color: #34495e;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 8px;
    left: 50%;
    background: linear-gradient(90deg, #34495e, #2c3e50);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
    opacity: 0;
}

.nav-link:hover::after {
    width: 100%;
    opacity: 1;
}

.nav-link.active::after {
    width: 100%;
    opacity: 1;
}

.nav-cta {
    background: linear-gradient(90deg, #34495e 80%, #2c3e50 100%);
    color: #fff;
    font-weight: 700;
    padding: 16px 38px;
    border-radius: 10px;
    font-size: 1rem;
    margin-left: 2.5rem;
    box-shadow: 0 4px 18px rgba(44,62,80,0.13);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    border: none;
    outline: none;
    text-decoration: none;
    white-space: nowrap;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover {
    background: linear-gradient(90deg, #2c3e50 80%, #34495e 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:active {
    transform: translateY(0);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
}

.nav-toggle:hover {
    background: rgba(52, 73, 94, 0.05);
}

.bar {
    width: 28px;
    height: 3px;
    background-color: #2c3e50;
    margin: 4px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 50%, #1a252f 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #ecf0f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ecf0f1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    color: #bdc3c7;
    max-width: 500px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
/* Tipografia fluida básica */
.hero-title { font-size: clamp(2rem, 8vw, 4rem); }
.hero-subtitle { font-size: clamp(1rem, 3.8vw, 1.6rem); }
.hero-description { font-size: clamp(0.95rem, 3.4vw, 1.2rem); }
.btn { font-size: clamp(0.95rem, 3vw, 1rem); }
.section-title { font-size: clamp(1.6rem, 6vw, 2.8rem); }
.section-subtitle { font-size: clamp(1rem, 3.8vw, 1.3rem); }

/* Bloqueio de rolagem quando menu está aberto */
.menu-open { overflow: hidden; }

.btn-primary {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 73, 94, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 73, 94, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.hero-placeholder::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 22px;
    z-index: -1;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #34495e, #2c3e50);
    border-radius: 2px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Sobre Section */
.sobre {
    padding: 100px 0;
    background: linear-gradient(180deg, #ecf0f1 0%, #f8f9fa 100%);
    position: relative;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 73, 94, 0.1), transparent);
}

.sobre-content {
    max-width: 800px;
    margin: 0 auto;
}

.sobre-item {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(52, 73, 94, 0.05);
    position: relative;
    overflow: hidden;
}

.sobre-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #34495e, #2c3e50);
    transition: width 0.3s ease;
}

.sobre-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.sobre-item:hover::before {
    width: 8px;
}

.sobre-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(52, 73, 94, 0.2);
    position: relative;
}

.sobre-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(52, 73, 94, 0.2), rgba(44, 62, 80, 0.1));
    border-radius: 18px;
    z-index: -1;
}

.sobre-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.sobre-info p {
    color: #7f8c8d;
    line-height: 1.7;
}

/* Missão destaque removido: passa a utilizar o mesmo card .sobre-item */

/* Serviços Section */
.servicos {
    padding: 100px 0;
    background: white;
    position: relative;
}

.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 73, 94, 0.1), transparent);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.servico-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(52, 73, 94, 0.05);
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #34495e, #2c3e50);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.servico-card:hover::before {
    transform: scaleX(1);
}

.servico-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(52, 73, 94, 0.2);
    position: relative;
}

.servico-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, rgba(52, 73, 94, 0.2), rgba(44, 62, 80, 0.1));
    border-radius: 50%;
    z-index: -1;
}

.servico-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.servico-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Contato Section */
.contato {
    padding: 100px 0;
    background: linear-gradient(180deg, #ecf0f1 0%, #f8f9fa 100%);
    position: relative;
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 73, 94, 0.1), transparent);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Permitir que todo o bloco de endereço seja clicável sem parecer link azul */
.contato-item-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    border-radius: 12px;
    padding: 8px;
}

.contato-item-link:hover {
    background-color: rgba(44, 62, 80, 0.04);
    box-shadow: 0 4px 16px rgba(44,62,80,0.08);
}

.maps-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 0.85rem;
    color: #34495e;
    opacity: 0.8;
}

.contato-item-link:hover .maps-hint {
    opacity: 1;
    text-decoration: underline;
}

.contato-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contato-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contato-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Form Styles */
.contato-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(52, 73, 94, 0.05);
    position: relative;
}

.contato-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #34495e, #2c3e50);
    border-radius: 20px 20px 0 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafbfc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #34495e;
    box-shadow: 0 0 0 4px rgba(52, 73, 94, 0.1);
    background: white;
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #2c3e50 0%, #1a252f 100%);
    color: white;
    padding: 4rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.footer-logo-img {
    height: 120px;
    margin-bottom: 1rem;
    filter: none;
    opacity: 1;
}

.footer-logo p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 1.2rem;
    text-align: center;
    margin: 0 auto;
}



.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-logo {
        justify-content: flex-start;
        flex: 0;
    }
    
    .nav-logo .logo {
        height: 80px;
        width: auto;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
        margin-left: 0;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        padding: 2.5rem 0;
        border-top: 1px solid rgba(44, 62, 80, 0.1);
        gap: 1.5rem;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 15px 0;
        opacity: 1;
    }
    
    .nav-cta {
        margin-top: 1rem;
        padding: 15px 30px;
        font-size: 0.9rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-img {
        max-width: 250px;
        height: auto;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .sobre-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        text-align: center;
    }
}

@media (max-width: 360px) {
    .navbar { padding: 0.4rem 0 0.2rem 0; }
    .nav-link { padding: 12px 0; }
    .hero { padding: 16px 0 14px; }
    .hero-title { letter-spacing: -0.5px; }
    .btn { padding: 14px 18px; }
    .servico-card { padding: 1rem 0.6rem; }
    .contato-form { padding: 0.6rem; }
}

@media (min-width: 769px) {
    .hero-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        min-height: 80vh;
        gap: 5rem;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 4px;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .section-header {
        margin-bottom: 1.2rem;
    }
    .sobre {
        padding: 30px 0;
    }
    .sobre-item {
        padding: 1.2rem 0.5rem;
    }
    .servicos {
        padding: 30px 0;
    }
    .servico-card {
        padding: 1.2rem 0.5rem;
    }
    .contato {
        padding: 30px 0;
    }
    .contato-form {
        padding: 0.7rem;
    }
    .footer {
        padding: 1rem 0 0.2rem;
    }
    .footer-logo-img {
        height: 70px;
    }
    .hero-img {
        max-width: 100vw;
        width: 100%;
        min-width: 0;
        height: 220px;
        object-fit: cover;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-placeholder {
        width: 180px;
        height: 180px;
        font-size: 2.5rem;
    }
    .servico-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    .sobre-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .contato-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.7rem;
        width: 100%;
        align-items: center;
    }
    .btn {
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
    }
    .hero {
        padding: 24px 0 18px;
        min-height: unset;
        display: flex;
        align-items: center;
    }
    .hero-container {
        gap: 0.7rem;
        padding: 0 4px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .hero-content {
        max-width: 95vw;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .hero-title, .hero-subtitle, .hero-description {
        max-width: 95vw;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.1rem;
        line-height: 1.5;
        max-width: 340px;
    }
    .hero-buttons {
        width: 100%;
        gap: 0.5rem;
        margin-bottom: 0.7rem;
    }
    .btn {
        width: 98%;
        max-width: 340px;
        margin: 0.15rem auto;
        font-size: 1rem;
    }
    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 auto;
        margin-bottom: 0.5rem;
    }
    .hero-img {
        display: block;
        margin: 0 auto;
        max-width: 180px;
        width: 100%;
        height: auto;
    }
    .header {
        min-height: 56px;
        height: 56px;
        padding: 0;
    }
    .navbar {
        padding: 0.5rem 0 0.3rem 0;
    }
    .nav-container {
        min-height: 56px;
        padding: 0 8px;
        justify-content: flex-start;
    }
    .nav-logo {
        justify-content: flex-start;
        flex: 0 0 auto;
    }
    .nav-logo .logo {
        height: 44px;
        padding: 4px 10px;
        border-radius: 12px;
        box-shadow: 0 1px 4px 0 rgba(44,62,80,0.10);
    }
    .hero {
        padding-top: 70px;
    }
    .nav-container {
        justify-content: space-between;
        align-items: center;
        padding-left: 4px;
        padding-right: 4px;
    }
    .nav-logo {
        justify-content: flex-start;
        flex: 0 0 auto;
    }
    .nav-toggle {
        margin-left: auto;
    }
    .nav-logo {
        align-items: flex-start;
        display: flex;
        height: 100%;
    }
    .nav-logo .logo {
        margin-top: -8px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.slide-in-left {
    animation: slideInFromLeft 0.8s ease-out forwards;
    opacity: 0;
}

.slide-in-right {
    animation: slideInFromRight 0.8s ease-out forwards;
    opacity: 0;
}

/* Scroll suave para links internos */
html {
    scroll-behavior: smooth;
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible para melhor acessibilidade */
.btn:focus-visible,
.nav-link:focus-visible {
    outline: 2px solid #34495e;
    outline-offset: 2px;
}

/* Estilos para WhatsApp */
.whatsapp-link {
    color: #34495e; /* Cor principal do site */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: #2c3e50; /* Cor secundária do site */
    text-decoration: underline;
}

.btn .fab.fa-whatsapp {
    margin-right: 0.5rem;
}

/* Animação para o ícone do WhatsApp */
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.btn:hover .fab.fa-whatsapp {
    animation: whatsappPulse 0.6s ease-in-out;
} 