/* ========================================
   Inner Pages — Brand Detail Styles (v2)
   Cada página define --brand e --brand-soft
   ======================================== */

/* ========================================
   Hero
   ======================================== */

.inner-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.05));
}

.inner-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 980px;
}

.inner-hero-tagline {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-top: 36px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    animation: heroTaglineEnter 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.inner-hero-tagline.dark {
    color: rgba(20, 20, 20, 0.92);
    text-shadow: none;
}

@keyframes heroTaglineEnter {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo entrance animation */
@keyframes logoEntrance {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.inner-hero .brand-logo {
    max-width: 360px;
    max-height: 240px;
    filter: drop-shadow(0 8px 40px rgba(0,0,0,0.25));
    animation: logoEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.inner-hero .logo-invert {
    filter: brightness(0) invert(1) drop-shadow(0 8px 40px rgba(0,0,0,0.35));
}

.inner-hero .logo-xlarge {
    max-width: 480px;
    max-height: 320px;
}

.inner-hero .logo-large {
    max-width: 420px;
    max-height: 280px;
}

/* Hero decorative floating shapes */
.inner-hero::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    top: -80px;
    right: -80px;
    animation: floatShape 8s ease-in-out infinite;
}

.inner-hero::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    bottom: -60px;
    left: -60px;
    animation: floatShape 10s ease-in-out infinite reverse;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

/* ========================================
   Sections
   ======================================== */

.inner-section {
    padding: 110px 0;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.inner-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.inner-section .container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section eyebrow / kicker */
.inner-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand, #C41E24);
    padding: 6px 14px;
    border: 1px solid var(--brand, #C41E24);
    border-radius: 100px;
    margin-bottom: 24px;
    opacity: 0.9;
}

/* Section titles — big and bold */
.inner-section h2 {
    font-size: clamp(2.2rem, 5.5vw, 3.4rem);
    font-weight: 900;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    line-height: 1.05;
    position: relative;
}

.inner-section h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: var(--brand, #C41E24);
    border-radius: 2px;
    margin-top: 22px;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.inner-section.revealed h2::after {
    width: 96px;
}

/* Tagline / lead text */
.inner-section p strong {
    color: #1a1a1a;
    font-weight: 800;
}

.inner-section p {
    color: #444;
    line-height: 1.85;
    margin-bottom: 20px;
    font-size: 1.15rem;
}

.inner-section .lead {
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.015em;
    margin-bottom: 28px;
}

.inner-section .pullquote {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--brand, #C41E24);
    border-left: 5px solid var(--brand, #C41E24);
    padding: 8px 0 8px 28px;
    margin: 36px 0;
}

/* ========================================
   Section style variants
   ======================================== */

/* Soft block — subtle tinted background */
.section-soft {
    background: var(--brand-soft, #fcecec);
}

/* Bold block — full color background */
.section-bold {
    background: var(--brand, #C41E24);
    color: #fff;
}

.section-bold h2,
.section-bold p,
.section-bold .lead,
.section-bold li {
    color: #fff;
}

.section-bold p strong { color: #fff; }

.section-bold h2::after { background: #fff; }

.section-bold .inner-eyebrow {
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

.section-bold .pullquote {
    color: #fff;
    border-left-color: #fff;
}

/* Dark block */
.section-dark {
    background: #0e0e0e;
    color: #fff;
}

.section-dark h2,
.section-dark p,
.section-dark .lead,
.section-dark li { color: #f5f5f5; }

.section-dark p strong { color: #fff; }

.section-dark .inner-eyebrow {
    color: var(--brand, #C41E24);
    border-color: var(--brand, #C41E24);
}

/* ========================================
   Feature lists — card grid
   ======================================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 28px 26px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}

.section-bold .feature-card {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.18);
    color: #fff;
}

.section-soft .feature-card {
    background: #fff;
}

.inner-section.revealed .feature-card {
    opacity: 1;
    transform: translateY(0);
}

.inner-section.revealed .feature-card:nth-child(1) { transition-delay: 0.10s; }
.inner-section.revealed .feature-card:nth-child(2) { transition-delay: 0.18s; }
.inner-section.revealed .feature-card:nth-child(3) { transition-delay: 0.26s; }
.inner-section.revealed .feature-card:nth-child(4) { transition-delay: 0.34s; }
.inner-section.revealed .feature-card:nth-child(5) { transition-delay: 0.42s; }
.inner-section.revealed .feature-card:nth-child(6) { transition-delay: 0.50s; }
.inner-section.revealed .feature-card:nth-child(7) { transition-delay: 0.58s; }
.inner-section.revealed .feature-card:nth-child(8) { transition-delay: 0.66s; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--brand, #C41E24);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.08);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--brand-soft, #fcecec);
    color: var(--brand, #C41E24);
    font-weight: 900;
    font-size: 1rem;
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
}

.section-bold .feature-card-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.feature-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    color: inherit;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: inherit;
    opacity: 0.85;
}

/* Lists fallback (when not in feature-grid) */
.inner-section ul:not(.plain) {
    color: #444;
    line-height: 1.85;
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}

.inner-section ul:not(.plain) li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    font-size: 1.05rem;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.inner-section.revealed ul:not(.plain) li {
    opacity: 1;
    transform: translateX(0);
}

.inner-section.revealed li:nth-child(1) { transition-delay: 0.1s; }
.inner-section.revealed li:nth-child(2) { transition-delay: 0.18s; }
.inner-section.revealed li:nth-child(3) { transition-delay: 0.26s; }
.inner-section.revealed li:nth-child(4) { transition-delay: 0.34s; }
.inner-section.revealed li:nth-child(5) { transition-delay: 0.42s; }
.inner-section.revealed li:nth-child(6) { transition-delay: 0.50s; }
.inner-section.revealed li:nth-child(7) { transition-delay: 0.58s; }

.inner-section ul:not(.plain) li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 12px;
    height: 2px;
    background: var(--brand, #C41E24);
    border-radius: 2px;
}

/* ========================================
   Stats — BIG and impactful
   ======================================== */

.inner-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin: 40px 0 8px;
}

.inner-stat {
    text-align: left;
    padding: 36px 26px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #ececec;
    opacity: 0;
    transform: translateY(25px) scale(0.96);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.section-soft .inner-stat {
    background: #fff;
}

.section-bold .inner-stat {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.18);
}

.inner-stat::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand, #C41E24);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.inner-section.revealed .inner-stat {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.inner-section.revealed .inner-stat::after {
    transform: scaleX(1);
}

.inner-section.revealed .inner-stat:nth-child(1) { transition-delay: 0.05s; }
.inner-section.revealed .inner-stat:nth-child(2) { transition-delay: 0.15s; }
.inner-section.revealed .inner-stat:nth-child(3) { transition-delay: 0.25s; }
.inner-section.revealed .inner-stat:nth-child(4) { transition-delay: 0.35s; }
.inner-section.revealed .inner-stat:nth-child(5) { transition-delay: 0.45s; }
.inner-section.revealed .inner-stat:nth-child(6) { transition-delay: 0.55s; }

.inner-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.section-bold .inner-stat:hover {
    background: rgba(255,255,255,0.18);
}

.inner-stat-number {
    display: block;
    font-size: clamp(2.2rem, 4.6vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--brand, #C41E24);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.section-bold .inner-stat-number,
.section-dark .inner-stat-number {
    color: #fff;
}

.inner-stat-suffix-word {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--brand, #C41E24);
    letter-spacing: 0.01em;
    line-height: 1.15;
    margin-top: -2px;
    margin-bottom: 10px;
    text-transform: none;
    opacity: 0.9;
}

.section-bold .inner-stat-suffix-word,
.section-dark .inner-stat-suffix-word {
    color: rgba(255, 255, 255, 0.95);
}

.inner-stat-label {
    font-size: 0.82rem;
    color: #888;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    display: block;
}

.section-bold .inner-stat-label {
    color: rgba(255,255,255,0.85);
}

/* ========================================
   Two-column layout (Importância + Operadores etc)
   ======================================== */

.dual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 36px;
}

.dual-grid > div {
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.12);
}

.section-soft .dual-grid > div,
.inner-section:not(.section-bold):not(.section-dark) .dual-grid > div {
    background: #fff;
    border-color: #ececec;
}

.dual-grid h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

/* ========================================
   Locations grid
   ======================================== */

.locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.location-pill {
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(15px);
}

.section-bold .location-pill {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}

.inner-section.revealed .location-pill {
    opacity: 1;
    transform: translateY(0);
}

.inner-section.revealed .location-pill:nth-child(1) { transition: all 0.5s 0.1s cubic-bezier(0.16, 1, 0.3, 1); }
.inner-section.revealed .location-pill:nth-child(2) { transition: all 0.5s 0.18s cubic-bezier(0.16, 1, 0.3, 1); }
.inner-section.revealed .location-pill:nth-child(3) { transition: all 0.5s 0.26s cubic-bezier(0.16, 1, 0.3, 1); }
.inner-section.revealed .location-pill:nth-child(4) { transition: all 0.5s 0.34s cubic-bezier(0.16, 1, 0.3, 1); }
.inner-section.revealed .location-pill:nth-child(5) { transition: all 0.5s 0.42s cubic-bezier(0.16, 1, 0.3, 1); }
.inner-section.revealed .location-pill:nth-child(6) { transition: all 0.5s 0.50s cubic-bezier(0.16, 1, 0.3, 1); }
.inner-section.revealed .location-pill:nth-child(7) { transition: all 0.5s 0.58s cubic-bezier(0.16, 1, 0.3, 1); }

.location-pill:hover {
    transform: translateY(-3px);
    border-color: var(--brand, #C41E24);
    color: var(--brand, #C41E24);
}

.section-bold .location-pill:hover {
    background: #fff;
    color: var(--brand, #C41E24);
}

/* ========================================
   Cotas / Sponsorship Cards
   ======================================== */

.cotas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.cota-card {
    padding: 36px 26px;
    border: 2px solid #e5e5e0;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
    background: #fff;
}

.inner-section.revealed .cota-card {
    opacity: 1;
    transform: translateY(0);
}

.inner-section.revealed .cota-card:nth-child(1) { transition-delay: 0.15s; }
.inner-section.revealed .cota-card:nth-child(2) { transition-delay: 0.3s; }
.inner-section.revealed .cota-card:nth-child(3) { transition-delay: 0.45s; }

.cota-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--brand, #C41E24);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left;
}

.cota-card:hover::before { transform: scaleX(1); }

.cota-card:hover {
    border-color: var(--brand, #C41E24);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.cota-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.cota-card p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   Entregas (deliverables)
   ======================================== */

.entregas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    margin-top: 36px;
    align-items: stretch;
}

.entrega-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 30px;
    border: 1px solid #ececec;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.entrega-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--brand, #C41E24);
}

.inner-section.revealed .entrega-card {
    opacity: 1;
    transform: translateY(0);
}

.inner-section.revealed .entrega-card:nth-child(1) { transition-delay: 0.1s; }
.inner-section.revealed .entrega-card:nth-child(2) { transition-delay: 0.22s; }
.inner-section.revealed .entrega-card:nth-child(3) { transition-delay: 0.34s; }
.inner-section.revealed .entrega-card:nth-child(4) { transition-delay: 0.46s; }

.entrega-tier {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand, #C41E24);
    margin-bottom: 6px;
    display: block;
}

.entrega-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    line-height: 1.15;
}

.entrega-card p.entrega-lead {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.55;
    margin: 0 0 18px;
}

.entrega-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.entrega-list li {
    padding-left: 28px;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
}

.inner-section ul.entrega-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--brand-soft, #fcecec);
    border: 2px solid var(--brand, #C41E24);
}

.entrega-list li strong {
    color: var(--brand, #C41E24);
    font-weight: 800;
    margin-right: 4px;
}

/* ========================================
   Social / Site links
   ======================================== */

.brand-channels {
    background: #fafaf8;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    padding: 60px 0;
}

.brand-channels .container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}

.channels-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    text-align: center;
    margin-bottom: 22px;
}

.channels-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.channel-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 100px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.channel-link:hover {
    transform: translateY(-2px);
    border-color: var(--brand, #C41E24);
    color: var(--brand, #C41E24);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.channel-icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    color: var(--brand, #C41E24);
}

.channel-icon svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   Back Link
   ======================================== */

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 48px 0;
    border-radius: 100px;
    background: #fafaf8;
    border: 1px solid #e5e5e0;
}

.back-link:hover {
    color: #1a1a1a;
    background: #fff;
    transform: translateX(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
    .inner-hero {
        min-height: 55vh;
    }

    .inner-hero-content {
        padding: 100px 24px 60px;
    }

    .inner-hero .brand-logo {
        max-width: 260px;
        max-height: 200px;
    }

    .inner-hero .logo-xlarge {
        max-width: 320px;
        max-height: 240px;
    }

    .inner-hero .logo-large {
        max-width: 290px;
        max-height: 220px;
    }

    .inner-section {
        padding: 80px 0;
    }

    .inner-section h2 {
        font-size: 2rem;
    }

    .inner-stat-number {
        font-size: 2rem;
    }
    .inner-stat-suffix-word {
        font-size: 0.85rem;
    }

    .inner-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .inner-stat {
        padding: 24px 18px;
    }

    .cotas-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .channels-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .channel-link {
        justify-content: center;
    }
}
