/* RESET & CONFIGURAÇÕES GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a192f;
    --primary-cyan: #00b4d8;
    --accent-orange: #ffb703;
    --text-dark: #2b2d42;
    --text-light: #f8f9fa;
    --bg-light: #f1f5f9;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary, .btn-secondary, .btn-menu {
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-cyan);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--accent-orange);
    color: var(--primary-dark);
}

.btn-secondary {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    margin-left: 10px;
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
}

/* HEADER */
.main-header {
    background-color: #003967;
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(10, 25, 47, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO COM IMAGEM SVG */
.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Espaço entre o ícone/marca e eventual texto secundário */
    text-decoration: none;
}

/* Suporte se você usar a tag <img src="logo.svg"> */
.logo img {
    height: 80px; /* Altura ideal para a barra de navegação */
    width: auto;  /* Mantém a proporção original */
    display: block;
    transition: transform 0.3s ease;
}

/* Suporte se você colar o código <svg> diretamente no HTML */
.logo svg {
    height: 45px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Efeito suave ao passar o mouse na logo */
.logo:hover img,
.logo:hover svg {
    transform: scale(1.03);
}

/* Ajuste proporcional para quando a página rolar (header.scrolled) */
.main-header.scrolled .logo img,
.main-header.scrolled .logo svg {
    height: 60px; /* Encolhe levemente para acompanhar o header compacto */
}
@media (max-width: 768px) {
    .logo img,
    .logo svg {
        height: 50px; /* Reduz um pouquinho no mobile pra sobrou espaço pro menu hambúrguer */
    }
}
.main-header ul,
.main-header li {
    list-style: none !important;
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav ul li a {
    color: var(--text-light);
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
}

.main-nav ul li a:hover {
    color: var(--primary-cyan);
}

.btn-menu {
    border: 1px solid var(--primary-cyan);
    color: var(--primary-cyan) !important;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* HERO SLIDER */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 550px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-badge {
    display: inline-block;
    background-color: rgba(0, 180, 216, 0.2);
    border: 1px solid var(--primary-cyan);
    color: var(--primary-cyan);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-container {
    color: var(--text-light);
    text-align: center;
}

.hero-container h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.hero-container p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 2rem auto;
    opacity: 0.9;
}

/* Efeito Charmoso de Animação no Slide */
.hero-slide .slide-badge,
.hero-slide h1,
.hero-slide p,
.hero-slide .hero-ctas {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.hero-slide.active .slide-badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.hero-slide.active h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.hero-slide.active p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.hero-slide.active .hero-ctas {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* Navegação do Slider */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 25, 47, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.5rem;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
    z-index: 20;
}

.slider-btn:hover {
    background: var(--primary-cyan);
    color: var(--primary-dark);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-cyan);
    width: 30px;
    border-radius: 10px;
}

/* CARDS RÁPIDOS */
.features-section {
    margin-top: -40px;
    position: relative;
    z-index: 30;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-cyan);
}

.feature-card h3 {
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

/* QUEM SOMOS */
.about-section { padding: 80px 0; }
.about-container { display: flex; align-items: center; gap: 50px; }
.about-content, .about-image { flex: 1; }
.about-image img { border-radius: 8px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.subtitle { color: var(--primary-cyan); text-transform: uppercase; font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; }
.about-content h2 { font-size: 2.2rem; color: var(--primary-dark); margin: 0.5rem 0 1.5rem 0; }
.about-content p { margin-bottom: 1.2rem; color: #555; }

/* SERVIÇOS */
.services-section { background-color: var(--bg-light); padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: 2.2rem; color: var(--primary-dark); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }

.service-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.service-box:hover { transform: translateY(-5px); }
.service-content { margin-bottom: 1.5rem; }
.service-box h3 { color: var(--primary-dark); font-size: 1.2rem; margin-bottom: 1.2rem; border-bottom: 2px solid var(--bg-light); padding-bottom: 0.5rem; }
.service-box ul { list-style: none; }
.service-box ul li { margin-bottom: 0.6rem; font-size: 0.95rem; color: #555; position: relative; padding-left: 15px; }
.service-box ul li::before { content: "•"; color: var(--primary-cyan); font-weight: bold; position: absolute; left: 0; }

.btn-card-whatsapp {
    display: block;
    text-align: center;
    background-color: #25d366;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
}

.btn-card-whatsapp:hover { background-color: #1eb856; }

/* PMOC SECTION */
.pmoc-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/pmoc-bg.webp') no-repeat center/cover;
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
}

.pmoc-content h2 { font-size: 2.4rem; margin-bottom: 1rem; }
.pmoc-content p { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.9; }

/* CONTATO */
.contact-section { padding: 80px 0; }
.contact-container { display: flex; gap: 50px; }
.contact-info, .contact-form { flex: 1; }
.contact-info h2 { font-size: 2.2rem; color: var(--primary-dark); margin-bottom: 1rem; }
.info-list { list-style: none; margin-top: 2rem; }
.info-list li { margin-bottom: 1rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 600; }
.form-group input, .form-group textarea { width: 100%; padding: 0.75rem; border: 1px solid #ccc; border-radius: 4px; }

.btn-submit {
    background-color: var(--primary-dark);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
}

.btn-submit:hover { background-color: var(--primary-cyan); color: var(--primary-dark); }

/* FOOTER & WHATSAPP */
/* FOOTER COMPLETO E REVISADO */
.main-footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding-top: 70px;
    border-top: 3px solid var(--primary-cyan);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    color: var(--text-light);
    font-size: 1.3rem;
    display: block;
    margin-bottom: 1rem;
}

.footer-logo strong {
    color: var(--primary-cyan);
}

.footer-logo span {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.8;
}

.footer-desc {
    font-size: 0.9rem;
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary-cyan);
}

/* Links do Footer */
.footer-links {
    list-style: none !important;
}

.footer-links li {
    margin-bottom: 0.6rem;
    list-style: none !important;
}

.footer-links a {
    color: #a0aec0;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-cyan);
    padding-left: 5px;
}

/* Redes Sociais */
.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-cyan);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.social-icon {
    width: 18px;
    height: 18px;
}

/* Lista de Contato */
.footer-contact-list {
    list-style: none !important;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
    list-style: none !important;
}

.contact-icon {
    width: 18px;
    height: 18px;
    color: var(--primary-cyan);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Sub-footer (Direitos autorais) */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 1.2rem 0;
    font-size: 0.85rem;
    color: #a0aec0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-legal {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Ajustes de Responsividade para Telas Menores */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: whatsAttention 3s infinite ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    display: block;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .about-container, .contact-container { flex-direction: column; }
    .hero-container h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-toggle .bar { 
        width: 100%; 
        height: 3px; 
        background-color: var(--text-light); 
        border-radius: 2px; 
    }

    .mobile-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); background-color: var(--primary-cyan); }
    .mobile-toggle.active .bar:nth-child(2) { opacity: 0; }
    .mobile-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background-color: var(--primary-cyan); }

    .main-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-dark);
        padding: 80px 20px 20px 20px;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
    }

    .main-nav.open { right: 0; }
    .main-nav ul { flex-direction: column; align-items: flex-start; gap: 20px; }
    .main-nav ul li a { display: block; font-size: 1.1rem; padding: 0.8rem 0; }
    
    .hero-ctas { display: flex; flex-direction: column; gap: 10px; }
    .btn-secondary { margin-left: 0; }
    .slider-btn { padding: 0.5rem 0.8rem; font-size: 1rem; }
}

/* ANIMAÇÃO DE ATENÇÃO DO WHATSAPP */
@keyframes whatsAttention {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    10%, 14%, 18%, 22% {
        transform: scale(1.05) rotate(-5deg);
    }
    12%, 16%, 20% {
        transform: scale(1.05) rotate(5deg);
    }
    25% {
        transform: scale(1) rotate(0deg);
    }
    40% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0), 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

/* TOP BAR (BARRA SUPERIOR DE CONTATO) */
.top-bar {
    background-color: #06101e; /* Tom ligeiramente mais escuro que o primary-dark */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact,
.top-bar-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    color: #a0aec0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.top-bar-item:hover {
    color: var(--primary-cyan);
}

.top-icon {
    width: 15px;
    height: 15px;
    color: var(--primary-cyan);
}

/* Ícones Sociais na Top Bar */
.top-bar-social a {
    color: #a0aec0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.2s ease;
}

.top-bar-social a:hover {
    color: var(--primary-cyan);
    transform: translateY(-2px);
}

.top-social-icon {
    width: 15px;
    height: 15px;
}

/* Responsivo para celulares */
@media (max-width: 768px) {
    .desktop-only {
        display: none; /* Esconde o e-mail em telas pequenas para economizar espaço */
    }

    .top-bar-container {
        justify-content: space-between;
    }
}

/* SEÇÃO DE SERVIÇOS MODERNA */
.services-section {
    background-color: var(--bg-light);
    padding: 90px 0;
}

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

/* Card moderno */
.service-card-modern {
    background: #ffffff;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.12);
    border-top-color: var(--primary-cyan);
}

/* Wrapper do Ícone */
.service-icon-wrapper {
    width: 65px;
    height: 65px;
    background-color: rgba(0, 180, 216, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-wrapper {
    background-color: var(--primary-cyan);
    color: #ffffff;
}

.service-svg {
    width: 32px;
    height: 32px;
    color: var(--primary-cyan);
    transition: color 0.3s ease;
}

.service-card-modern:hover .service-svg {
    color: #ffffff;
}

/* Conteúdo interno do card */
.service-content {
    margin-bottom: 2rem;
}

.service-card-modern h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card-modern ul {
    list-style: none !important;
}

.service-card-modern ul li {
    margin-bottom: 0.7rem;
    font-size: 0.93rem;
    color: #555;
    position: relative;
    padding-left: 18px;
    list-style: none !important;
}

.service-card-modern ul li::before {
    content: "✓";
    color: var(--primary-cyan);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 0.85rem;
}

/* Botão de WhatsApp do Card */
.btn-card-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25d366;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-card-whatsapp:hover {
    background-color: #1eb856;
    color: #ffffff;
    transform: scale(1.02);
}

.whatsapp-btn-icon {
    width: 18px;
    height: 18px;
}

/* SEÇÃO CONTATO RÁPIDO */
.contact-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary-dark, #0d1b2a) 0%, #1b263b 100%);
    color: #ffffff;
}

.contact-card-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

/* Informações */
.badge-quick {
    background: rgba(0, 180, 216, 0.2);
    color: var(--primary-cyan, #00b4d8);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-info-content p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.quick-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
    color: #f1f5f9;
}

.check-icon {
    color: #25d366;
    font-weight: bold;
}

.direct-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.88rem;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

/* Card de Ação / Botão */
.contact-action-box {
    display: flex;
    justify-content: center;
}

.action-card {
    background: #ffffff;
    color: #0f172a;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.action-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.action-card p {
    font-size: 0.92rem;
    color: #64748b;
    margin-bottom: 1.8rem;
}

/* Botão WhatsApp Principal */
.btn-whatsapp-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #25d366;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-hero:hover {
    background-color: #1eb856;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

.whatsapp-icon-lg {
    width: 26px;
    height: 26px;
}

/* Indicador de Status Online */
.online-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #64748b;
    margin-top: 1.2rem;
    font-weight: 500;
}

.dot {
    width: 9px;
    height: 9px;
    background-color: #25d366;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsividade para Celulares */
@media (max-width: 992px) {
    .contact-card-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

/* SEÇÃO QUEM SOMOS UPGRADE */
.about-section {
    padding: 90px 0;
    background-color: #ffffff;
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-content .subtitle {
    color: var(--primary-cyan);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--primary-dark, #0d1b2a);
    margin-bottom: 1.2rem;
    line-height: 1.25;
}

.about-lead {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.98rem;
}

/* Pilares / Mini diferenciais */
.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 2rem 0;
}

.pillar-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.pillar-icon {
    width: 38px;
    height: 38px;
    background-color: rgba(0, 180, 216, 0.1);
    color: var(--primary-cyan);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar-icon svg {
    width: 22px;
    height: 22px;
}

.pillar-item h4 {
    font-size: 0.95rem;
    color: var(--primary-dark, #0d1b2a);
    margin-bottom: 2px;
}

.pillar-item p {
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.3;
}

/* Números / Stats */
.about-stats {
    display: flex;
    gap: 30px;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-cyan);
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Imagem e Moldura Visual */
.about-image-wrapper {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .image-frame img {
    transform: scale(1.03);
}

/* Selo Flutuante sobre a imagem */
.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #ffffff;
    padding: 1rem 1.4rem;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--primary-cyan);
}

.badge-icon {
    width: 32px;
    height: 32px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 20px;
    height: 20px;
}

.floating-badge strong {
    display: block;
    font-size: 0.92rem;
    color: var(--primary-dark, #0d1b2a);
}

.floating-badge span {
    font-size: 0.8rem;
    color: #64748b;
}

/* Responsividade */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }

    .floating-badge {
        bottom: 10px;
        left: 10px;
    }
}
/* SEÇÃO DE DIFERENCIAIS RÁPIDOS */
.features-section {
    padding: 40px 0;
    background-color: var(--bg-light, #f8fafc);
    margin-top: -30px; /* Sobrepõe levemente o banner para efeito de profundidade (opcional) */
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* Card Estilizado */
.feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.8rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.12);
    border-bottom-color: var(--primary-cyan, #00b4d8);
}

/* Wrapper do Ícone */
.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 180, 216, 0.1);
    color: var(--primary-cyan, #00b4d8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-cyan, #00b4d8);
    color: #ffffff;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

/* Texto do Card */
.feature-text h3 {
    font-size: 1.1rem;
    color: var(--primary-dark, #0d1b2a);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.feature-text p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Otimização para Telas Menores */
@media (max-width: 768px) {
    .features-section {
        margin-top: 0; /* Reseta a sobreposição no mobile */
        padding: 30px 0;
    }
}

/* ESTRUTURA DO CABEÇALHO */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* TOP BAR (BARRA SUPERIOR) */
.top-bar {
    background-color: #0b1523;
    color: #94a3b8;
    font-size: 0.82rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-item:hover {
    color: var(--primary-cyan, #00b4d8);
}

.top-icon {
    width: 15px;
    height: 15px;
    color: var(--primary-cyan, #00b4d8);
}

/* Badge Central na Top Bar */
.top-bar-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: #94a3b8;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background-color: #25d366;
    border-radius: 50%;
}

/* Ícones Sociais */
.top-bar-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-bar-social a {
    color: #94a3b8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.top-bar-social a:hover {
    color: var(--primary-cyan, #00b4d8);
    transform: translateY(-1px);
}

.top-social-icon {
    width: 16px;
    height: 16px;
}

/* NAVEGAÇÃO PRINCIPAL */
.main-header {
    background-color: #003967;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-dark, #0d1b2a);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-cyan, #00b4d8);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-cyan, #00b4d8);
}

/* BOTÃO DE DESTAQUE NO MENU */
.btn-menu {
    background-color: var(--primary-cyan, #00b4d8);
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 180, 216, 0.25);
    display: inline-block;
}

.btn-menu:hover {
    background-color: #0096c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 180, 216, 0.4);
}

/* HAMBÚRGUER (MOBILE) */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark, #0d1b2a);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.4s ease-in-out;
    }

    .main-nav.active {
        clip-path: circle(150% at 100% 0);
    }

    .main-nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 18px;
        align-items: center;
    }

    .menu-cta-wrapper {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }

    .btn-menu {
        display: block;
        width: 100%;
    }
}