/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
    background-color: white;
    padding: 10px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    top: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #002855;
}

/* Logo */
.logo {
    height: 90px;
}

/* Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #002855;
}

.nav-links a.active {
    color: #002855;
    font-weight: bold;
}

.dropdown {
    position: relative;
}

.dropdown>a>i {
    margin-left: 6px;
    font-size: 0.75rem;
    vertical-align: middle;
    color: #002855;
}

.dropdown-content a i {
    margin-right: 8px;
    color: #002855;
}

.dropdown-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    min-width: 220px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    padding: 10px 0;
}

.dropdown-content li {
    list-style: none;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
    color: #002855;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Ícone da setinha */
.dropdown i {
    margin-left: 6px;
    font-size: 12px;
    color: #002855;
}

/* Espaçamento das setas nos dropdowns */
.dropdown-content a i {
    margin-right: 8px;
    color: #002855;
}

/* Setinha ao lado de "Serviços" mais próxima */
.dropdown>a>i {
    margin-left: 6px;
    font-size: 0.75rem;
    vertical-align: middle;
}

.cta-button {
    background-color: #002855;
    color: white;
    border: 2px solid #002855;
    padding: 10px 18px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.cta-button:hover {
    background-color: #000000;
    color: white;
    border-color: #000000;
}

.hero {
    position: relative;
    width: 100%;
    height: 65vh;
    background-image: url('./Images/Imagem\ 2.jpeg');
    background-size: cover;
    background-position: center 50%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 7%;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 40, 85, 0.8);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: white;
}

.hero-content h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.hero-content h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: white;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-content h4 {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.4s;
}

.hero-content h1 {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.6s;
}

.hero-content p {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
}

/* ===== PÁGINA NOSSAS EMPRESAS ===== */

/* Hero Section */
.empresas-hero {
    background: linear-gradient(135deg, #002855 0%, #001a3a 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.empresas-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.empresas-hero p {
    font-size: 1.2rem;
    color: #e0e0ff;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.stats-empresas {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #b0c4ff;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: #e0e0ff;
    margin: 0;
}

/* Introdução */
.empresas-intro {
    padding: 5rem 0;
    background: white;
}

.empresas-intro .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.empresas-intro h2 {
    font-size: 2.2rem;
    color: #002855;
    margin-bottom: 1.5rem;
    text-align: center;
}

.empresas-intro p {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Grid de Empresas */
.empresas-grid-section {
    padding: 3rem 0 6rem;
    background: #f8f9ff;
}

.empresas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Aumento do tamanho do card */
.empresa-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 40, 85, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eef1f7;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
}

.empresa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 40, 85, 0.15);
}

/* Logo mantém proporção */
.empresa-logo {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #f8f9ff;
    border-bottom: 1px solid #eef1f7;
}

.empresa-logo img {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Container principal com imagem ao lado */
.empresa-content-wrapper {
    display: flex;
    flex: 1;
    padding: 2rem;
    gap: 2rem;
    min-height: 280px;
}

/* Texto ocupa 60%, imagem 40% */
.empresa-text {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
}

.empresa-illustration {
    flex: 0 0 40%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eef1f7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 220px;
    align-self: center;
}

.empresa-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    margin-left: -5px;
}

.empresa-card:hover .empresa-illustration img {
    transform: scale(1.05);
}

/* Ajustes no texto */
.empresa-content-wrapper h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #002855;
    margin-bottom: 0.75rem;
}

.empresa-categoria {
    color: #002855;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.empresa-desc {
    color: #333333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Tags distribuídas simetricamente */
.empresa-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: #f8f9ff;
    border-top: 1px solid #eef1f7;
    border-radius: 0 0 16px 16px;
}

.tag {
    background: white;
    color: #002855;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #e0e5ff;
    transition: all 0.2s ease;
}

.tag:hover {
    background: #002855;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 40, 85, 0.2);
}

/* Responsividade */
@media (max-width: 1200px) {
    .empresas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .empresa-content-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .empresa-text,
    .empresa-illustration {
        flex: 0 0 100%;
    }

    .empresa-illustration {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .empresas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .empresa-content-wrapper {
        padding: 1.5rem;
    }

    .empresa-logo {
        height: 120px;
        padding: 1.5rem;
    }

    .empresa-tags {
        padding: 1rem 1.5rem;
    }
}

/* ===== PROCESSO DETALHADO ===== */
.processo-detalhado {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.processo-detalhado .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.processo-detalhado .section-subtitle {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    color: #002855;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    display: block;
    text-align: center;
}

.processo-detalhado h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #000000;
    text-align: center;
}

.processo-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 40, 85, 0.05);
    border: 1px solid #eef1f7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 40, 85, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #002855;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 40, 85, 0.2);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #002855;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

/* ===== AJUSTES NA SEÇÃO EMPRESAS-HERO (VANTAGENS) ===== */
.empresas-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #002855 0%, #001a3a 100%);
    color: white;
    text-align: center;
}

.empresas-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.empresas-hero .section-subtitle {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    display: block;
}

.empresas-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
}

.stats-empresas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.stat-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== AJUSTES NA EMPRESAS-GRID-SECTION ===== */
.empresas-grid-section {
    padding: 6rem 0;
    background: #f8f9ff;
}

.empresa-card {
    margin-bottom: 3rem;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 40, 85, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.empresa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 40, 85, 0.12);
}

.empresa-logo {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #eef1f7;
}

.empresa-logo i {
    font-size: 4rem;
    color: #002855;
}

.empresa-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 2rem;
    padding: 2rem;
}

.empresa-text {
    padding-right: 1rem;
}

.empresa-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #002855;
    margin-bottom: 0.5rem;
}

.empresa-categoria {
    font-size: 1rem;
    font-weight: 600;
    color: #002855;
    background: rgba(0, 40, 85, 0.1);
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.empresa-desc {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.empresa-illustration {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 40, 85, 0.1);
}

.empresa-illustration img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.empresa-illustration:hover img {
    transform: scale(1.05);
}

.empresa-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid #eef1f7;
}

.tag {
    background: #f0f2f8;
    color: #002855;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #002855;
    color: white;
    transform: translateY(-2px);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .processo-detalhado h2,
    .empresas-hero h1 {
        font-size: 2rem;
    }
    
    .empresa-content-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .empresa-text {
        padding-right: 0;
    }
    
    .empresa-illustration img {
        height: 250px;
    }
    
    .stats-empresas {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .processo-detalhado,
    .empresas-grid-section,
    .empresas-hero {
        padding: 4rem 0;
    }
    
    .processo-detalhado h2,
    .empresas-hero h1 {
        font-size: 1.75rem;
    }
    
    .step {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .empresa-text h3 {
        font-size: 1.5rem;
    }
    
    .stats-empresas {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .processo-detalhado h2,
    .empresas-hero h1 {
        font-size: 1.5rem;
    }
    
    .empresa-logo i {
        font-size: 3rem;
    }
    
    .empresa-text h3 {
        font-size: 1.3rem;
    }
    
    .empresa-illustration img {
        height: 180px;
    }
    
    .empresa-tags {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-item i {
        font-size: 2rem;
    }
}

/* Aumentar padding da seção para acomodar cards maiores */
.empresas-grid-section {
    padding: 4rem 0 8rem;
    background: #f8f9ff;
}

/* CTA Final */
.empresas-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #002855 0%, #001a3a 100%);
    color: white;
    text-align: center;
}

.empresas-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.empresas-cta p {
    font-size: 1.1rem;
    color: #e0e0ff;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-whatsapp,
.btn-contato {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-whatsapp {
    background: #002855;
    color: white;
}

.btn-whatsapp:hover {
    background: #000000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 40, 85, 0.3);
}

.btn-contato {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-contato:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1200px) {
    .empresas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .empresas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .empresas-hero h1 {
        font-size: 2.5rem;
    }

    .stats-empresas {
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .empresas-hero {
        padding: 4rem 0 3rem;
    }

    .empresas-hero h1 {
        font-size: 2.2rem;
    }

    .empresas-intro {
        padding: 3rem 0;
    }

    .empresas-intro h2 {
        font-size: 1.8rem;
    }

    .empresas-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-whatsapp,
    .btn-contato {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .empresas-hero h1 {
        font-size: 1.8rem;
    }

    .empresas-hero p {
        font-size: 1rem;
    }

    .stats-empresas {
        gap: 1.5rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .empresa-logo {
        height: 100px;
        padding: 1rem;
    }

    .empresa-logo img {
        max-width: 120px;
    }

    .empresa-content {
        padding: 1.25rem;
    }
}

/* Filtros por Categoria (opcional) */
.filtros-empresas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 3rem;
    padding: 0 2rem;
}

.filtro-btn {
    background: white;
    border: 1px solid #eef1f7;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #333333;
}

.filtro-btn:hover,
.filtro-btn.ativo {
    background: #002855;
    color: white;
    border-color: #002855;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.empresa-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.empresa-card:nth-child(1) { animation-delay: 0.1s; }
.empresa-card:nth-child(2) { animation-delay: 0.2s; }
.empresa-card:nth-child(3) { animation-delay: 0.3s; }
.empresa-card:nth-child(4) { animation-delay: 0.4s; }
.empresa-card:nth-child(5) { animation-delay: 0.5s; }
.empresa-card:nth-child(6) { animation-delay: 0.6s; }
.empresa-card:nth-child(7) { animation-delay: 0.7s; }
.empresa-card:nth-child(8) { animation-delay: 0.8s; }
.empresa-card:nth-child(9) { animation-delay: 0.9s; }
.empresa-card:nth-child(10) { animation-delay: 1s; }
.empresa-card:nth-child(11) { animation-delay: 1.1s; }
.empresa-card:nth-child(12) { animation-delay: 1.2s; }

/* Efeito de borda colorida por categoria */
.empresa-card:nth-child(4n+1) { border-top: 4px solid #002855; }
.empresa-card:nth-child(4n+2) { border-top: 4px solid #002855; }
.empresa-card:nth-child(4n+3) { border-top: 4px solid #002855; }
.empresa-card:nth-child(4n) { border-top: 4px solid #002855; }

/* ===== SEÇÃO CONTATO ===== */
.contato-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    text-align: center;
}

.contato-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contato-subtitulo {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    color: #002855;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.contato-titulo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

/* Grid de Opções */
.opcoes-contato {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.opcao-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 40, 85, 0.08);
    border: 1px solid #eef1f7;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
}

.opcao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 40, 85, 0.12);
}

/* Ícones */
.opcao-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.whatsapp-icon {
    background: rgba(0, 40, 85, 0.1);
    color: #002855;
}

.email-icon {
    background: rgba(0, 40, 85, 0.1);
    color: #002855;
}

.local-icon {
    background: rgba(0, 40, 85, 0.1);
    color: #002855;
}

.opcao-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.75rem;
}

.opcao-card p {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Botões */
.opcao-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #002855;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 200px;
}

.opcao-btn:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 40, 85, 0.2);
}

.opcao-btn.ativo {
    background: #000000;
}

/* Botões específicos */
.email-btn {
    background: #002855;
}

.email-btn:hover {
    background: #000000;
}

.local-btn {
    background: #002855;
}

.local-btn:hover {
    background: #000000;
}

/* Mapa */
.mapa-container {
    margin: 2rem auto;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eef1f7;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mapa-header {
    background: #002855;
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mapa-header h4 {
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fechar-mapa {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.fechar-mapa:hover {
    opacity: 1;
}

.mapa-info {
    background: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eef1f7;
}

.mapa-info p {
    margin: 0;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mapa-link {
    color: #002855;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.mapa-link:hover {
    color: #000000;
}

/* Horário */
.contato-horario {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(0, 40, 85, 0.05);
    border: 1px solid #eef1f7;
}

.contato-horario p {
    margin: 0;
    color: #333333;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contato-horario i {
    color: #002855;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(to top, #002855, #001a3a);
    color: white;
    font-family: 'Poppins', sans-serif;
    padding: 40px 20px 20px 20px;
    position: relative;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 200px;
    min-width: 220px;
}

.footer-logo {
    width: 220px;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #e0e0e0;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    border-left: 2px solid white;
    padding-left: 8px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-column ul li a i {
    margin-right: 7px;
    color: white;
    font-size: 10px;
    transition: transform 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-column ul li a:hover i {
    transform: translateX(3px);
}

.contact-info li {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.contact-info li i {
    margin-top: 2px;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.social-icons a:hover {
    background: #000000;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #d0d0d0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* Verde oficial do WhatsApp */
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); /* Sombra verde */
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-button:hover {
    background-color: #075E54; /* Verde mais escuro do WhatsApp (tom da barra superior) */
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #075E54; /* Verde escuro para contraste */
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #075E54; /* Combina com o tooltip */
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 40, 85, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(0, 40, 85, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 40, 85, 0);
    }
}

/* =========================================
    RESPONSIVIDADE
========================================= */
@media (max-width: 1024px) {
    .opcoes-contato {
        gap: 1.5rem;
    }

    .opcao-card {
        padding: 1.75rem;
    }
}

@media (max-width: 991px) and (min-width: 778px) {
    .navbar-container {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0 30px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .footer-container {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-column {
        flex: 1 1 calc(50% - 20px);
        min-width: 200px;
    }

    .footer-column:first-child {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-description {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        padding: 0 20px;
        text-align: center;
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 777px) {
    .hamburger {
        display: block;
        margin-left: 0;
        font-size: 28px;
    }

    .nav-links,
    .cta-button {
        display: none;
    }

    .nav-links.active,
    .cta-button.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 12px;
        padding-top: 15px;
    }

    .cta-button {
        width: 90%;
        justify-content: center;
    }

    .hamburger i {
        transition: transform .3s;
    }

    .hamburger.active i {
        transform: rotate(90deg);
    }

    .navbar-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
        gap: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 20px;
        padding-top: 15px;
    }

    .cta-button {
        width: 90%;
        text-align: center;
        margin-top: 10px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 15px;
        text-align: center;
    }

    .opcoes-contato {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .mapa-info {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .contato-horario p {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer {
        padding: 30px 15px 15px 15px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-column {
        min-width: 100%;
    }

    .footer-column h4 {
        border-left: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        padding-left: 0;
        padding-bottom: 8px;
        display: inline-block;
        margin-bottom: 15px;
    }

    .footer-column ul li a {
        justify-content: center;
    }

    .contact-info li {
        align-items: center !important;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 5px;
    }

    .contact-info li i {
        margin-top: 0;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding-top: 15px;
        margin-top: 30px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .contact-info li:nth-child(3) {
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .contato-container {
        padding: 0 1.5rem;
    }

    .contato-titulo {
        font-size: 1.75rem;
    }

    .opcao-card {
        padding: 1.5rem;
    }

    .opcao-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .opcao-card h3 {
        font-size: 1.2rem;
    }

    .opcao-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .mapa-header {
        padding: 1rem;
    }

    .mapa-header h4 {
        font-size: 1rem;
    }

    .footer {
        padding: 30px 15px 15px 15px;
    }

    .footer-logo {
        width: 180px;
    }

    .footer-description {
        font-size: 13px;
    }

    .whatsapp-button {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

/* Efeitos visuais extras */
.opcao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.opcao-card:nth-child(1)::before,
.opcao-card:nth-child(2)::before,
.opcao-card:nth-child(3)::before {
    background: #002855;
}

.opcao-card:hover::before {
    opacity: 1;
}

/* Tooltip para botão do mapa */
.local-btn[title] {
    position: relative;
}

.local-btn[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #002855;
    color: white;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    margin-bottom: 0.5rem;
    z-index: 10;
}

/* Efeito extra para os ícones de contato */
.contact-info li {
    position: relative;
    padding-left: 5px;
    transition: transform 0.3s ease;
}

.contact-info li:hover {
    transform: translateX(5px);
}

/* Link do telefone e email clicáveis */
.contact-info li:first-child,
.contact-info li:nth-child(2) {
    cursor: pointer;
}

.contact-info li:first-child:hover,
.contact-info li:nth-child(2):hover {
    color: #ffffff;
}