:root {
    --bg-dark: #080808;
    --bg-card: #111111;
    --gold-primary: #C9A84C;
    --gold-light: #F0C060;
    --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #F0C060 100%);
    --gold-rgba-15: rgba(201, 168, 76, 0.15);
    --gold-rgba-30: rgba(201, 168, 76, 0.3);
    --text-white: #FFFFFF;
    --text-muted: #999999;
    --color-green: #22C55E;
    --color-red: #EF4444;
    
    --border-radius-btn: 8px;
    --border-radius-card: 12px;
    --border-radius-section: 20px;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-top: 40px; /* Space for the top fixed banner */
}

/* ------------------------
   TOP BANNER
------------------------ */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #b8860b, #ffd700, #b8860b);
    color: #000;
    padding: 12px 15px;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.top-banner span.cd-colon {
    background: transparent;
    color: #000;
    padding: 0;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.countdown-blocks {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cd-number {
    background: #000;
    color: #ffd700;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 1.4rem;
    font-weight: 800;
    min-width: 45px;
    text-align: center;
    line-height: 1.2;
}

.cd-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: #000;
    margin-top: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .top-banner {
        flex-direction: row;
        padding: 6px 10px;
        gap: 8px;
    }
    .top-banner .banner-text {
        font-size: 0.75rem;
    }
    .countdown-blocks {
        gap: 4px;
    }
    .cd-number {
        font-size: 1rem;
        padding: 2px 5px;
        min-width: 30px;
        border-radius: 4px;
    }
    .cd-label {
        font-size: 0.45rem;
        margin-top: 1px;
    }
    .top-banner span.cd-colon {
        font-size: 1rem;
        margin-bottom: 8px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/* Typography & Utilities */
.text-center { text-align: center; }
.left-align { text-align: left; }
.mt-40 { margin-top: 40px; }

.tag {
    display: inline-block;
    background: var(--gold-rgba-15);
    border: 1px solid var(--gold-rgba-30);
    color: var(--gold-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.left-align {
    text-align: left;
}

.section-header.left-align .section-subtitle {
    margin-left: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* Buttons */
.cta-button {
    background: var(--gold-gradient);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    padding: 18px 32px;
    border: none;
    border-radius: var(--border-radius-btn);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.large-cta {
    font-size: 1.125rem;
    padding: 22px 40px;
}

@media (max-width: 768px) {
    .large-cta {
        font-size: 1rem;
        padding: 18px 25px;
    }
}

.center-btn {
    text-align: center;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    z-index: 998;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Sticky CTA Mobile */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    padding: 15px 20px;
    border-top: 1px solid #222;
    z-index: 997;
}

.sticky-cta-mobile .cta-button {
    width: 100%;
    text-align: center;
    padding: 15px;
}

@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: block;
    }
    .whatsapp-float {
        bottom: 90px;
        right: 20px;
    }
    body {
        padding-bottom: 70px;
    }
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--gold-rgba-30);
    border-radius: var(--border-radius-section);
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
    }
    .modal-title {
        font-size: 1.3rem;
    }
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-white);
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.form-group input.error,
.form-group select.error {
    border-color: var(--color-red);
}

.form-group select option {
    background: #1a1a1a;
    color: var(--text-white);
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
}

.privacy-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 15px;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(201,168,76,0.1) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo-img {
    height: auto;
    max-height: 80px;
    width: auto;
    max-width: 250px;
    margin-bottom: 30px;
    mix-blend-mode: screen; /* Removes solid black background automatically */
}

.logo-dot {
    color: var(--gold-primary);
}

.eyebrow {
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.headline {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.meta-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.meta-icon {
    width: 20px;
    height: 20px;
    color: var(--gold-primary);
}

.progress-container {
    background: rgba(255,255,255,0.03);
    border: 1px solid #222;
    padding: 15px 20px;
    border-radius: var(--border-radius-card);
    margin-bottom: 40px;
    max-width: 400px;
}

.progress-text {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.progress-bar-bg {
    background: #222;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(201,168,76,0.5);
    animation: fillProgress 1.5s ease-out forwards;
}

@keyframes fillProgress {
    from { width: 0; }
}

.hero-image-area {
    background: url('hero.jpg') center 10%/cover no-repeat;
    border-radius: var(--border-radius-section);
    height: 600px;
    position: relative;
    border: 1px solid var(--gold-rgba-30);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.hero-image-area::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, transparent 50%, rgba(0,0,0,0.4) 100%);
    border-radius: var(--border-radius-section);
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    .headline { font-size: 2.5rem; }
    .hero-image-area {
        height: 400px;
        order: -1;
        margin-bottom: 30px;
    }
    .hero-image-area::after {
        background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 70px;
    }
    .headline { font-size: 2rem; }
    .hero-content .subtitle { font-size: 1.05rem; }
    .hero-image-area {
        height: 280px;
        margin-bottom: 20px;
    }
    .meta-items {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
}

/* Problems Section */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: var(--border-radius-card);
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-rgba-30);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    line-height: 1;
}

.card-title {
    color: var(--gold-primary);
    font-size: 1.25rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .problems-grid { grid-template-columns: 1fr; }
}

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.comparison-col {
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: var(--border-radius-section);
    padding: 40px;
}

.red-col {
    border-color: rgba(239, 68, 68, 0.2);
}

.red-col .col-title {
    color: var(--color-red);
}

.gold-col {
    border-color: var(--gold-rgba-30);
    box-shadow: 0 10px 30px rgba(201,168,76,0.05);
}

.gold-col .col-title {
    color: var(--gold-primary);
}

.col-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #222;
}

.col-list {
    list-style: none;
}

.col-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
}

.countdown-text {
    /* Removed, replaced by top-banner */
}

.gold-col .col-list li {
    color: var(--text-white);
}

@media (max-width: 768px) {
    .comparison-grid { grid-template-columns: 1fr; }
    .comparison-col { padding: 30px 20px; }
}

/* Intermediate CTA */
.intermediate-cta {
    background: linear-gradient(to right, rgba(201,168,76,0.05), rgba(201,168,76,0.1), rgba(201,168,76,0.05));
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 60px 0;
}

.cta-guarantee {
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Case Section */
.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.case-video {
    width: 100%;
    aspect-ratio: 9/16;
    background: url('https://images.unsplash.com/photo-1559839734-2b71ea197ec2?q=80&w=600&auto=format&fit=crop') center/cover no-repeat;
    border-radius: var(--border-radius-section);
    border: 1px solid var(--gold-rgba-30);
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    border-radius: var(--border-radius-section);
    cursor: pointer;
    transition: background 0.3s;
}

.video-placeholder:hover {
    background: rgba(0,0,0,0.5);
}

.play-btn {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #000;
    margin-left: 5px;
}

.case-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.step {
    background: var(--bg-card);
    border: 1px solid #222;
    padding: 20px;
    border-radius: var(--border-radius-card);
}

.highlight-step {
    border-color: var(--gold-primary);
    background: rgba(201,168,76,0.05);
}

.step-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.step-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.step-desc {
    font-size: 0.9rem;
}

.case-quote {
    font-style: italic;
    border-left: 4px solid var(--gold-primary);
    padding-left: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.case-quote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .case-grid { grid-template-columns: 1fr; }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.prints-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.print-card {
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
    transition: transform 0.3s;
}

.print-card:hover {
    transform: translateY(-5px);
}

.print-img {
    width: 100%;
    height: auto;
    display: block;
}

.video-test {
    aspect-ratio: 9/16;
    background-color: #111;
    object-fit: cover;
}

/* Custom Play Button for Video Testimonials */
.video-wrapper {
    position: relative;
    width: 100%;
    display: block;
    cursor: pointer;
}

.custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 76, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
    transition: opacity 0.3s;
}

.play-icon {
    border-left: 18px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 6px;
}

@media (max-width: 768px) {
    .prints-grid {
        grid-template-columns: 1fr;
    }
}

/* Modules Section */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: var(--border-radius-card);
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mod-number {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
}

.mod-title {
    color: var(--gold-primary);
    font-size: 1.25rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.mod-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .modules-grid { grid-template-columns: 1fr; }
}

/* Mentors Section */
.mentors-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.mentor-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.reverse-row {
    grid-template-columns: 2fr 1fr;
}

.reverse-row .mentor-photo-wrapper {
    order: 2;
}

.mentor-photo-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 16px;
    border: 1px solid var(--gold-rgba-30);
    padding: 10px;
}

.mentor-photo {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}

.photo-1 { background-image: url('adriano.jpg'); }
.photo-2 { background-image: url('luis.jpg'); }

.mentor-name {
    font-size: 2rem;
    margin-bottom: 5px;
}

.mentor-title-role {
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.mentor-bio {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.mentor-stats {
    display: flex;
    gap: 20px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid #222;
    padding: 15px 20px;
    border-radius: var(--border-radius-card);
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 1.5rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .mentor-row, .reverse-row {
        grid-template-columns: 1fr;
    }
    .reverse-row .mentor-photo-wrapper {
        order: -1;
    }
    .mentor-photo-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: var(--border-radius-card);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--text-muted);
}

/* Final CTA Section */
.final-cta-card {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border: 1px solid var(--gold-primary);
    border-radius: var(--border-radius-section);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(201,168,76,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-urgency {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.cta-badges {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.badge {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .final-cta-card { padding: 40px 20px; }
    .cta-title { font-size: 1.8rem; }
    .cta-badges { flex-direction: column; gap: 10px; }
}

/* Footer */
.site-footer {
    border-top: 1px solid #222;
    padding: 60px 0 30px;
    background: #050505;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    opacity: 0.7;
    margin-bottom: 15px;
}

.company-data {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
}

.disclaimer {
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 10px;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}
