@import url("https://unpkg.com/aos@2.3.1/dist/aos.css");
/* ==========================================
   CONFIGURAÇÕES GLOBAIS
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #06121e;
    color: #ffffff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.lime-text {
    color: #dfff00 !important;
}

.brand-small-tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.65);
    display: block;
    margin-bottom: 12px;
}

/* ==========================================
   BOTÕES E COMPONENTES COM INTERAÇÃO
   ========================================== */
.btn-whatsapp-blue {
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-whatsapp-blue:hover { background-color: #0052a3; }

.btn-whatsapp-blue-full {
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    width: 100%;
    margin-top: 24px;
}

.btn-whatsapp-blue-full:hover { background-color: #0052a3; }

.btn-lime {
    background-color: #dfff00;
    color: #06121e;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.btn-lime:hover { background-color: #c4e000; }

.btn-lime-large {
    background-color: #dfff00;
    color: #06121e;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    transition: background 0.2s;
    text-align: center;
}

.btn-lime-large:hover { background-color: #c4e000; }

/* ==========================================
   ESTILIZAÇÃO DO HERO (SEÇÃO 1)
   ========================================== */
.hero-section {
    position: relative;
    background-color: #06121e;
    overflow: hidden;
    min-height: 840px; 
    display: flex;
    align-items: center;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container-hero-img-raw {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 0%; 
    display: block;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
}

.hero-text-block {
    width: 100%;
    max-width: 580px; 
    text-align: left;
}

.logo-area {
    margin-bottom: 40px;
    padding-left: 20px; 
}

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

.hero-text-block h1 {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-subheaders {
    margin-bottom: 20px;
}

.hero-subheaders p {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.hero-subheaders .sub-dry { color: #dfff00; }
.hero-subheaders i { margin-right: 8px; }

.hero-description {
    color: #cbd5e1;
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 26px;
}

.hero-bullets {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-bullets li {
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-bullets li i { color: #dfff00; }

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* ==========================================
   SESSÃO 2 GERAL (RISCO E SOLUÇÃO)
   ========================================== */
.risk-solution-integrated {
    padding: 100px 0;
    background-image: url('img/bg-azul.png'); 
    background-size: cover;          
    background-position: center top; 
    background-repeat: no-repeat;    
    position: relative;
}

.risk-top-row {
    margin-bottom: 80px;
}

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

.solution-black-box {
    background-color: #06121e;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.3);
}

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

.risk-image-box, .solution-image {
    display: flex;
    justify-content: center;
}

.risk-img, .sol-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

.risk-text-box h2, .solution-text h2 {
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 24px;
    color: #ffffff;
}

.risk-bullets, .solution-bullets {
    list-style: none;
    margin-bottom: 28px;
}

.risk-bullets li, .solution-bullets li {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.risk-bullets li i { color: #dfff00; font-size: 1.2rem; }
.solution-bullets li i { color: #0073e6; } 
.solution-intro-p { color: #94a3b8; margin-bottom: 24px; font-size: 1rem; }

.risk-footer-txt {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
}

/* ==========================================
   SEÇÃO 3: SETORES ATENDIDOS
   ========================================== */
.sectors-section-hero {
    position: relative;
    background-color: #06121e;
    overflow: hidden;
    min-height: 680px; 
    display: flex;
    align-items: center;
}

.sectors-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sectors-img-raw {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 35% center; 
    display: block;
}

.sectors-content-wrapper {
    position: relative;
    z-index: 3;
    padding-top: 60px;
    padding-bottom: 60px;
    width: 100%;
}

.sectors-text-block-overlay {
    width: 100%;
    max-width: 580px; 
    margin-left: auto; 
    text-align: left;
}

.sectors-text-block-overlay h2 {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.sectors-pills-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start; 
}

.sector-pill {
    background-color: rgba(6, 18, 30, 0.85); 
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 24px;
    border-radius: 12px; 
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: fit-content; 
}

.sector-pill i { color: #dfff00; font-size: 1.2rem; }

/* ==========================================
   SEÇÃO 4: URGÊNCIA EM LOGÍSTICA
   ========================================== */
.urgency-section {
    padding: 120px 0;
    background-color: #dfff00;
    background-image: url('img/bg-verde.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.urgency-box {
    background-color: #06121e; 
    color: #ffffff;
    border-radius: 24px; 
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

.urgency-arrows {
    font-size: 2rem;
    color: #dfff00;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.urgency-section h2 { font-size: 2.4rem; line-height: 1.2; margin-bottom: 30px; }
.truck-display-container { max-width: 520px; margin: 0 auto 30px auto; }
.truck-img { width: 100%; height: auto; object-fit: contain; }
.urgency-p { font-size: 1.1rem; max-width: 540px; margin: 0 auto 36px auto; color: #cbd5e1; }
.urgency-actions { display: flex; justify-content: center; gap: 16px; }

/* ==========================================
   SEÇÃO 5: MAPA DE ATENDIMENTO NACIONAL
   ========================================== */
.map-section-hero {
    position: relative;
    background-color: #ffffff; 
    overflow: hidden;
    min-height: 740px; 
    display: flex;
    align-items: center;
}

.map-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-img-raw {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 85% center; 
    display: block;
}

.map-content-wrapper {
    position: relative;
    z-index: 3;
    padding-top: 60px;
    padding-bottom: 60px;
    width: 100%;
}

.map-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1100px;
}

.info-card-lime {
    background-color: #dfff00;
    color: #06121e;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card-lime h3 { font-size: 1.8rem; line-height: 1.25; margin-bottom: 16px; color: #06121e; }
.info-card-lime p { font-size: 1.02rem; margin-bottom: 24px; font-weight: 500; }
.card-inner-bullets { list-style: none; font-weight: 700; font-size: 0.98rem; }
.card-inner-bullets li { margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.card-inner-bullets li::before { content: "✓"; color: #06121e; font-weight: 900; font-size: 1.1rem; }

.info-card-dark {
    background-color: #06121e;
    color: #ffffff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card-dark h3 { font-size: 1.8rem; line-height: 1.25; margin-bottom: 16px; }
.info-card-dark p { color: #94a3b8; font-size: 1.02rem; line-height: 1.5; }

/* ==========================================
   SEÇÃO 6: ARQUITETURA DE PRECISÃO MATEMÁTICA
   ========================================== */
.dry-maintenance-section {
    width: 100%;
    background-color: #06121e;
    display: block;
}

/* Bloco Superior - Preto Puro */
.dry-top-black-zone {
    background-color: #06121e;
    padding: 100px 0 0 0;
    width: 100%;
    text-align: center;
}

.visual-linear-flow {
    max-width: 960px;
    margin: 0 auto;
}

.logo-centered-divider {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.divider-logo-img {
    height: 55px;
    width: auto;
}

.dry-top-black-zone h2 {
    font-size: 2.4rem;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 14px;
}

.dry-subtitle {
    color: #dfff00;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.dry-description-text {
    color: #94a3b8;
    font-size: 1.02rem;
    line-height: 1.6;
    max-width: 860px;
    margin: 0 auto 35px auto;
}

.center-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

/* O BLOCO DIVISOR FISÍCO: Corte exato 50/50 na imagem */
.dry-absolute-splitter-wrapper {
    width: 100%;
    background: linear-gradient(to bottom, #06121e 50%, #dfff00 50%);
    display: block;
    line-height: 0;
}

.container-relative-image {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 16px;
    line-height: 0;
}

.dry-showcase-img-split {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 0;
}

/* Bloco Inferior - Verde Limão Puro */
.maintenance-bottom-lime-zone {
    background-color: #dfff00;
    color: #06121e;
    padding: 50px 0 100px 0;
    width: 100%;
    text-align: center;
}

.maint-icon-indicator {
    font-size: 2.2rem;
    color: #06121e;
    margin-bottom: 12px;
}

.maintenance-bottom-lime-zone h3 {
    font-size: 2.3rem;
    color: #06121e;
    margin-bottom: 20px;
}

.maint-intro-txt {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.6;
    max-width: 840px;
    margin: 0 auto 30px auto;
    color: #06121e;
}

.maint-banner-dark-alert {
    background-color: #424A0B;
    color: #dfff00;
    padding: 18px 30px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 45px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.maint-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 35px;
}

.spec-card-dark {
    background-color: #424A0B;
    color: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.spec-card-dark h4 {
    font-size: 1.4rem;
    color: #dfff00;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 12px;
}

.spec-card-dark ul { list-style: none; }
.spec-card-dark ul li {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-card-dark ul li::before {
    content: "✓";
    color: #dfff00;
    font-weight: 900;
}

.maint-third-party-card {
    background-color: #424A0B;
    color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.maint-third-party-card h4 {
    font-size: 1.35rem;
    color: #dfff00;
    margin-bottom: 16px;
}

.maint-third-party-card p {
    color: #cbd5e1;
    font-size: 0.98rem;
    line-height: 1.6;
    font-weight: 500;
}

/* ==========================================
   NOVO RODAPÉ CENTRALIZADO (LOGOS E TEXTOS NA MESMA LINHA)
   ========================================== */
.final-footer { 
    background-color: #06121e; 
    padding: 60px 0 0 0; 
    color: #ffffff; 
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
}

.footer-content-grid { 
    display: flex; 
    justify-content: center;   /* Centraliza todo o conjunto no meio da tela */
    align-items: center;       /* Alinha logo e textos verticalmente ao centro */
    gap: 60px;                 /* Espaço entre logo e textos */
    padding-bottom: 50px; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding-left: 24px; 
    padding-right: 24px; 
}

.footer-logo-img { 
    height: 100px; 
    width: auto; 
}

.footer-text-side { 
    display: flex;             /* Mantém os blocos de texto (Endereço/Contato) em linha */
    gap: 40px;                 /* Espaço entre Endereço e Contato */
}

.footer-info-group h4 { 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    color: #ffffff; 
    margin-bottom: 5px; 
}

.footer-info-group p { 
    font-size: 0.95rem; 
    line-height: 1.6; 
    color: #cbd5e1; 
}

.footer-bottom-bar { 
    background-color: #000000; 
    text-align: center; 
    padding: 20px; 
    font-size: 0.75rem; 
    color: rgba(255, 255, 255, 0.3); 
}

/* RESPONSIVIDADE: Só quebra para coluna no celular */
@media (max-width: 768px) {
    .footer-content-grid { 
        flex-direction: column; /* Coloca tudo em coluna no celular */
        text-align: center; 
        gap: 30px; 
    }
    .footer-text-side { 
        flex-direction: column; /* Coloca endereço sobre contato no celular */
        gap: 20px; 
    }
}
/* RESPONSIVIDADE: Ajuste fino para o celular */
@media (max-width: 768px) {
    .footer-content-grid { 
        flex-direction: column; 
        text-align: center; 
        gap: 25px; /* Reduzimos um pouco o gap para caber melhor */
        padding-bottom: 30px;
    }
    
    .footer-text-side { 
        flex-direction: column; 
        gap: 25px; /* Espaço entre Endereço e Contato no mobile */
    }

    .footer-logo-img { 
        height: 80px; /* Logo um pouco menor no celular para não ficar gigante */
        margin-right: 0; /* Remove margem lateral pois agora é coluna */
    }
}
/* ==========================================
   RESPONSIVIDADE INTELIGENTE CRUCIAL (MOBILE FIRST)
   ========================================== */
@media (max-width: 992px) {
    .hero-section {
        display: flex; 
        min-height: 680px;
        align-items: center;
        padding: 40px 0; 
        background-color: #06121e; 
    }

    .hero-bg-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .container-hero-img-raw {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left center; 
        opacity: 0.25; 
        display: block;
    }

    .hero-content-wrapper {
        position: relative;
        z-index: 3; 
        padding: 20px 24px; 
    }

    .hero-text-block { max-width: 100%; text-align: left; }
    .logo-area { margin-bottom: 30px; display: flex; justify-content: flex-start; }
    .logo-img { height: 64px; }
    .hero-text-block h1 { font-size: 1.85rem; line-height: 1.3; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
    .hero-text-block h1 br { display: none; }
    .hero-subheaders { display: block; text-align: left; margin-bottom: 24px; width: 100%; }
    .hero-subheaders p { font-size: 0.98rem; margin-bottom: 10px; }
    .hero-description { font-size: 0.98rem; text-align: left; margin-bottom: 24px; }
    .hero-description br { display: none; }
    .hero-bullets { display: block; text-align: left; width: 100%; margin-bottom: 30px; }
    .hero-bullets li { font-size: 0.98rem; margin-bottom: 10px; }
    .hero-buttons { flex-direction: column; gap: 12px; width: 100%; }

    .btn-whatsapp-blue, .btn-lime, .btn-lime-large { width: 100%; text-align: center; padding: 16px; }

    .risk-solution-integrated {
        background-image: url('img/bg-azul.png') !important;
        background-size: cover !important;
        background-position: center top !important; 
        padding: 60px 0;
    }

    .risk-grid-desktop, .solution-grid-desktop, .footer-grid-content {
        grid-template-columns: 1fr !important;
        gap: 35px;
        text-align: center;
    }

    .risk-top-row { margin-bottom: 50px; }
    
    .solution-black-box {
        border-radius: 24px; 
        padding: 35px 20px; 
        margin: 0; 
    }

    .risk-image-box, .solution-image { 
        order: -1; 
        margin-bottom: 10px; 
        justify-content: center; 
    }

    .risk-text-box h2, .solution-text h2 { font-size: 1.8rem; }
    .solution-text { text-align: center; }
    .solution-bullets, .risk-bullets { display: inline-block; text-align: left; }

    .sectors-section-hero {
        min-height: auto;
        padding: 60px 0;
    }
    .sectors-img-raw {
        opacity: 0.15; 
        object-position: 25% center;
    }
    .sectors-text-block-overlay {
        max-width: 100%;
        margin-left: 0; 
        text-align: center;
    }
    .sectors-text-block-overlay h2 { font-size: 1.85rem; }
    .sectors-pills-container { align-items: center; }
    .sector-pill { width: 100%; justify-content: center; background-color: rgba(6, 18, 30, 0.95); }

    .urgency-section {
        background-image: url('img/bg-verde.png') !important;
        background-size: cover !important;
        padding: 60px 0;
    }
    .urgency-box { padding: 40px 20px; margin: 0 10px; }
    .urgency-section h2 { font-size: 1.8rem; }
    .urgency-actions { flex-direction: column; gap: 12px; }

    .map-section-hero { min-height: auto; padding: 60px 0; }
    .map-img-raw { opacity: 0.15; object-position: center center; }
    .map-cards-grid { grid-template-columns: 1fr !important; gap: 24px; padding: 0 10px; }
    .info-card-lime, .info-card-dark { padding: 30px 20px; text-align: center; }
    .info-card-lime h3, .info-card-dark h3 { font-size: 1.5rem; }
    .card-inner-bullets { display: inline-block; text-align: left; margin: 0 auto; }

    /* RESPONSIVIDADE SEÇÃO 6 MOBILE */
    .dry-top-black-zone { padding: 60px 0 0 0; }
    .dry-top-black-zone h2 { font-size: 1.75rem; }
    .dry-description-text { font-size: 0.95rem; padding: 0 10px; }
    
    .maintenance-bottom-lime-zone { padding: 40px 20px 60px 20px; }
    .maintenance-bottom-lime-zone h3 { font-size: 1.75rem; }
    .maint-intro-txt { font-size: 0.95rem; }
    .maint-banner-dark-alert { font-size: 0.95rem; width: 100%; padding: 15px; }
    
    .maint-specs-grid { grid-template-columns: 1fr !important; gap: 20px; }
    .spec-card-dark { padding: 30px 20px; }
    .maint-third-party-card { padding: 30px 20px; }

    /* FOOTER MOBILE */
    .main-footer { text-align: center; padding: 50px 0 20px 0; }
    .footer-brand-side { display: flex; justify-content: center; }
}

@media (max-width: 576px) {
    .hero-text-block h1 { font-size: 1.65rem; }
}

/* ==========================================
   ESTILIZAÇÃO DA PÁGINA ISOLADA DE ESPECIFICAÇÕES
   ========================================== */
.specs-page-body {
    background-color: #00101E; /* Fundo escuro focado no contraste das tabelas */
    min-height: 100vh;
    padding: 0px 0;
}

.specs-wrapper-flow {
    max-width: 900px; /* Alinhamento focado igual ao print */
    margin: 0 auto;
}

.specs-header-centered {
    text-align: center;
    margin-bottom: 50px;
}

.specs-logo-area {
    margin-bottom: 24px;
}

.specs-logo-img {
    height: 65px;
    width: auto;
}

.specs-header-centered h2 {
    font-size: 2.3rem;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 12px;
}

.specs-header-centered p {
    color: #94a3b8;
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
}

/* CONTAINER DOS MENUS SUSPENSOS */
.accordion-group-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
}

.accordion-item-wrapper {
    width: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

/* O BOTÃO GATILHO (A FAIXA LIME DO PRINT) */
.accordion-trigger-btn {
    width: 100%;
    background-color: #dfff00; /* Verde-Limão idêntico ao print */
    color: #06121e;
    border: none;
    outline: none;
    padding: 20px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s;
}

.accordion-trigger-btn:hover {
    background-color: #cbdc00;
}

/* Ícone de status (Seta ou chevron do canto direito) */
.arrow-icon-status {
    font-size: 1.25rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(6, 18, 30, 0.08);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

/* PAINEL INTERNO SUSPENSO (CONCEITO RECOLHIDO EM ALTURA 0) */
.accordion-content-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #ffffff;
}

/* DIAGRAMAÇÃO INTERNA: ESPECIFICAÇÕES VS RENDERING */
.specs-inner-layout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    padding: 40px 30px;
    align-items: center;
    color: #06121e;
}

.specs-table-side {
    display: flex;
    flex-direction: column;
}

.table-header-titles {
    display: flex;
    justify-content: space-between;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: #64748b;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
    margin-bottom: 14px;
}

.spec-data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px dashed #e2e8f0;
}

.spec-data-row:last-child {
    border-bottom: none;
}

.spec-data-row span {
    color: #475569;
    font-weight: 500;
}

.spec-data-row strong {
    color: #06121e;
    font-weight: 700;
}

.specs-image-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-rendering-fluid {
    width: 100%;
    max-width: 340px;
    height: auto;
    object-fit: contain;
}

/* STATUS DE ATIVAÇÃO EXPANDIDA VIA JAVASCRIPT */
.item-expanded {
    transform: translateY(2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.item-expanded .arrow-icon-status {
    transform: rotate(180deg);
    background-color: #06121e;
    color: #dfff00;
}

.specs-back-navigation {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.specs-back-navigation i {
    font-size: 1.3rem;
    vertical-align: middle;
}

/* ==========================================
   URGENTE: RESPONSIVIDADE TOTAL NO CELULAR
   ========================================== */
@media (max-width: 768px) {
    .specs-page-body {
        padding: 40px 0;
    }

    .specs-header-centered h2 {
        font-size: 1.8rem;
    }

    .accordion-trigger-btn {
        padding: 16px 20px;
        font-size: 1.05rem;
    }

    .specs-inner-layout-grid {
        grid-template-columns: 1fr !important; /* Quebra as duas colunas laterais em fluxo de cima para baixo */
        gap: 30px;
        padding: 24px 20px;
    }

    .specs-image-side {
        order: -1; /* Força a renderização 3D do container a ficar no topo do texto no celular */
        background-color: #f8fafc;
        padding: 20px;
        border-radius: 12px;
    }

    .container-rendering-fluid {
        max-width: 260px;
    }

    .table-header-titles {
        font-size: 0.8rem;
    }

    .spec-data-row {
        font-size: 0.88rem;
    }
}

/* Correção para o footer não herdar estilos da página de especificações */
.specs-page-body .final-footer {
    display: block; /* Garante que o footer ocupe a largura total */
    margin-top: 50px; /* Dá respiro entre o botão voltar e o rodapé */
}

/* Força o container do rodapé a centralizar no mobile na página de especificações */
@media (max-width: 768px) {
    .specs-page-body .final-footer {
        padding: 40px 0 0 0;
    }
}



/* Efeito de movimento nos botões */
.btn-lime, .btn-lime-large, .btn-whatsapp-blue {
    transition: transform 0.3s ease !important;
}
.btn-lime:hover, .btn-lime-large:hover, .btn-whatsapp-blue:hover {
    transform: translateY(-5px);
}

/* Animação suave para os itens do setor */
.sector-pill {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer; /* Muda o mouse para indicar que é clicável */
}

.sector-pill:hover {
    transform: scale(1.05); /* Aumenta o tamanho em 5% */
    background-color: rgba(255, 255, 255, 0.1); /* Muda levemente o fundo */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4); /* Cria uma sombra mais profunda */
    border-color: #dfff00; /* Realça a borda com o verde limão da marca */
}