/* ============================================================
   SECTION 1: HERO (AJUSTE FINO DE PROPORÇÃO E ESPAÇAMENTO)
============================================================ */
.industry-hero {
    background-color: #F8FAFC; 
    padding: 160px 0; 
    width: 100%;
}

.industry-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr; 
    align-items: center;
    gap: 80px; 
}

.industry-text-side {
    max-width: 540px;
}

.industry-kicker {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #94A3B8;
    letter-spacing: 0.05em; 
    text-transform: uppercase;
    margin-bottom: 16px;
}

.industry-title {
    font-family: 'Source Serif 4', serif; 
    font-size: 52px;
    font-weight: 700;
    color: #1E293B;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 36px;
}

.industry-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: #64748B;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 440px;
}

.industry-image-side {
    display: flex;
    justify-content: flex-end;
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 420px;
}

.hero-main-bg {
    width: 100%;
    height: 500px; 
    object-fit: cover; 
    display: block;
    border-radius: 60px;
}

.hero-float {
    position: absolute;
    z-index: 2;
    width: 55%; 
    transition: transform 0.4s ease;
}

.hero-float.float-0 {
    
    left: -28%; 
    top: 28%;
    border-radius: 60px;
}

.hero-float.float-1 {
    left: -28%;
    top: 58%;
    border-radius: 60px;
}

/* ============================================================
   SECTION 2: CARDS DE PÍLULAS (Fundo Uniformizado conforme Foto 1)
============================================================ */
.industry-cards {
    padding: 60px 0 40px 0;
    background-color: #F8FAFC; 
    text-align: center;
}

.cards-title {
    font-family: 'Source Serif 4', serif;
    font-size: 46px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

.cards-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card-pill img {
    width: 100%;
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
     border-radius: 60px;
}

.card-pill img:hover {
    transform: translateY(-5px); 
}

/* ============================================================
   SECTIONS ALTERNADAS (Zigue-Zague)
============================================================ */
.industry-feature {
    padding: 100px 0; /* Reduzido de 80px para manter o ritmo visual da Foto 1 */
    background-color: #F8FAFC; 
}

.feature-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.feature-flex.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    max-width: 500px;
}

.feature-title {
    font-family: 'Source Serif 4', serif;
    font-size: 46px;
    font-weight: 700;
    color: #1E293B;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.feature-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: #64748bc9;
    font-weight: 600;
    line-height: 1.6;
}

.feature-img-side {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-img-side img {
    width: 100%;
    max-width: 480px; 
    height: auto;
     border-radius: 60px;
}

/* ============================================================
   SECTION 5: CTA FINAL
============================================================ */
.industry-cta {
    padding: 220px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

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

.cta-title {
    font-family: 'Source Serif 4', serif;
    font-size: 48px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}




/* ============================================================
   ANIMAÇÕES DE REVELAÇÃO (JS REQUISITO)
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.24, 1, 0.32, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.card-pill:nth-child(1) { transition-delay: 0.1s; }
.card-pill:nth-child(2) { transition-delay: 0.2s; }
.card-pill:nth-child(3) { transition-delay: 0.3s; }
.card-pill:nth-child(4) { transition-delay: 0.4s; }
.card-pill:nth-child(5) { transition-delay: 0.5s; }

@media (max-width: 480px) {
    .reveal {
        transform: translateY(20px); 
        transition-duration: 0.6s;
    }
}

/* ============================================================
    RESPONSIVIDADE (Otimizada para 1366px e iPhone 12)
   ============================================================ */

@media (max-width: 1366px) {
    .industry-hero { padding: 80px 0; }
    .industry-title { font-size: 44px; }
    .industry-hero-grid { gap: 40px; }
    .hero-main-bg { height: 420px; }
    .industry-cta { padding: 140px 0; }
}

@media (max-width: 1024px) {
    .industry-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .industry-text-side { margin: 0 auto 60px; }
    .industry-image-side { justify-content: center; }
    .feature-flex { flex-direction: column; text-align: center; gap: 40px; }
    .feature-flex.reverse { flex-direction: column; }
}

@media (max-width: 480px) {
    .industry-hero { padding: 60px 20px; }
    .industry-title { font-size: 32px; }
    .industry-description { font-size: 16px; margin-bottom: 30px; }
    
    /* Evita que os bloquinhos cortem na tela estreita do celular */
    .hero-image-wrapper { max-width: 280px; }
    .hero-main-bg { height: 350px; border-radius: 40px; }
    .hero-float { width: 60%; }
    .hero-float.float-0 { left: -15%; } 
    .hero-float.float-1 { left: -15%; }

    .cards-title, .feature-title { font-size: 28px; }
    .card-pill img { max-width: 150px; }
    .industry-cta { padding: 100px 20px; }
    .cta-title { font-size: 30px; }
}
.snd-footer-cta { background: #0B4D8A !important; position: relative; z-index: 10; margin-top: -20px; padding-top: 34px; }
