/* ========================================
   ENTUR SUMMIT 2026 — PROPOSTA DE PARCERIA
   Premium editorial design
   ======================================== */

/* ===== FONT FACES ===== */
@font-face {
    font-family: 'Robuck';
    src: url('assets/fonts/Robuck-Regular.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Saint';
    src: url('assets/fonts/SaintRegus-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('assets/fonts/Aeonik-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('assets/fonts/Aeonik-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('assets/fonts/Aeonik-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Aeonik';
    src: url('assets/fonts/Aeonik-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

/* ===== VARIABLES ===== */
:root {
    --navy: #1F005C;
    --purple: #7A05F9;
    --purple-deep: #600FED;
    --pink: #DC00E7;
    --red: #FF2B61;
    --coral: #FF614C;
    --peach: #FFC7AC;
    --lime: #D5EE48;
    --lime-dark: #C4ED0F;
    --yellow-soft: #FFE6A2;
    --dark: #06091A;
    --white: #FFFFFF;
    --text: #E8E4F0;
    --text-muted: #9B8FB5;
    --bg-card: #0E1230;
    --bg-body: #06091A;
    --bg-card-border: rgba(122, 5, 249, 0.15);
    --font-display: 'Robuck', 'Georgia', serif;
    --font-heading: 'Saint', 'Georgia', serif;
    --font-body: 'Aeonik', 'Inter', -apple-system, sans-serif;
    --gradient-line: linear-gradient(90deg, #600FED 0%, #DC00E7 30%, #FF2B61 55%, #FF614C 78%, #FFC7AC 100%);
    --gradient-text: linear-gradient(88deg, #5F02F1 -11%, #E93ADB 20%, #E63077 50%, #FC4256 78%, #FD9B5A 107%);
    --paper-bg: url('https://entursummit.com.br/wp-content/uploads/2026/03/bg-papper-v1.webp');
    --radius: 16px;
    --radius-sm: 10px;
    --content-max: 1100px;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bg-body);
}

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

/* ===== UTILITY ===== */
.container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 32px;
}

.text-center { text-align: center; }

/* ===== TOPBAR ===== */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(6, 9, 26, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(122, 5, 249, 0.12);
    transition: box-shadow 0.4s ease;
}

.topbar.scrolled {
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.3);
}

.topbar-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.topbar-logo {
    height: 16px;
    width: auto;
    filter: brightness(0) invert(1);
}

.topbar-brand {
    margin-right: 40px;
}

.topbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.topbar-links a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.3s;
    white-space: nowrap;
}

.topbar-links a:hover {
    color: var(--white);
}

.topbar-links a.nav-active {
    color: var(--lime);
}

.btn-cta-nav {
    background: var(--lime) !important;
    color: var(--dark) !important;
    padding: 10px 24px !important;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
    letter-spacing: 0.02em !important;
}

.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 237, 15, 0.35);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0; right: 0;
    background: rgba(6, 9, 26, 0.98);
    backdrop-filter: blur(16px);
    padding: 24px 32px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    padding: 8px 0;
    border-bottom: 1px solid rgba(122, 5, 249, 0.12);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.active { display: flex; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-top: 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6, 9, 26, 0.85) 0%,
        rgba(6, 9, 26, 0.55) 35%,
        rgba(6, 9, 26, 0.2) 60%,
        rgba(6, 9, 26, 0.05) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 32px 100px;
    width: 100%;
}

.hero-mark {
    height: 32px;
    width: auto;
    margin-bottom: 32px;
    filter: brightness(0) invert(1);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(56px, 9vw, 100px);
    font-weight: 400;
    line-height: 0.88;
    color: var(--white);
    margin-bottom: 24px;
    max-width: 700px;
}

.hero-info {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 40px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--lime);
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(213, 238, 72, 0.3);
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

/* ===== GRADIENT DASH LINE (SIGNATURE) ===== */
.gradient-dash-line {
    height: 3px;
    background: var(--gradient-line);
    -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 8px, transparent 8px 16px);
    mask-image: repeating-linear-gradient(90deg, #000 0 8px, transparent 8px 16px);
    margin: 32px 0;
}

.gradient-dash-line-full {
    height: 3px;
    background: var(--gradient-line);
    -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 8px, transparent 8px 16px);
    mask-image: repeating-linear-gradient(90deg, #000 0 8px, transparent 8px 16px);
    margin-bottom: 32px;
}

/* ===== IMPACT SECTION ===== */
.sec-impact {
    background: var(--bg-body);
    padding: 48px 0;
}

.impact-quote {
    padding: 24px 0;
}

.impact-quote p {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    line-height: 0.95;
    color: var(--white);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== FAIXA AMARELA ===== */
.faixa-amarela {
    background-image: linear-gradient(rgba(255,230,162,0.2), rgba(255,230,162,0.2));
    background-repeat: no-repeat;
    background-size: 110% 35%;
    background-position: -2% 80%;
    padding: 0 4px;
    color: var(--lime);
}

/* ===== SECTION BASE ===== */
.sec-paper {
    position: relative;
    padding: 72px 0;
    background: var(--bg-body);
}

.sec-paper p {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.sec-paper strong {
    font-weight: 700;
    color: var(--white);
}

/* ===== LABELS ===== */
.label-saint {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--lime);
    margin-bottom: 12px;
}

/* ===== TITLES ===== */
.title-robuck {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(38px, 5.5vw, 72px);
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 16px;
}

.title-robuck.white { color: var(--white); }

.subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.55;
    margin-bottom: 32px;
}

.subtitle.text-center {
    margin-left: auto;
    margin-right: auto;
}

/* ===== MAPA DO EVENTO ===== */
.mapa-vertical {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mapa-vertical img {
    width: 100%;
    border-radius: 16px;
}

.mapa-col {
    overflow: hidden;
}

.mapa-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.mapa-img {
    width: 140%;
    max-width: none;
    margin-left: -20%;
    border-radius: 16px;
    transform: rotate(90deg);
    transition: transform 0.3s;
}

.mapa-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(6, 9, 26, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(122, 5, 249, 0.3);
    border-radius: 100px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
}

.mapa-btn:hover {
    background: var(--purple);
    border-color: var(--purple);
}

/* Fullscreen overlay */
.mapa-fullscreen {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(6, 9, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.mapa-fullscreen.active {
    display: flex;
}

.mapa-fullscreen-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.mapa-fullscreen-inner img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
}

.mapa-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
}

.mapa-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ===== TWO COL ===== */
.two-col {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.col-img { flex: 1; }

.editorial-img {
    border-radius: var(--radius);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.col-text { flex: 1; }

/* ===== STATS ===== */
.stats-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 14px;
    padding: 32px 28px;
    text-align: center;
    min-width: 180px;
    flex: 1;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(122, 5, 249, 0.12);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 400;
    color: var(--lime);
    line-height: 1;
}

.stat-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 10px;
}

/* ===== TIMELINE ===== */
.timeline {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 32px 0;
}

.tl-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 14px;
    padding: 28px 32px;
    text-align: center;
    min-width: 170px;
    flex: 1;
    transition: all 0.3s;
}

.tl-active {
    background: var(--purple);
    border-color: var(--purple);
    transform: scale(1.06);
    box-shadow: 0 12px 40px rgba(122, 5, 249, 0.25);
}

.tl-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.tl-active .tl-year { color: var(--lime); }

.tl-city {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.tl-active .tl-city { color: var(--white); }

.tl-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--white);
}

.tl-active .tl-number { color: var(--white); }

/* ===== EDITORIAL IMAGES ===== */
.img-editorial {
    margin-top: 60px;
}

.img-editorial img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

/* ===== VIDEO ===== */
.video-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #0a0a0a;
    box-shadow: 0 24px 64px rgba(31, 0, 92, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-large {
    border-radius: 24px;
}

/* ===== DIFFERENTIALS ===== */
.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.diff-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    padding: 36px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}

.diff-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(122, 5, 249, 0.15);
}

.diff-index {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    background: var(--purple);
    border-radius: 14px;
}

.diff-content h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    line-height: 1.3;
}

.diff-content p {
    font-size: 15px !important;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 0 !important;
}

/* ===== RELATIONSHIP GRID ===== */
.rel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.rel-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    padding: 36px 28px;
}

.rel-card-active {
    background: var(--purple);
    border-color: var(--purple);
    box-shadow: 0 12px 40px rgba(122, 5, 249, 0.2);
}

.rel-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--gradient-line);
    color: var(--white);
    margin-bottom: 24px;
}

.rel-card li {
    font-size: 14px;
    color: var(--text-muted);
    padding: 10px 0 10px 18px;
    border-bottom: 1px solid rgba(122, 5, 249, 0.08);
    position: relative;
    line-height: 1.45;
}

.rel-card-active li {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
}

.rel-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple);
}

.rel-card-active li::before { background: var(--lime); }
.rel-card li:last-child { border-bottom: none; }

/* ===== PHOTO BREAK ===== */
/* ===== GALERIA MARQUEE (portrait cards com rotação) ===== */
.sec-galeria {
    padding: 48px 0;
    overflow: hidden;
    background: var(--bg-body);
}

.galeria-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.galeria-track {
    display: flex;
    gap: 20px;
    align-items: center;
    animation: marquee-scroll 50s linear infinite;
    width: max-content;
    padding: 40px 0;
}

.galeria-card {
    flex-shrink: 0;
    width: 200px;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.galeria-card:nth-child(odd) { transform: rotate(-2deg); }
.galeria-card:nth-child(even) { transform: rotate(4deg); }
.galeria-card:nth-child(3n) { transform: rotate(-4deg); }
.galeria-card:nth-child(4n+1) { transform: rotate(5deg); }

.galeria-card:hover {
    transform: rotate(0deg) scale(1.06);
    box-shadow: 0 16px 48px rgba(122, 5, 249, 0.3);
    z-index: 2;
}

.galeria-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder {
    background: #1A1E3A;
    aspect-ratio: 3 / 2;
    border-radius: 12px;
    width: 100%;
}

/* ===== EVENT DATA STRIP ===== */
.event-data-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 32px 40px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
}

.event-data-item {
    flex: 1;
    text-align: center;
    padding: 0 28px;
}

.event-data-divider {
    width: 1px;
    height: 48px;
    background: rgba(122, 5, 249, 0.25);
    flex-shrink: 0;
}

.event-data-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.event-data-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.event-data-highlight {
    color: var(--lime);
    font-size: 18px;
}

/* ===== COTA HERO (Value-first layout) ===== */
.cota-hero {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 36px;
}

.cota-hero-text {
    flex: 1;
}

.cota-hero-text p {
    font-size: 17px !important;
    color: var(--text-muted);
    line-height: 1.6;
}

.cota-hero-img {
    flex: 0 0 44%;
    position: relative;
}

.cota-size-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 10px 0;
    margin-bottom: 12px;
    border-top: 1px solid rgba(122, 5, 249, 0.2);
    border-bottom: 1px solid rgba(122, 5, 249, 0.2);
    width: 100%;
}

.cota-hero-img .img-placeholder {
    border-radius: var(--radius);
}

.cota-hero-img img {
    border-radius: var(--radius);
}

/* ===== VALOR SECTION (Why it's unique) ===== */
.valor-section {
    margin-bottom: 36px;
}

.valor-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lime);
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(122, 5, 249, 0.2);
}

.valor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.valor-card {
    background: rgba(122, 5, 249, 0.06);
    border: 1px solid rgba(122, 5, 249, 0.12);
    border-radius: 14px;
    padding: 28px 24px;
    transition: transform 0.3s, border-color 0.3s;
}

.valor-card:hover {
    transform: translateY(-3px);
    border-color: rgba(122, 5, 249, 0.3);
}

.valor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--purple);
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 16px;
}

.valor-card h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.valor-card p {
    font-size: 13px !important;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0 !important;
}

/* ===== INVESTIMENTO BOX (Price reveal at the end) ===== */
.investimento-box {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 24px;
    padding: 40px 36px;
    margin-top: 8px;
    position: relative;
}

.investimento-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: var(--gradient-line);
    -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 8px, transparent 8px 16px);
    mask-image: repeating-linear-gradient(90deg, #000 0 8px, transparent 8px 16px);
}

.investimento-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.investimento-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.investimento-valor {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 400;
    line-height: 1;
    color: var(--white);
}

.investimento-detail {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== COTA BLOCKS (legacy, kept for visual block if needed) ===== */
.cota-block {
    display: flex;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
}

.cota-visual {
    flex: 0 0 44%;
    position: relative;
    overflow: hidden;
}

.cota-visual .img-placeholder {
    aspect-ratio: auto;
    height: 100%;
    min-height: 340px;
    border-radius: 0;
}

.cota-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cota-info {
    flex: 1;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cota-tag {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--lime);
    margin-bottom: 10px;
}

.cota-name {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 400;
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 10px;
}

.cota-size {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 16px !important;
}

.cota-price {
    display: block;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
}

.cota-desc {
    font-size: 15px !important;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 36px;
    background: rgba(14, 18, 48, 0.6);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.benefit-col h4 {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lime);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(122, 5, 249, 0.2);
}

.benefit-col li {
    font-size: 14px;
    color: var(--text-muted);
    padding: 7px 0 7px 16px;
    position: relative;
    line-height: 1.45;
}

.benefit-col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--purple);
}

.benefit-col li.hl {
    color: var(--white);
    font-weight: 600;
}

.benefit-col li.hl::before {
    background: var(--lime);
}

.access-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    padding: 10px 16px;
    background: rgba(122, 5, 249, 0.08);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

.pill strong {
    display: block;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 2px;
}

.pill-accent {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--dark);
}

.pill-accent strong { color: var(--dark); }

/* ===== EXPERIENCES ===== */
.exp-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.exp-card {
    display: flex;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.exp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(122, 5, 249, 0.15);
}

.exp-visual {
    flex: 0 0 38%;
}

.exp-visual .img-placeholder {
    aspect-ratio: auto;
    height: 100%;
    min-height: 220px;
    border-radius: 0;
}

.exp-body {
    flex: 1;
    padding: 36px 32px;
}

.exp-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.exp-avail {
    font-family: var(--font-heading);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.exp-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--lime);
}

.exp-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.exp-body p {
    font-size: 15px !important;
    color: var(--text-muted);
    margin-bottom: 0 !important;
    line-height: 1.55;
}

/* ===== NAMING ===== */
.naming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.naming-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    transition: transform 0.3s, box-shadow 0.3s;
}

.naming-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(122, 5, 249, 0.15);
}

.naming-card img {
    width: 140px;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
}

.naming-card .img-placeholder {
    width: 140px;
    aspect-ratio: auto;
    height: auto;
    border-radius: 0;
    flex-shrink: 0;
}

.naming-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.naming-body h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
    line-height: 1.3;
}

.naming-body p {
    font-size: 12px !important;
    color: var(--text-muted);
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
}

.naming-price {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.naming-detail {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 3px;
}

/* ===== SUMMARY ===== */
.summary-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.summary-col {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    padding: 32px 28px;
}

.summary-col-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lime);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(122, 5, 249, 0.2);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.summary-item:last-child { border-bottom: none; }

.summary-item-top {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.summary-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.summary-meta {
    font-size: 11px;
    color: var(--text-muted);
}

.summary-price {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    text-align: right;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--lime);
    border: 2px solid var(--lime);
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.btn-download:hover {
    background: var(--lime);
    color: var(--dark);
}

.btn-download:hover svg { stroke: var(--dark); }

/* ===== FORM ===== */
.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.form-header {
    margin-bottom: 48px;
}

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

.contact-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.contact-phone {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-muted);
}

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

.form-field {
    margin-bottom: 22px;
}

.form-field label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-field label small {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(122, 5, 249, 0.08);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #4A4570;
}

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

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.check-item:hover { border-color: var(--purple); }

.check-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--purple);
    cursor: pointer;
}

.check-item span {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}

.check-item:has(input:checked) {
    border-color: var(--purple);
    background: rgba(122, 5, 249, 0.12);
    box-shadow: 0 0 0 2px rgba(122, 5, 249, 0.1);
}

.check-item span {
    color: var(--text);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 44px;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    margin-top: 16px;
}

.btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.3);
}

/* ===== CLOSING ===== */
.sec-closing {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: var(--bg-body);
}

.sec-closing .container {
    position: relative;
    z-index: 2;
}

.closing-bg-img {
    display: none;
}

.sec-closing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg, #600FED, #DC00E7, #FF2B61, #FF614C, #FFC7AC, #600FED);
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
}

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

.closing-phrase {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 16px;
    margin-bottom: 40px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 44px 0;
    background-image: url('https://entursummit.com.br/wp-content/uploads/2026/03/bg-footer-s26.webp');
    background-size: cover;
    background-position: top center;
}

.footer-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo { height: 36px; }
.footer-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.3); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ===== ANIMATIONS ===== */
.scroll-anim {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* ---------- TABLET (max-width: 1024px) ---------- */
@media (max-width: 1024px) {
    /* Container & spacing */
    .container { padding: 0 24px; }
    .topbar-inner { padding: 12px 24px; }
    .sec-paper { padding: 60px 0; }

    /* Typography */
    .title-robuck { font-size: clamp(34px, 5vw, 56px); }
    .impact-quote p { font-size: clamp(30px, 4.5vw, 48px); }
    .subtitle { font-size: 17px; }
    .sec-paper p { font-size: 16px; }

    /* Hero */
    .hero { min-height: 100vh; min-height: 100svh; }
    .hero-content { padding: 0 24px 80px; }
    .hero-headline { font-size: clamp(48px, 8vw, 80px); }
    .hero-info { font-size: 14px; }

    /* Two-col */
    .two-col { gap: 32px; }

    /* Event data strip */
    .event-data-strip { flex-wrap: wrap; gap: 16px; padding: 28px 24px; }
    .event-data-item { flex: 1 1 40%; min-width: 180px; }
    .event-data-divider { display: none; }

    /* Stats */
    .stats-row { gap: 12px; }
    .stat-card { min-width: calc(50% - 8px); flex: 0 0 calc(50% - 8px); padding: 28px 20px; }
    .stat-number { font-size: 38px; }

    /* Timeline */
    .timeline { gap: 10px; }
    .tl-card { min-width: 150px; padding: 24px 20px; }

    /* Differentials */
    .diff-grid { grid-template-columns: 1fr; }
    .diff-card { padding: 28px 24px; }

    /* Rel grid */
    .rel-grid { grid-template-columns: repeat(2, 1fr); }

    /* Cota hero */
    .cota-hero { flex-direction: column; gap: 32px; }
    .cota-hero-img { flex: 0 0 auto; width: 100%; order: 1; }
    .cota-hero-text { order: 2; }

    /* Valor grid */
    .valor-grid { grid-template-columns: repeat(2, 1fr); }

    /* Benefits */
    .benefits-grid { grid-template-columns: 1fr; padding: 28px 24px; gap: 28px; }

    /* Investimento */
    .investimento-box { padding: 36px 28px; }
    .investimento-valor { font-size: clamp(40px, 6vw, 64px); word-break: break-word; }

    /* Experiences */
    .exp-visual { flex: 0 0 35%; }
    .exp-body { padding: 28px 24px; }
    .exp-body h3 { font-size: 18px; }

    /* Naming */
    .naming-grid { grid-template-columns: repeat(2, 1fr); }
    .naming-card img { width: 120px; }
    .naming-body { padding: 16px; }
    .naming-body h3 { font-size: 14px; }
    .naming-price { font-size: 18px; }

    /* Summary */
    .summary-columns { grid-template-columns: 1fr; }

    /* Form */
    .form-row { grid-template-columns: 1fr 1fr; }

    /* Galeria */
    .galeria-card { width: 170px; }
    .galeria-track { gap: 16px; }

    /* Closing */
    .sec-closing { padding: 64px 0; }
    .closing-phrase { font-size: 20px; }

    /* Footer */
    .footer-inner { padding: 0 24px; }
}

/* ---------- MOBILE (max-width: 768px) ---------- */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    html, body { overflow-x: hidden; }

    /* Topbar */
    .topbar-links { display: none !important; }
    .hamburger { display: flex; }
    .topbar-inner { padding: 10px 20px; }

    /* Mapa */
    /* mapa handled by .mapa-vertical */
    .mapa-fullscreen-inner { padding: 20px; }
    .mapa-fullscreen-inner img { max-width: 95vw; max-height: 80vh; }
    .mapa-close { top: -40px; }

    /* Container & spacing */
    .container { padding: 0 20px; }
    .sec-paper { padding: 56px 0; }
    .sec-impact { padding: 40px 0; }

    /* Typography — readable minimums */
    .title-robuck { font-size: 32px; line-height: 0.92; }
    .impact-quote p { font-size: 28px; line-height: 1.05; }
    .subtitle { font-size: 16px; max-width: 100%; }
    .sec-paper p { font-size: 15px; line-height: 1.65; }
    .label-saint { font-size: 12px; letter-spacing: 0.12em; }

    /* Hero — FULL VIEWPORT coverage */
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        padding-top: 60px;
    }
    .hero-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
    .hero-content { padding: 0 20px 72px; }
    .hero-headline { font-size: 44px; line-height: 0.9; margin-bottom: 20px; }
    .hero-info { font-size: 14px; letter-spacing: 0.04em; margin-bottom: 32px; }

    /* All buttons full width */
    .btn-cta { width: 100%; justify-content: center; padding: 16px 28px; font-size: 14px; }
    .btn-download { width: 100%; justify-content: center; padding: 14px 24px; font-size: 13px; }
    .btn-whatsapp { width: 100%; padding: 16px 24px; font-size: 14px; }

    /* Two-col: stack vertically */
    .two-col { flex-direction: column; gap: 32px; margin-bottom: 32px; }
    .col-img { order: -1; }

    /* FIX: Override rotated map image — remove inline rotate */
    .col-img img[style*="rotate"] {
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
    }
    .col-img img {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
    }

    /* Event data strip: vertical */
    .event-data-strip { flex-direction: column; gap: 16px; padding: 24px 20px; }
    .event-data-divider { width: 60%; height: 1px; align-self: center; }
    .event-data-item { flex: none; padding: 0; width: 100%; }
    .event-data-value { font-size: 15px; }
    .event-data-highlight { font-size: 17px; }

    /* Stats: 2 per row */
    .stats-row { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .stat-card { min-width: calc(50% - 8px); flex: 0 0 calc(50% - 8px); padding: 20px 14px; }
    .stat-number { font-size: 32px; }
    .stat-label { font-size: 11px; }

    /* Timeline: vertical stack on mobile */
    .timeline {
        flex-direction: column;
        flex-wrap: nowrap;
        overflow-x: visible;
        gap: 10px;
        margin: 24px 0;
        padding: 0;
        justify-content: center;
    }
    .tl-card {
        flex: none;
        min-width: 100%;
        max-width: 100%;
        padding: 20px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    .tl-card .tl-year { margin-bottom: 0; font-size: 13px; }
    .tl-card .tl-city { margin-bottom: 0; font-size: 15px; }
    .tl-card .tl-number { font-size: 30px; }
    .tl-active { transform: none; }

    /* Editorial images */
    .img-editorial { margin-top: 40px; }

    /* Differentials */
    .diff-grid { grid-template-columns: 1fr; gap: 12px; }
    .diff-card { padding: 24px 20px; gap: 16px; }
    .diff-index { width: 44px; height: 44px; font-size: 22px; border-radius: 12px; }
    .diff-content h3 { font-size: 15px; }
    .diff-content p { font-size: 14px !important; }

    /* Rel grid */
    .rel-grid { grid-template-columns: 1fr; gap: 12px; }
    .rel-card { padding: 28px 20px; }

    /* Galeria */
    .galeria-card { width: 140px; border-radius: 16px; }
    .galeria-track { gap: 12px; padding: 24px 0; }
    .sec-galeria { padding: 24px 0; }

    /* Cota hero: stack vertically, image first (column-reverse) */
    .cota-hero { flex-direction: column-reverse; gap: 24px; }
    .cota-hero-img { flex: 0 0 auto; width: 100%; }
    .cota-hero-text { }
    .cota-hero-img img { border-radius: var(--radius); }
    .cota-size-tag { font-size: 12px; white-space: normal; word-wrap: break-word; }

    /* Valor grid: 1 column */
    .valor-grid { grid-template-columns: 1fr; gap: 12px; }
    .valor-card { padding: 22px 20px; }
    .valor-icon { width: 36px; height: 36px; font-size: 16px; border-radius: 8px; margin-bottom: 12px; }
    .valor-card h4 { font-size: 14px; }
    .valor-card p { font-size: 13px !important; }
    .valor-title { font-size: 16px; }

    /* Benefits grid: 1 column */
    .benefits-grid { grid-template-columns: 1fr; padding: 24px 20px; gap: 24px; margin-bottom: 24px; }
    .benefit-col li { font-size: 14px; }

    /* Investimento — prices clearly visible */
    .investimento-box { padding: 32px 20px; }
    .investimento-valor {
        font-size: 56px !important;
        font-weight: 700;
        color: var(--white);
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .investimento-label { font-size: 13px; }
    .investimento-detail { font-size: 14px; text-align: center; }
    .investimento-box .btn-cta { width: 100%; justify-content: center; }

    /* Access pills */
    .access-pills { gap: 6px; }
    .pill { padding: 8px 12px; font-size: 12px; }
    .pill strong { font-size: 17px; }

    /* Experiences: stack vertically, image on top */
    .exp-card { flex-direction: column; }
    .exp-visual { flex: 0 0 auto; max-height: 220px; overflow: hidden; }
    .exp-visual img { min-height: 200px; max-height: 200px; object-fit: cover; }
    .exp-visual .img-placeholder { min-height: 180px; }
    .exp-body { padding: 24px 20px; }
    .exp-body h3 { font-size: 18px; }
    .exp-body p { font-size: 14px !important; }
    .exp-meta { flex-wrap: wrap; gap: 8px; }
    .exp-price {
        font-size: 16px !important;
        color: var(--lime) !important;
        -webkit-text-fill-color: var(--lime) !important;
        background: none !important;
    }

    /* Naming: 1 column, cards horizontal (image left, text right) */
    .naming-grid { grid-template-columns: 1fr; gap: 10px; }
    .naming-card { flex-direction: row; }
    .naming-card img { width: 100px; height: auto; min-height: 120px; }
    .naming-body { padding: 16px; }
    .naming-body h3 { font-size: 14px; }
    .naming-body p { font-size: 13px !important; line-height: 1.45 !important; }
    .naming-price { font-size: 18px; }
    .naming-detail { font-size: 11px; }

    /* Summary — 1 column, prices clearly visible */
    .summary-columns { grid-template-columns: 1fr; gap: 16px; }
    .summary-col { padding: 24px 20px; }
    .summary-name { font-size: 14px; }
    .summary-price { font-size: 15px; white-space: nowrap; word-break: break-word; }
    .summary-meta { font-size: 11px; }

    /* Form */
    .form-wrapper { max-width: 100%; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-field { margin-bottom: 18px; }
    .form-field input,
    .form-field textarea { padding: 12px 14px; font-size: 15px; }
    .pill-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .pill-label { padding: 8px 16px; font-size: 11px; white-space: normal; text-align: center; width: 100%; justify-content: center; }
    .check-grid { grid-template-columns: 1fr 1fr; }
    .form-contact { flex-direction: column; gap: 4px; align-items: flex-start; width: 100%; }
    .contact-divider { display: none; }

    /* Phone input */
    .phone-input-group { width: 100%; }
    .country-selector { min-width: 95px; padding: 0 10px; }
    .country-ddi { font-size: 13px; }
    .country-flag { font-size: 18px; }
    .country-dropdown { width: 100%; left: 0; right: 0; }

    /* Cota block (legacy) */
    .cota-block { flex-direction: column; }
    .cota-visual { flex: 0 0 auto; }
    .cota-visual .img-placeholder { min-height: 200px; }
    .cota-info { padding: 28px 20px; }

    /* Closing */
    .sec-closing { padding: 56px 0; }
    .closing-phrase { font-size: 18px; margin-bottom: 32px; }

    /* Footer */
    .footer { padding: 36px 0; }
    .footer-inner { flex-direction: column; gap: 16px; text-align: center; padding: 0 20px; }
    .footer-divider { width: 48px; height: 1px; }
    .footer-logo { height: 28px; }
    .footer-copy { font-size: 12px; }

    /* Gradient dash lines */
    .gradient-dash-line { margin: 24px 0; }
    .gradient-dash-line-full { margin-bottom: 24px; }
}

/* ---------- SMALL MOBILE (max-width: 480px) ---------- */
@media (max-width: 480px) {
    /* Hero — still full viewport, slightly smaller text */
    .hero { min-height: 100vh; min-height: 100svh; }
    .hero-headline { font-size: 40px; }
    .hero-info { font-size: 13px; }
    .hero-content { padding: 0 20px 60px; }

    /* Titles */
    .title-robuck { font-size: 28px; }
    .impact-quote p { font-size: 28px; }

    /* Stats: 2 per row, tighter */
    .stat-card { padding: 16px 10px; }
    .stat-number { font-size: 32px; }
    .stat-label { font-size: 10px; }

    /* Timeline cards */
    .tl-card { min-width: 100%; max-width: 100%; padding: 16px 16px; }
    .tl-number { font-size: 26px; }

    /* Diff cards: stack number on top */
    .diff-card { flex-direction: column; gap: 12px; padding: 20px 16px; }
    .diff-index { width: 40px; height: 40px; font-size: 20px; }

    /* Valor */
    .valor-grid { gap: 10px; }
    .valor-card { padding: 18px 16px; }

    /* Investimento: ensure visible, never cut off */
    .investimento-valor { font-size: 48px !important; font-weight: 700; color: var(--white); }

    /* Naming: smaller image */
    .naming-card img { width: 80px; min-height: 100px; }
    .naming-body { padding: 12px; }
    .naming-body h3 { font-size: 13px; }
    .naming-body p { font-size: 12px !important; line-height: 1.4 !important; }
    .naming-price { font-size: 16px; }

    /* Summary */
    .summary-col { padding: 20px 16px; }

    /* Pill grid: 2 columns */
    .pill-grid { display: grid; grid-template-columns: 1fr 1fr; }
    .pill-label { width: 100%; justify-content: center; padding: 8px 10px; font-size: 10px; }

    /* Closing */
    .closing-phrase { font-size: 16px; }

    /* Exp body */
    .exp-body { padding: 20px 16px; }
    .exp-body h3 { font-size: 16px; }

    /* Cota size tag */
    .cota-size-tag { font-size: 11px; }

    /* Benefits */
    .benefits-grid { padding: 20px 16px; }
    .benefit-col li { font-size: 13px; padding: 6px 0 6px 14px; }

    /* Access pills */
    .access-pills { gap: 5px; }
    .pill { padding: 6px 10px; font-size: 11px; }
    .pill strong { font-size: 15px; }
}

/* ===== PRINT ===== */
@media print {
    .topbar, .mobile-nav, .btn-cta, .btn-whatsapp, .btn-download,
    .btn-cta-nav, .hamburger, #contato, .sec-closing { display: none !important; }
    .sec-paper { padding: 40px 0; }
    .hero { min-height: auto; padding: 40px 24px; }
    .hero-bg-img { position: static; }
    .scroll-anim { opacity: 1 !important; transform: none !important; }
    /* mapa handled by .mapa-vertical */
    .mapa-fullscreen { display: none !important; }
    body { background: white; color: #111; }
    .two-col { flex-direction: column; }
    .cota-hero { flex-direction: column; }
    .exp-card { flex-direction: column; }
    .naming-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: 1fr; }
    .summary-columns { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr; }
    .galeria-track { animation: none; }
}

/* ===== PREMIUM FORM REDESIGN ===== */

/* Contact divider */
.contact-divider {
    color: rgba(122, 5, 249, 0.4);
    font-size: 14px;
}

/* Required asterisk */
.field-required {
    color: var(--coral);
    font-weight: 400;
}

/* Error messages */
.field-error {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: #FF4D6A;
    min-height: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.25s ease;
    padding-left: 2px;
}

.field-error.active {
    min-height: 18px;
    max-height: 24px;
    opacity: 1;
    margin-top: 6px;
}

/* Field error state */
.form-field.has-error input,
.form-field.has-error textarea {
    border-color: #FF4D6A !important;
    box-shadow: 0 0 0 3px rgba(255, 77, 106, 0.1) !important;
}

/* ===== HIDE ON MOBILE ===== */
@media (max-width: 768px) {
    .hide-mobile { display: none !important; }

    /* Reduce spacing between trajectory and About ENTUR sections */
    .img-editorial { margin-bottom: -20px; }
    .sec-paper + .sec-paper { padding-top: 32px; }
}

/* ===== PAGE BREAK FOR PDF ===== */
.page-break {
    page-break-before: always;
    break-before: page;
}

/* ===== PDF MODE ===== */
.pdf-mode {
    background: #FFFFFF !important;
}

.pdf-mode * {
    color: #1F005C !important;
    -webkit-text-fill-color: #1F005C !important;
}

.pdf-mode .topbar,
.pdf-mode .hamburger,
.pdf-mode .mobile-nav,
.pdf-mode .btn-cta,
.pdf-mode .btn-whatsapp,
.pdf-mode .btn-cta-nav,
.pdf-mode .mapa-btn,
.pdf-mode .mapa-fullscreen {
    display: none !important;
}

.pdf-mode .scroll-anim {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.pdf-mode .galeria-track {
    animation: none !important;
}

.pdf-mode .sec-paper,
.pdf-mode .sec-impact,
.pdf-mode .sec-closing,
.pdf-mode .hero {
    background: #FFFFFF !important;
}

.pdf-mode .hero-overlay {
    background: linear-gradient(to top, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0.1) 100%) !important;
}

.pdf-mode .hero-headline,
.pdf-mode .title-robuck,
.pdf-mode .impact-quote p,
.pdf-mode .closing-phrase,
.pdf-mode .stat-number,
.pdf-mode .tl-number,
.pdf-mode .diff-content h3,
.pdf-mode .exp-body h3,
.pdf-mode .naming-body h3,
.pdf-mode .cota-name,
.pdf-mode .summary-name,
.pdf-mode .investimento-valor {
    color: #1F005C !important;
    -webkit-text-fill-color: #1F005C !important;
}

.pdf-mode .faixa-amarela {
    color: #7A05F9 !important;
    -webkit-text-fill-color: #7A05F9 !important;
}

.pdf-mode .label-saint,
.pdf-mode .tl-year,
.pdf-mode .stat-label,
.pdf-mode .valor-title,
.pdf-mode .benefit-col h4,
.pdf-mode .summary-col-title,
.pdf-mode .lime {
    color: #7A05F9 !important;
    -webkit-text-fill-color: #7A05F9 !important;
}

.pdf-mode .sec-paper p,
.pdf-mode .subtitle,
.pdf-mode .hero-info,
.pdf-mode .diff-content p,
.pdf-mode .exp-body p,
.pdf-mode .naming-body p,
.pdf-mode .investimento-detail,
.pdf-mode .investimento-label,
.pdf-mode .summary-meta,
.pdf-mode .stat-label,
.pdf-mode .valor-card p,
.pdf-mode .benefit-col li,
.pdf-mode .rel-card li,
.pdf-mode .event-data-label,
.pdf-mode .exp-avail,
.pdf-mode .naming-detail,
.pdf-mode .cota-size,
.pdf-mode .cota-desc,
.pdf-mode .closing-phrase,
.pdf-mode .footer-copy,
.pdf-mode .contact-phone {
    color: #555 !important;
    -webkit-text-fill-color: #555 !important;
}

.pdf-mode .exp-price,
.pdf-mode .naming-price,
.pdf-mode .summary-price,
.pdf-mode .investimento-valor,
.pdf-mode .cota-price {
    color: #1F005C !important;
    -webkit-text-fill-color: #1F005C !important;
    background: none !important;
}

.pdf-mode .bg-card,
.pdf-mode .stat-card,
.pdf-mode .diff-card,
.pdf-mode .exp-card,
.pdf-mode .naming-card,
.pdf-mode .summary-col,
.pdf-mode .tl-card,
.pdf-mode .valor-card,
.pdf-mode .benefits-grid,
.pdf-mode .event-data-strip {
    background: #F8F6FC !important;
    border-color: #E0D8EF !important;
}

.pdf-mode .tl-active {
    background: #7A05F9 !important;
    border-color: #7A05F9 !important;
}

.pdf-mode .tl-active .tl-year,
.pdf-mode .tl-active .tl-city,
.pdf-mode .tl-active .tl-number {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
}

.pdf-mode .btn-download {
    display: inline-flex !important;
    border-color: #7A05F9 !important;
    color: #7A05F9 !important;
    -webkit-text-fill-color: #7A05F9 !important;
    background: transparent !important;
}

.pdf-mode .footer {
    background: #F8F6FC !important;
    background-image: none !important;
}

.pdf-mode .gradient-dash-line,
.pdf-mode .gradient-dash-line-full {
    background: linear-gradient(90deg, #7A05F9, #DC00E7, #FF2B61) !important;
}

.pdf-mode .sec-closing::before {
    display: none !important;
}

.pdf-mode .hero-bg-img {
    opacity: 0.3;
}

.pdf-mode .two-col {
    flex-direction: column;
}

.pdf-mode .cota-hero {
    flex-direction: column;
}

.pdf-mode .exp-card {
    flex-direction: column;
}

/* Enhanced input focus */
.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--purple) !important;
    box-shadow: 0 0 0 3px rgba(122, 5, 249, 0.15), 0 0 20px rgba(122, 5, 249, 0.06) !important;
}

/* Phone input group */
.phone-input-group {
    display: flex;
    position: relative;
}

.phone-input-group input {
    flex: 1;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-left: none !important;
}

/* Country selector button */
.country-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--white);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.3s, background 0.3s;
    white-space: nowrap;
    min-width: 110px;
}

.country-selector:hover {
    background: rgba(122, 5, 249, 0.06);
    border-color: var(--purple);
}

.country-flag {
    font-size: 20px;
    line-height: 1;
}

.country-ddi {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.country-chevron {
    color: var(--text-muted);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.country-selector.open .country-chevron {
    transform: rotate(180deg);
}

/* Country dropdown */
.country-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 280px;
    background: #141838;
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-sm);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(122, 5, 249, 0.08);
    z-index: 100;
    max-height: 320px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
}

.country-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.country-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    transition: background 0.15s;
}

.country-option:hover {
    background: rgba(122, 5, 249, 0.1);
}

.country-option.selected {
    background: rgba(122, 5, 249, 0.15);
    color: var(--white);
}

.country-ddi-label {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 13px;
}

/* Scrollbar for dropdown */
.country-dropdown::-webkit-scrollbar {
    width: 4px;
}
.country-dropdown::-webkit-scrollbar-track {
    background: transparent;
}
.country-dropdown::-webkit-scrollbar-thumb {
    background: rgba(122, 5, 249, 0.3);
    border-radius: 4px;
}

/* Pill-style checkboxes */
.pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-item {
    position: relative;
    cursor: pointer;
}

.pill-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.pill-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.25s ease;
    user-select: none;
    white-space: nowrap;
}

.pill-label:hover {
    border-color: rgba(122, 5, 249, 0.4);
    color: var(--text);
    background: rgba(122, 5, 249, 0.04);
}

.pill-item input:checked + .pill-label {
    background: rgba(122, 5, 249, 0.15);
    border-color: var(--purple);
    color: var(--white);
    box-shadow: 0 0 16px rgba(122, 5, 249, 0.15);
}

.pill-item input:checked + .pill-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--lime);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Enhanced WhatsApp button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 44px;
    background: linear-gradient(135deg, #25D366 0%, #128C47 100%);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin-top: 28px;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.35), 0 0 0 1px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover::before {
    opacity: 1;
}

.btn-whatsapp:active {
    transform: translateY(-1px);
}

.btn-whatsapp:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Form contact row refinement */
.form-contact {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
    padding: 14px 20px;
    background: rgba(122, 5, 249, 0.06);
    border: 1px solid rgba(122, 5, 249, 0.12);
    border-radius: var(--radius-sm);
    width: fit-content;
}

/* ===== CART BUTTON ===== */
.cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1.5px solid rgba(155, 143, 181, 0.35);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 16px;
    white-space: nowrap;
}

.cart-btn:hover {
    border-color: var(--lime);
    color: var(--lime);
    background: rgba(213, 238, 72, 0.06);
}

.cart-btn .cart-btn-check {
    display: none;
}

.cart-btn .cart-btn-plus {
    display: block;
}

.cart-btn.selected {
    background: var(--lime);
    color: var(--dark);
    border-color: var(--lime);
}

.cart-btn.selected:hover {
    background: var(--lime-dark);
    border-color: var(--lime-dark);
    color: var(--dark);
}

.cart-btn.selected .cart-btn-check {
    display: block;
}

.cart-btn.selected .cart-btn-plus {
    display: none;
}

.cart-btn-icon {
    flex-shrink: 0;
}

/* Cart btn inside investimento-box */
.investimento-box .cart-btn {
    margin-top: 0;
}

/* Cart btn inside exp-body */
.exp-body .cart-btn {
    margin-top: 20px;
}

/* Cart btn inside naming-body */
.naming-body .cart-btn {
    margin-top: 12px;
    padding: 8px 18px;
    font-size: 11px;
}

/* ===== FLOATING CART ===== */
.floating-cart {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--bg-card);
    border: 1px solid rgba(122, 5, 249, 0.2);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.6) translateY(20px);
    pointer-events: none;
}

.floating-cart.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.floating-cart:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(122, 5, 249, 0.4);
}

.floating-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lime);
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    padding: 0 6px;
    line-height: 1;
}

@keyframes cartPulse {
    0% { transform: scale(1) translateY(0); }
    30% { transform: scale(1.15) translateY(-4px); }
    60% { transform: scale(0.95) translateY(0); }
    100% { transform: scale(1) translateY(0); }
}

.floating-cart.pulse {
    animation: cartPulse 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== CART RESPONSIVE ===== */
@media (max-width: 768px) {
    .floating-cart {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .floating-cart svg {
        width: 18px;
        height: 18px;
    }

    .floating-cart-count {
        min-width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .cart-btn {
        padding: 8px 18px;
        font-size: 11px;
    }

    .naming-body .cart-btn {
        padding: 7px 14px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .floating-cart {
        bottom: 16px;
        right: 16px;
    }
}

/* Hide cart elements in print */
@media print {
    .floating-cart, .cart-btn { display: none !important; }
}

/* Hide cart elements in PDF mode */
.pdf-mode .floating-cart,
.pdf-mode .cart-btn { display: none !important; }


