/* =========================================
   VARIÁVEIS E CONFIGURAÇÕES
========================================= */
:root {
    --primary: #0077b6;
    --secondary: #00b4d8;
    --dark: #1d1d1d;
    --light: #ffffff;
    --gray: #f4f4f4;
    --whatsapp: #25D366;
    --font-main: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* =========================================
   CORREÇÃO DEFINITIVA DE OVERFLOW (ANDROID E IOS)
========================================= */
html, body {
    width: 100%;
    max-width: 100vw;
    position: relative;
    overflow-x: visible !important; /* Permite que o menu sticky funcione no body */
}

/* O Segredo: Corta o excesso do AOS direto nas seções, evitando a tela invisível no Android */
section, footer {
    overflow-x: hidden !important;
    width: 100%;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    line-height: 1.6;
}

/* Transforma todos os H1 e H2 do site em letras maiúsculas */
h1, h2 {
    text-transform: uppercase !important;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =========================================
   LOGOS
========================================= */
.header-logo-img { height: 60px; width: auto; }
.footer-logo-img { height: 50px; width: auto; margin-bottom: 20px; }
.dev-logo-img { height: 30px; width: auto; }

/* =========================================
   COMPONENTES
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    cursor: pointer;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--secondary); transform: translateY(-3px); }

.btn-whatsapp { background: var(--whatsapp); color: white; }
.btn-whatsapp:hover { opacity: 0.9; }

.btn-lg { padding: 15px 35px; font-size: 18px; }

.btn-outline { border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 32px; color: var(--primary); margin-bottom: 10px; }

/* =========================================
   HEADER
========================================= */
.main-header {
    background: white;
    height: 90px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-menu ul { display: flex; gap: 25px; }
.nav-menu a { font-weight: 600; font-size: 15px; transition: 0.3s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }

/* =========================================
   HERO SECTION
========================================= */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    background: rgba(0, 119, 182, 0.1);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.1;
    margin: 20px 0;
}

.hero-text h1 span { color: var(--primary); }
.hero-text p { font-size: 18px; margin-bottom: 30px; color: #555; }

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-icons-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bio-icon-img { height: 40px; width: auto; opacity: 0.8;}

.trust-icons {
    display: flex;
    gap: 20px;
    font-weight: 600;
    font-size: 14px;
}

.trust-icons i { color: var(--primary); }

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* =========================================
   STATS BAR
========================================= */
.stats-bar { background: var(--primary); color: white; padding: 40px 0; }
.stats-wrapper { display: flex; justify-content: space-around; text-align: center; }
.stat-item h3 { font-size: 32px; }

/* =========================================
   SERVICES
========================================= */
.services-preview { padding: 100px 0; background: var(--gray); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.service-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.service-card i { font-size: 50px; color: var(--secondary); margin-bottom: 20px; }
.service-card h3 { margin-bottom: 15px; }
.service-card a { color: var(--primary); font-weight: 700; display: block; margin-top: 15px; }

/* =========================================
   ABOUT PREVIEW
========================================= */
.about-preview { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.subtitle { color: var(--primary); font-weight: 700; text-transform: uppercase; }
.about-content h2 { font-size: 36px; margin: 15px 0; }
.about-image img { border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* =========================================
   FOOTER
========================================= */
.main-footer { background: var(--dark); color: white; padding: 80px 0 0px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 50px; margin-bottom: 50px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-contact i { color: var(--secondary); margin-right: 10px;}

.socials { display: flex; gap: 15px; margin-top: 15px; }
.socials i { font-size: 24px; transition: 0.3s; }
.socials a:hover { color: var(--primary); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-bottom-wrapper { display: flex; justify-content: space-between; align-items: center; gap: 20px;}

.developer-credit {
    display: flex;
    align-items: center;
    gap: 10px;
}
.developer-credit p { margin-bottom: 0; }
.developer-credit a { display: block; }

/* =========================================
   RESPONSIVIDADE
========================================= */
/* =========================================
   MENU MOBILE E HEADER ACTIONS
========================================= */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--primary);
    cursor: pointer;
    transition: 0.3s;
}

/* =========================================
   RESPONSIVIDADE GERAL E MENU MOBILE
========================================= */
@media (max-width: 992px) {
    .hero-grid, .about-grid, .services-grid, .footer-grid, .benefits-grid, .location-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    
    .header-cta { display: none; } /* Esconde o botão do zap no menu de cima no celular para caber a logo */
    
    .mobile-menu-btn { display: block; }
    
    /* Configuração do Menu Gaveta */
    .nav-menu {
        position: fixed;
        top: 90px; /* Altura do header */
        left: -100%; /* Esconde fora da tela */
        width: 100%;
        height: calc(100vh - 90px);
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    /* Classe que o JavaScript vai ativar */
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .nav-menu a {
        font-size: 20px;
    }

    .hero-text h1 { font-size: 36px; }
    .stats-wrapper { flex-wrap: wrap; gap: 20px; }
    .footer-grid { gap: 30px; }
    .footer-bottom-wrapper { flex-direction: column; text-align: center; }
    .footer-info .footer-logo-img { margin: 0 auto 20px; }
    .socials { justify-content: center; }
    .hero-cta, .hero-buttons, .hero-buttons form { flex-direction: column; }
    .trust-icons-wrapper, .trust-icons { flex-direction: column; text-align: center; }
    
    .location-info p {
        justify-content: center;
        text-align: left;
        max-width: 350px;
        margin: 0 auto 20px auto;
    }
}

@media (max-width: 768px) {
    .faq-item summary { font-size: 15px; }
}

/* =========================================
   BENEFITS SECTION (POR QUE HIGIENIZAR)
========================================= */
.benefits-section {
    padding: 100px 0;
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.benefit-item {
    padding: 20px;
}

.icon-box {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 119, 182, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    font-size: 40px;
    color: var(--primary);
}

.benefit-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark);
}

.benefit-item p {
    font-size: 14px;
    color: #555;
}

/* =========================================
   FAQ SECTION (PERGUNTAS FREQUENTES)
========================================= */
.faq-section {
    padding: 100px 0;
    background-color: var(--gray);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 25px;
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
    cursor: pointer;
    list-style: none; /* Remove a seta padrão em alguns navegadores */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-item summary:hover {
    background-color: #fcfcfc;
    color: var(--primary);
}

/* Customizando a setinha do FAQ */
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg); /* Transforma o + num X quando aberto */
}

.faq-answer {
    padding: 0 25px 25px 25px;
    color: #555;
    font-size: 15px;
    border-top: 1px solid var(--gray);
    margin-top: 10px;
    padding-top: 15px;
}

/* =========================================
   LOCATION SECTION (MAPA)
========================================= */
.location-section {
    padding: 100px 0;
    background-color: white; /* Intercala com o fundo cinza do FAQ */
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* O mapa fica um pouco mais largo que o texto */
    gap: 50px;
    align-items: center;
}

.location-info h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 25px;
}

.location-info p {
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
}

.location-info p i {
    font-size: 28px;
    color: var(--secondary);
}

.location-info .btn {
    margin-top: 15px;
}

.location-map iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    display: block;
}

/* Ajuste Responsivo para o Mapa */
@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .location-info p {
        justify-content: center;
        text-align: left;
        max-width: 350px;
        margin: 0 auto 20px auto;
    }
}

/* =========================================
   ABOUT PREVIEW / IMG FRAME
========================================= */
.img-frame {
    width: 100%;
    max-width: 500px; /* Limita a largura máxima da imagem */
    height: 400px;    /* Define uma altura fixa para padronizar */
    margin: 0 auto;   /* Centraliza a imagem no lado direito */
    border-radius: 15px;
    overflow: hidden; /* Garante que a imagem não vaze das bordas arredondadas */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher o quadro sem achatar */
    display: block;
}

/* =========================================
   AJUSTES DE RESPONSIVIDADE PARA AS NOVAS SEÇÕES
========================================= */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .faq-item summary {
        font-size: 15px;
    }
}

/* =========================================
   PÁGINAS INTERNAS (CABEÇALHOS E BANNERS)
========================================= */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* =========================================
   PÁGINA SOBRE: HISTÓRIA E MVV
========================================= */
.story-section {
    padding: 100px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 25px;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
    text-align: justify;
}

.mvv-section {
    padding: 80px 0 120px;
    background-color: var(--gray);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 119, 182, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.mvv-card h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.mvv-card p {
    color: #555;
    font-size: 15px;
}

/* =========================================
   CALL TO ACTION FINAL (BANNERS INFERIORES)
========================================= */
.cta-banner {
    background: url('https://images.unsplash.com/photo-1540518614846-7eded433c457?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80') center/cover fixed;
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 119, 182, 0.85); /* Overlay azul */
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Ajustes Responsivos da Página Sobre */
@media (max-width: 992px) {
    .story-grid { grid-template-columns: 1fr; }
    .mvv-grid { grid-template-columns: 1fr; }
    .story-text { text-align: center; }
    .story-text p { text-align: left; }
}

/* =========================================
   INSTAGRAM SECTION (PÁGINA SOBRE)
========================================= */
.instagram-section {
    padding: 100px 0;
    background-color: white; /* Fica branco para contrastar com a seção MVV que é cinza */
}

.insta-link {
    color: var(--primary);
    font-weight: 700;
    transition: 0.3s;
}

.insta-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.instagram-widget-container {
    width: 100%;
    min-height: 250px; /* Evita que a tela dê um "pulo" enquanto o widget carrega */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================================
   POR QUE NOS ESCOLHER (PÁGINA SOBRE)
========================================= */
.why-us-section {
    padding: 100px 0;
    background-color: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-us-item {
    text-align: center;
}

.why-us-item i {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.why-us-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.why-us-item p {
    color: #555;
    font-size: 15px;
}

/* =========================================
   FAITH SECTION (VERSÍCULO)
========================================= */
.faith-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 119, 182, 0.05), rgba(0, 180, 216, 0.05));
    text-align: center;
}

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

.faith-content i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 25px;
    opacity: 0.7;
}

.faith-content blockquote {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 15px;
}

.faith-content cite {
    display: block;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.faith-divider {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 0 auto 30px;
}

.faith-content p {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* Responsividade */
@media (max-width: 992px) {
    .why-us-grid { grid-template-columns: 1fr; gap: 50px; }
    .faith-content blockquote { font-size: 22px; }
}

/* =========================================
   PÁGINA CONTATO - CANAIS (REDES SOCIAIS)
========================================= */
.contact-channels {
    padding: 80px 0;
    background-color: var(--gray);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.channel-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.channel-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    color: white;
}

/* Cores específicas das redes */
.channel-card.whatsapp .channel-icon { background-color: #25D366; }
.channel-card.instagram .channel-icon { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.channel-card.facebook .channel-icon { background-color: #1877F2; }

.channel-card h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 22px;
}

.channel-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.channel-link {
    font-weight: 700;
    font-size: 14px;
}

.channel-card.whatsapp .channel-link { color: #25D366; }
.channel-card.instagram .channel-link { color: #dc2743; }
.channel-card.facebook .channel-link { color: #1877F2; }

/* =========================================
   PÁGINA CONTATO - FORMULÁRIO E INFO
========================================= */
.contact-form-section {
    padding: 100px 0;
    background-color: white;
}

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

.contact-info h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-info > p {
    color: #555;
    margin-bottom: 40px;
    font-size: 16px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 32px;
    color: var(--secondary);
    background: rgba(0, 180, 216, 0.1);
    padding: 15px;
    border-radius: 50%;
}

.info-item h4 {
    color: var(--dark);
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item p {
    color: #666;
    font-size: 15px;
}

.form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 14px;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--dark);
    transition: 0.3s;
    background-color: #fafafa;
}

.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 15px;
    margin-top: 10px;
}

/* =========================================
   PÁGINA CONTATO - MAPA GRANDE
========================================= */
.map-section {
    padding: 80px 0 0 0;
    background-color: var(--gray);
}

.map-container iframe {
    display: block;
    width: 100%;
    filter: grayscale(20%);
}

/* =========================================
   RESPONSIVIDADE (CONTATO)
========================================= */
@media (max-width: 992px) {
    .channels-grid, .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .info-item {
        text-align: left;
    }
}

/* =========================================
   PÁGINA PORTFÓLIO - IMPACTO
========================================= */
.impact-section {
    background-color: white; 
    color: var(--dark); 
    padding: 80px 0;
}

.impact-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
}

.impact-item i {
    font-size: 50px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.impact-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary); 
}

.impact-item p {
    font-size: 16px;
    font-weight: 600;
    color: #555;
}

/* =========================================
   PÁGINA PORTFÓLIO - GALERIA CARROSSEL
========================================= */
.portfolio-gallery-section {
    padding: 100px 0;
    background-color: var(--gray);
}

.portfolio-slider {
    padding-bottom: 50px;
    padding-top: 10px;
}

.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    cursor: pointer;
    display: block;
}

.portfolio-img-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Fundo escuro que sobe quando passa o mouse */
.portfolio-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 119, 182, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-overlay span {
    color: white;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    padding: 12px 25px;
    border-radius: 50px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

/* Efeitos de Hover */
.portfolio-item:hover .portfolio-img-wrapper img {
    transform: scale(1.1);
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-item:hover .portfolio-overlay span {
    transform: translateY(0);
}

/* =========================================
   PÁGINA PORTFÓLIO - SETAS DO CARROSSEL
========================================= */
.portfolio-slider {
    position: relative;
    padding: 20px 40px 60px 40px; 
}

.swiper-button-next,
.swiper-button-prev {
    background-color: white;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    top: 45% !important;
    z-index: 10;
    transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary);
    color: white !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: 900;
}

.swiper-button-prev { left: 0 !important; }
.swiper-button-next { right: 0 !important; }

@media (max-width: 768px) {
    .portfolio-slider { padding: 10px 0 50px 0; }
    .swiper-button-next, .swiper-button-prev { display: none; }
}

/* =========================================
   PÁGINA PORTFÓLIO - O PROCESSO
========================================= */
.process-section {
    padding: 100px 0;
    background-color: var(--gray);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    width: 80%;
    height: 2px;
    border-top: 2px dashed #ccc;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    background: var(--gray); 
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 10px var(--gray);
}

.process-step h4 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 15px;
}

.process-step p {
    color: #555;
    font-size: 15px;
}

/* =========================================
   PÁGINA PORTFÓLIO - GARANTIA
========================================= */
.guarantee-section {
    padding: 80px 0;
    background-color: #002840; 
    color: white;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-content i {
    font-size: 100px;
    color: var(--secondary);
}

.guarantee-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

.guarantee-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5e1;
}

@media (max-width: 992px) {
    .process-grid::before { display: none; } 
    .process-grid { grid-template-columns: 1fr; gap: 50px; }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* =========================================
   PÁGINA SERVIÇOS DETALHADOS
========================================= */
.service-detail-section {
    padding: 100px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-grid.inverse .service-detail-text {
    order: -1; 
}

.icon-tag {
    display: inline-block;
    background: rgba(0, 119, 182, 0.1);
    color: var(--primary);
    padding: 15px;
    border-radius: 12px;
    font-size: 32px;
    margin-bottom: 20px;
}

.service-detail-text h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-detail-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.service-detail-text ul {
    margin-bottom: 30px;
}

.service-detail-text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #444;
    font-weight: 600;
}

.service-detail-text ul li i {
    color: var(--secondary);
    font-size: 20px;
}

.service-detail-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .service-detail-grid.inverse .service-detail-text {
        order: unset; 
    }
}

/* =========================================
   SCROLL SUAVE E MENU DE SERVIÇOS (QUICK GRID)
========================================= */
html {
    scroll-behavior: smooth;
}

.quick-services-section {
    padding: 60px 0;
    background-color: white;
}

.quick-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.quick-card {
    background-color: var(--gray);
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    color: var(--dark);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-card i {
    font-size: 40px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.quick-card:hover {
    background-color: white;
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.quick-card:hover i {
    color: var(--secondary);
    transform: scale(1.1);
}

/* =========================================
   TECNOLOGIA E MAQUINÁRIO
========================================= */
.technology-section {
    padding: 100px 0;
    background-color: white;
}

.technology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-text h2 {
    font-size: 36px;
    margin: 15px 0 25px;
    color: var(--primary);
}

.tech-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.tech-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tech-box {
    background: var(--gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.tech-box:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.tech-box i {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 15px;
    display: block;
}

.tech-box:hover i {
    color: white;
}

.tech-box span {
    font-weight: 700;
    font-size: 15px;
}

@media (max-width: 992px) {
    .quick-services-grid { grid-template-columns: repeat(2, 1fr); }
    .technology-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .quick-services-grid { grid-template-columns: 1fr; }
}
/* =========================================
   HOTFIX: ESCONDER BOTÃO FLUTUANTE NO DESKTOP
========================================= */
.cta-floating-mobile {
    display: none !important;
}
/* =========================================
   AJUSTES MOBILE (Botão Flutuante e Títulos)
========================================= */
@media (max-width: 768px) {
    .hero-lp h1 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .cta-floating-mobile {
        position: fixed !important;
        bottom: 25px !important;
        right: 25px !important;
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important; /* Círculo perfeito e centralizado */
        font-size: 0 !important;
        z-index: 9999 !important;
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4) !important;
    }
    
    .cta-floating-mobile i {
        font-size: 36px !important;
        margin: 0 !important; 
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 0 !important; /* Mata o fantasma do alinhamento */
    }
}

/* =========================================
   CORREÇÃO: CENTRALIZAR TEXTO DOS BOTÕES
========================================= */
.hero-cta .btn, 
.btn-primary, 
.btn-lg {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

