/* 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;
}

/* ===== SEÇÃO SOBRE - PÁGINA INICIAL ===== */
.sobre-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 10%;
    gap: 50px;
    background-color: white;
}

.sobre-text {
    flex: 1;
    text-align: left;
}

.sobre-text .section-subtitle {
    color: #002855;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 1px;
}

.sobre-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    line-height: 1.2;
}

.sobre-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333333;
    max-width: 100%;
}

.sobre-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 40, 85, 0.15);
    transition: transform 0.3s ease;
}

.sobre-img img:hover {
    transform: translateY(-5px);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .sobre-section {
        padding: 60px 5%;
        gap: 40px;
    }

    .sobre-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .sobre-section {
        flex-direction: column;
        padding: 50px 5%;
        text-align: center;
    }

    .sobre-text {
        text-align: center;
    }

    .sobre-text h2 {
        font-size: 2rem;
    }

    .sobre-text p {
        font-size: 1rem;
    }

    .sobre-img {
        order: -1;
        margin-bottom: 30px;
    }

    .sobre-img img {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .sobre-section {
        padding: 40px 1.5rem;
    }

    .sobre-text h2 {
        font-size: 1.75rem;
    }

    .sobre-text p {
        font-size: 0.95rem;
    }

    .sobre-img img {
        max-width: 100%;
    }
}

/* ===== EFEITOS VISUAIS OPCIONAIS ===== */
.sobre-text::before {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #002855, #000000);
    margin-bottom: 20px;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .sobre-text::before {
        margin: 0 auto 20px auto;
    }
}

/* Botão opcional */
.sobre-text .btn-saiba-mais {
    display: inline-block;
    background: #002855;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.sobre-text .btn-saiba-mais:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 40, 85, 0.2);
}

/* ===== SEÇÃO VALORES ===== */
.valores-section {
    padding: 6rem 0;
    background: #f8f9ff;
}

.valores-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.valor-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 40, 85, 0.08);
    transition: transform 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-10px);
}

.valor-icon {
    width: 70px;
    height: 70px;
    background: #002855;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.valor-card h3 {
    font-size: 1.2rem;
    color: #002855;
    margin-bottom: 1rem;
}

.valor-card p {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== SEÇÃO VISÃO ===== */
.visao-section {
    padding: 6rem 0;
    background: white;
}

.visao-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.visao-img {
    flex: 1;
}

.visao-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.visao-text {
    flex: 1;
}

.visao-lista {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.visao-lista li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.visao-lista i {
    color: #002855;
    margin-top: 0.2rem;
}

.visao-lista strong {
    color: #002855;
}

.visao-text .destaque {
    background: #f0f5ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #002855;
    font-weight: 600;
    color: #002855;
}

/* ===== SEÇÃO LIDERANÇA ===== */
.lideranca-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #002855 0%, #001a3a 100%);
    color: white;
    text-align: center;
}

.lideranca-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lideranca-section .section-subtitle {
    color: #b0c4ff;
}

.lideranca-desc {
    max-width: 800px;
    margin: 1rem auto 3rem;
    color: #e0e0ff;
    line-height: 1.6;
}

.lideranca-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.info-card h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: #e0e0ff;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== DESTAQUES ===== */
.destaques-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eef1f7;
}

.destaque-item {
    text-align: center;
}

.destaque-item h3 {
    font-size: 2.5rem;
    color: #002855;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.destaque-item p {
    font-size: 0.9rem;
    color: #333333;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .visao-container {
        flex-direction: column;
        gap: 3rem;
    }

    .lideranca-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .valores-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .destaques-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .lideranca-info {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .valor-card,
    .info-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .destaque-item {
        flex: 0 0 50%;
        margin-bottom: 1.5rem;
    }

    .destaque-item h3 {
        font-size: 2rem;
    }
}

/* ===== SEÇÃO CLIENTES ===== */
.clientes-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    text-align: center;
}

.clientes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.clientes-section .subtitulo {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    color: #002855;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.clientes-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.clientes-desc {
    font-size: 1.1rem;
    color: #333333;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.clientes-logos {
    margin: 2rem auto;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 40, 85, 0.08);
    border: 1px solid #eef1f7;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.clientes-logos img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    transition: transform 0.5s ease;
}

.clientes-logos:hover img {
    transform: scale(1.02);
}

.clientes-nota {
    margin-top: 2rem;
    font-size: 1rem;
    color: #002855;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 40, 85, 0.05);
    border-radius: 50px;
    display: inline-block;
}

/* ===== 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;
}