/* 
   Imperial Industrial - Compact & Tight Layout
*/

:root {
    --color-bg: #050505;
    --color-gold: #D4AF37;
    --color-gold-bright: #F9E29C;
    --color-white: #FFFFFF;
    --color-text-muted: rgba(255, 255, 255, 0.7);
    --color-text-dim: rgba(255, 255, 255, 0.5);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --btn-padding: 1.2rem 2.8rem;
    --radius-lg: 16px;
    --radius-md: 8px;
    --transition-smooth: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-white);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.2rem;
    }
}

/* Problem Section - The Fog of Confusion */
.problem-section {
    padding: 120px 0;
    position: relative;
    background-color: #050505;
    overflow: hidden;
}

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

.problem-img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.2);
    opacity: 0.4;
}

.problem-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, #050505 90%);
}

.problem-header {
    position: relative;
    z-index: 5;
    text-align: center;
    margin-bottom: 5rem;
}

.problem-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.danger-text {
    color: #ff4d4d;
    text-shadow: 0 0 30px rgba(255, 77, 77, 0.3);
}

.problem-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Bento Grid */
.problem-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 1.5rem;
    position: relative;
    z-index: 5;
}

@media (max-width: 992px) {
    .problem-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }
}

@media (max-width: 600px) {
    .problem-bento {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .card-large, .card-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    .bento-card {
        min-height: 150px;
    }
}

.bento-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.bento-card:hover {
    background: rgba(255, 77, 77, 0.05);
    border-color: rgba(255, 77, 77, 0.3);
    transform: translateY(-10px);
}

.card-num {
    font-size: 0.7rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: auto;
}

.bento-card p {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.3;
}

.card-large { grid-column: span 2; grid-row: span 2; }
.card-wide { grid-column: span 2; }

/* Bento specific items */
.card-large p { font-size: 1.8rem; font-weight: 800; }

.problem-footer {
    position: relative;
    z-index: 5;
    text-align: center;
    margin-top: 5rem;
}

.problem-footer p {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 600;
    color: var(--color-text-muted);
}

.highlight-alt {
    color: var(--color-white);
    background: linear-gradient(90deg, transparent 0%, rgba(255, 77, 77, 0.2) 50%, transparent 100%);
    padding: 5px 15px;
}

/* Method Section - Imperial Red Journey */
.method-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a0202 0%, #4a0404 50%, #1a0202 100%);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.method-header {
    text-align: center;
    margin-bottom: 6rem;
}

.method-tag {
    display: inline-block;
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.method-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.method-intro {
    font-size: 1.2rem;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.method-desc {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Step Modules */
.method-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-module {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.step-module:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--color-gold);
    transform: translateX(10px);
}

.step-info {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.2);
    transition: color 0.4s ease;
}

.step-module:hover .step-number {
    color: var(--color-gold);
}

.step-text h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
}

.step-text p {
    color: var(--color-white);
    font-size: 1.05rem;
}

/* Finale */
.method-finale {
    margin-top: 8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.finale-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.finale-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.finale-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.success-img {
    width: 100%;
    display: block;
}

.success-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2), transparent);
}

/* Responsive */
@media (max-width: 768px) {
    .step-info { flex-direction: column; text-align: center; gap: 1rem; }
    .method-finale { grid-template-columns: 1fr; text-align: center; }
}

/* Curriculum Section - Dashboard Layout */
.curriculum-section {
    padding: 100px 0;
    background: #050505;
    position: relative;
}

.curriculum-header {
    text-align: center;
    margin-bottom: 5rem;
}

.curriculum-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.curriculum-visual-top {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.6;
    filter: grayscale(1) brightness(1.2);
}

.blueprint-img {
    width: 100%;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.module-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.module-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.module-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.mod-num {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--color-gold);
    text-transform: uppercase;
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.module-head h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
}

.lesson-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.lesson-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.lesson-list li span:first-child::before {
    content: "•";
    color: var(--color-gold);
    margin-right: 8px;
}

.status-tag {
    font-size: 0.6rem;
    text-transform: uppercase;
    background: rgba(0, 255, 0, 0.05);
    color: #4ade80;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1100px) {
    .curriculum-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .curriculum-grid { grid-template-columns: 1fr; }
}

/* Differentials Section - Typography & Border Effects */
.differentials-section {
    padding: 120px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.diff-header {
    text-align: center;
    margin-bottom: 5rem;
}

.diff-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}

.gold-text {
    color: var(--color-gold);
}

.diff-subtitle {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

.highlight-line {
    color: var(--color-white);
    position: relative;
    padding: 0 10px;
}

.highlight-line::after {
    content: "";
    position: absolute;
    bottom: -5px; left: 0;
    width: 100%; height: 2px;
    background: var(--color-gold);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .diff-grid {
        grid-template-columns: 1fr;
    }
}

.diff-card {
    position: relative;
    background: #0a0a0a;
    border-radius: 20px;
    padding: 3rem 2rem;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.diff-card::before {
    content: "";
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent 0%, var(--color-gold) 20%, transparent 40%);
    animation: rotate-border 6s linear infinite;
    opacity: 0.1;
}

@keyframes rotate-border {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.diff-card:hover {
    transform: translateY(-10px);
}

.diff-card:hover::before {
    opacity: 0.4;
}

.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.card-glow {
    position: absolute;
    top: 50%; left: 50%; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.diff-card:hover .card-glow {
    opacity: 1;
}

/* How it Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: #0f0f0f;
}

.how-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .how-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .monitor-mockup {
        max-width: 500px;
        margin: 0 auto;
    }
}

.monitor-mockup {
    position: relative;
    background: #222;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.monitor-screen {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lesson-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.monitor-mockup:hover .lesson-img {
    transform: scale(1.05);
    opacity: 1;
}

.play-button-overlay {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    box-shadow: 0 0 30px var(--color-gold-shadow);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-button-overlay svg {
    width: 30px;
    margin-left: 5px;
}

.monitor-mockup:hover .play-button-overlay {
    transform: scale(1.1);
}

.monitor-stand {
    width: 150px;
    height: 10px;
    background: #333;
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
    position: relative;
}

.monitor-stand::after {
    content: "";
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 15px;
    background: #222;
}

.how-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.how-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.how-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--color-gold);
    transform: translateX(10px);
}

.how-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.how-icon svg {
    width: 24px;
}

.how-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.how-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Instructor Section */
.instructor-section {
    padding: 120px 0;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.instructor-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 992px) {
    .instructor-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .photo-container {
        max-width: 400px;
        margin: 0 auto;
    }
    .bio-quote {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid var(--color-gold);
        padding-top: 2rem;
    }
}

.photo-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
}

.bruno-img {
    width: 100%;
    display: block;
    filter: contrast(1.1) brightness(1.05);
    transition: transform 0.6s ease;
}

.photo-container:hover .bruno-img {
    transform: scale(1.05);
}

.photo-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 150%; height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.experience-badge {
    position: absolute;
    bottom: 30px; right: 30px;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 2;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.instructor-bio p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.bio-intro {
    font-size: 1.4rem !important;
    font-weight: 700;
    color: var(--color-white) !important;
    line-height: 1.4 !important;
}

.highlight-pill {
    background: rgba(255,255,255,0.05);
    padding: 4px 12px;
    border-radius: 50px;
    color: var(--color-white);
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
}

.bio-quote {
    margin-top: 3rem;
    padding-left: 2rem;
    border-left: 3px solid var(--color-gold);
    position: relative;
}

.bio-quote p {
    font-style: italic;
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.signature {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--color-gold);
    display: block;
}

/* Vertical Offer Card - ELITE UPGRADE */
.offer-section {
    padding: 120px 0;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.offer-vertical-card {
    max-width: 580px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(30px);
    border-radius: 40px;
    padding: 5rem 3.5rem;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    overflow: hidden; /* For border beam */
}

/* Border Beam Effect */
.offer-vertical-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px; /* Border thickness */
    border-radius: 40px;
    background: conic-gradient(
        from var(--border-angle),
        transparent 20%,
        var(--color-gold) 40%,
        var(--color-gold) 60%,
        transparent 80%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotate-border 4s linear infinite;
    pointer-events: none;
}

@property --border-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotate-border {
    to { --border-angle: 360deg; }
}

.card-header {
    text-align: center;
    margin-bottom: 4rem;
}

.offer-tag {
    background: var(--color-gold);
    color: var(--color-black);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.offer-title {
    margin-top: 2rem;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #fff;
}

.offer-group {
    margin-bottom: 3.5rem;
}

.group-title {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.group-title::after {
    content: '';
    height: 1px;
    background: rgba(255,255,255,0.1);
    flex: 1;
}

.feature-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-checklist li {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.feature-checklist li svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 4px;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.card-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 4rem;
    text-align: center;
    position: relative;
}

.price-box {
    margin-bottom: 3rem;
}

.price-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
}

.price-installments {
    font-size: 1.8rem;
    font-weight: 600;
    display: block;
    margin: 1rem 0;
    color: #fff;
}

.big-price {
    font-size: 5rem;
    font-weight: 900;
    color: var(--color-gold);
    letter-spacing: -0.03em;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.price-cash {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
}

.cta-button {
    width: 100%;
    padding: 1.8rem;
    background: var(--color-gold);
    color: var(--color-black);
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    border-radius: 20px; /* More modern than 50px */
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
}

.security-info {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.sec-item {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
}

.sec-item svg {
    width: 18px;
    color: var(--color-gold);
}

.warranty-seal {
    position: absolute;
    top: -50px;
    right: -40px;
    width: 130px;
    height: 130px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    transform: rotate(12deg);
    border: 6px double rgba(0,0,0,0.2);
    z-index: 10;
    background: linear-gradient(135deg, #d4af37 0%, #f1d37e 50%, #d4af37 100%);
}

.seal-inner {
    text-align: center;
    transform: scale(1.1);
}

.seal-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 0.8;
}

.seal-text {
    font-size: 0.65rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    display: block;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .offer-vertical-card {
        padding: 4rem 2rem;
        margin: 0 20px;
    }
    .warranty-seal {
        width: 100px;
        height: 100px;
        top: -40px;
        right: 0;
    }
    .big-price { font-size: 3.5rem; }
    .security-info { flex-direction: column; gap: 1rem; align-items: center; }
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: #000;
}

.faq-header {
    text-align: center;
    margin-bottom: 5rem;
}

.faq-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-top: 1rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.03);
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-question svg {
    width: 24px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--color-gold);
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 2rem;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 150px 0;
    background: #000;
    text-align: center;
    position: relative;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.final-cta-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.final-cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.final-btn {
    max-width: 400px;
}

/* Main Footer */
.main-footer {
    padding: 100px 0 60px;
    background: #000;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    height: 120px; /* Dobrado para dar visibilidade real */
    width: auto;
    margin-bottom: 3rem;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    width: 100%;
    max-width: 900px;
    margin-bottom: 3rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left; /* Alinhamento à esquerda para as colunas */
}

.footer-col h4 {
    color: var(--color-gold);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links li, .footer-addr {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-info {
    max-width: 700px;
}

.company-name {
    font-weight: 800;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.cnpj-text {
    font-size: 0.8rem;
    color: var(--color-gold);
    opacity: 0.8;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.disclaimer {
    font-size: 0.7rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

/* Social Floats */
.social-floats {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.social-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: social-pulse 2s infinite;
}

.social-float svg {
    width: 30px;
    height: 30px;
}

.instagram-float {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.whatsapp-float {
    background-color: #25d366;
}

.social-float:hover {
    transform: scale(1.15);
    filter: brightness(1.1);
}

@keyframes social-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (max-width: 768px) {
    .social-floats {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .social-float {
        width: 50px;
        height: 50px;
    }
    .social-float svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 768px) {
    .final-cta-section { padding: 100px 0; }
    .final-cta-title { font-size: 2.2rem; }
}

/* Background Texture */
.noise-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Fullscreen Video Background */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.85) 100%);
}

/* Navbar - Compact */
.navbar {
    padding-top: 2.5rem; /* Reduced from 6rem */
    padding-bottom: 1.5rem;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    position: relative;
}

.logo-hero {
    max-width: 600px; /* Gigante como pedido! */
    height: auto;
}

/* Hero Section - Shifted Up */
.hero {
    min-height: auto;
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    padding-top: 1rem; /* Reduced from 4rem */
    padding-bottom: 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem; /* Tighter gap */
    align-items: flex-start;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem; /* More compact spacing */
}

.headline {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.highlight {
    color: var(--color-gold);
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheadline {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: var(--color-white);
    max-width: 540px;
    font-weight: 500;
    opacity: 0.95;
}

.textinho {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    max-width: 540px;
    border-left: 2px solid var(--color-gold);
    padding-left: 1.5rem;
    line-height: 1.6;
}

.textinho strong {
    color: var(--color-gold);
}

/* CTA Visibility */
.desktop-only { display: block; margin-top: 0.5rem; }
.mobile-only { display: none; }

/* CTA Button Styling */
.btn-primary {
    display: inline-block;
    background: var(--color-gold);
    color: #000;
    text-decoration: none;
    padding: var(--btn-padding);
    border-radius: var(--radius-md);
    font-weight: 900;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: var(--color-gold-bright);
}

/* Visual / YouTube Column */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* YouTube Window */
.youtube-window {
    background: #111;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.video-header {
    background: #1a1a1a;
    padding: 0.7rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dots { display: flex; gap: 6px; }
.dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); }
.video-title { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--color-text-dim); font-weight: 600; }

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

.video-caption {
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

/* Expedition Section - High Craft Redesign */
.expedition {
    padding: 120px 0;
    position: relative;
    background-color: #030303;
    overflow: hidden;
}

.editorial-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.9;
    font-weight: 900;
    margin-bottom: 4rem;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.outline-text {
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.4);
    color: transparent;
}

.expedition-immersive-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
    align-items: start;
    position: relative;
    z-index: 5;
}

/* Visual Anchor with Design Spells */
.visual-anchor {
    position: relative;
    will-change: transform;
}

.treasure-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,1);
    transform: rotate(-2deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.treasure-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.main-treasure {
    width: 100%;
    display: block;
    filter: sepia(0.2) contrast(1.1);
}

.card-label {
    position: absolute;
    bottom: 20px;
    right: -30px;
    background: var(--color-gold);
    color: #000;
    padding: 5px 40px;
    font-weight: 900;
    font-size: 0.7rem;
    transform: rotate(-45deg);
    letter-spacing: 0.1em;
}

.compass-deco {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    animation: rotateCompass 20s linear infinite;
    opacity: 0.6;
}

@keyframes rotateCompass { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Journey Path */
.path-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.path-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    text-transform: uppercase;
}

.journey-path {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-left: 3rem;
}

.path-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-gold) 0%, transparent 100%);
    opacity: 0.3;
}

.ship-icon {
    position: absolute;
    left: 50%;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--color-gold);
    color: #000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) rotate(90deg);
    box-shadow: 0 0 20px var(--color-gold);
    z-index: 10;
    transition: transform 0.3s ease;
}

.ship-icon svg {
    width: 20px;
    height: 20px;
}

.journey-step {
    display: flex;
    align-items: center;
    position: relative;
}

.step-point {
    position: absolute;
    left: -3rem;
    width: 10px;
    height: 10px;
    background: var(--color-gold);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--color-gold);
}

.pulse {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(3); opacity: 0; } }

.step-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.4s ease;
    width: 100%;
}

.step-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(15px);
}

.step-card h4 {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.step-card p {
    color: var(--color-white);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Parallax Map */
.parallax-map {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 80%;
    height: 120%;
    z-index: 1;
    pointer-events: none;
    transform: rotate(15deg);
}

/* Gold Dust Particles */
.dust-container {
    position: absolute;
    width: 100%; height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--color-gold);
    border-radius: 50%;
    filter: blur(1px);
    animation: floatParticle 8s infinite linear;
    opacity: 0;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 80%; top: 40%; animation-delay: 2s; }
.particle:nth-child(3) { left: 40%; top: 80%; animation-delay: 4s; }
.particle:nth-child(4) { left: 70%; top: 10%; animation-delay: 6s; }
.particle:nth-child(5) { left: 20%; top: 90%; animation-delay: 1s; }

@keyframes floatParticle {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: translateY(-100px) translateX(20px); opacity: 0; }
}

/* Responsive */
@media (max-width: 992px) {
    .expedition-immersive-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .visual-anchor {
        position: relative;
        top: 0;
    }
    .editorial-title {
        text-align: center;
        font-size: 3rem;
    }
}


/* Responsive */
@media (max-width: 1024px) {
    .desktop-only { display: none; }
    .mobile-only { display: block; width: 100%; margin-top: 1rem; }
    .navbar { padding-top: 2rem; }
    .logo-hero { max-width: 180px; }
    .hero { padding-top: 1rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-content { align-items: center; }
    .textinho { text-align: left; margin: 0 auto; }
}
