:root {
    --gold: #C9A961;
    --gold-light: #E5D4A6;
    --gold-dark: #9B7E3C;
    --dark: #0D0D0D;
    --dark-light: #1A1A1A;
    --text-light: #A8A8A8;
    --white: #FFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(201, 169, 97, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0);
    }
}

.animate-in {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(201, 169, 97, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.logo span {
    line-height: 1;
}

.nav-btn {
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    position: relative;
    padding: 150px 40px 100px;
    overflow: hidden;
}

.hero-grid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-content .gold-text {
    color: var(--gold);
    font-style: italic;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.btn-primary {
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.6);
}

.btn-pulse {
    animation: pulse-gold 2s infinite;
}

/* Mockup Styles */
.mockup-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    transition: transform 0.5s ease;
}

.mockup-container:hover {
    transform: scale(1.02);
}

.mockup-image-placeholder {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.mockup-image {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.video-wrapper {
    position: relative;
    width: 100%;
    line-height: 0;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.25s ease;
}

.play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.7));
    transition: transform 0.2s ease;
}

.play-overlay:hover .play-icon {
    transform: scale(1.12);
}

.mini-lead-form {
    margin-top: 26px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 16px;
    padding: 24px;
}

.hero-lead-form {
    max-width: 920px;
    margin: 36px auto 0;
}

.mini-lead-form h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.mini-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mini-form-grid input,
.mini-form-grid select {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 97, 0.35);
    background: rgba(13, 13, 13, 0.9);
    color: var(--white);
    padding: 12px 14px;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
}

.phone-group {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    grid-column: span 2;
}

.mini-form-btn {
    margin-top: 14px;
    width: 100%;
    text-align: center;
}

.mini-form-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.mini-form-feedback {
    min-height: 22px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.mini-lead-form.is-loading .mini-form-feedback {
    color: var(--gold-light);
}

.mini-lead-form.is-success .mini-form-feedback {
    color: #7BE28B;
}

.mini-lead-form.is-error .mini-form-feedback {
    color: #FF7A7A;
}

.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lead-modal[hidden] {
    display: none;
}

.lead-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.lead-modal-dialog {
    position: relative;
    width: min(760px, 100%);
    z-index: 1;
}

.mini-lead-form-modal {
    margin-top: 0;
}

.lead-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 97, 0.5);
    background: rgba(13, 13, 13, 0.85);
    color: var(--gold-light);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
}

/* Section Styles */
.section {
    padding: 120px 40px;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.section-label {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 3.1rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Problem Section */
.problem-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
}

.problem-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 45px 35px;
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 97, 0.15);
    text-align: center;
    transition: all 0.5s ease;
}

.problem-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.problem-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--dark);
    stroke-width: 1.8;
    fill: none;
}

.problem-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.problem-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--gold);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--dark);
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 97, 0.15);
    transition: all 0.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
}

.testimonial-body {
    padding: 35px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial-author {
    color: var(--gold);
    font-weight: 600;
}

/* Journey Section */
.journey-section {
    background: var(--dark);
}

.journey-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.journey-timeline:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), transparent);
    transform: translateX(-50%);
}

.journey-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.journey-item:nth-child(even) .journey-content {
    order: 2;
}

.journey-item:nth-child(even) .journey-number {
    order: 1;
}

.journey-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.journey-content h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.journey-number {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ... código anterior de Journey Section ... */

.journey-number span {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    /* Añadimos transición suave para la rotación */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    /* O pointer si prefieres */
}

/* Efecto de rotación al pasar el mouse */
.journey-item:hover .journey-number span {
    transform: rotate(360deg);
}

/* Pillars Section */
.pillars-section {
    background: linear-gradient(180deg, var(--dark-light) 0%, var(--dark) 100%);
}

.pillars-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pillar-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
}

.pillar-title {
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 600;
}

/* Abharon Section */
.abharon-section {
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
    padding: 150px 40px;
}

.abharon-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 100px;
    align-items: center;
}

.abharon-image {
    height: 650px;
    background: linear-gradient(135deg, #252525, #1a1a1a);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.abharon-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abharon-text h3 {

    font-size: 1.5rem;

}

h2 {
    font-size: 3.2rem;
    margin-bottom: 35px;
}

.abharon-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    font-style: italic;
    margin-top: 40px;
}

/* Offer Section */
.offer-section {
    background: var(--dark);
    padding: 150px 40px;
}

.offer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.offer-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 40px;
    border-radius: 20px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    transition: all 0.5s ease;
}

.offer-card:hover,
.offer-card.featured {
    transform: translateY(-20px);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(201, 169, 97, 0.3);
}

.offer-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.offer-card h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    background: var(--dark-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 97, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
}

.faq-toggle {
    color: var(--gold);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), transparent);
    padding: 100px 40px;
    text-align: center;
}

.guarantee-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 2px solid var(--gold);
}

.guarantee-box h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
}

/* Final CTA */
.final-cta {
    background: var(--dark);
    padding: 150px 40px;
    text-align: center;
}

.final-cta h2 {
    font-size: 4rem;
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
}

.cta-feature:before {
    content: '✓';
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.final-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--gold);
    margin-top: 80px;
}

/* Footer */
footer {
    background: #000;
    padding: 60px 40px 30px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 9999;
}

/* Utilities */
.text-gold {
    color: var(--gold);
}

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1200px) {

    .hero-grid,
    .abharon-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .journey-timeline:before {
        display: none;
    }

    .journey-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .journey-item:nth-child(even) .journey-content {
        order: 1;
    }

    .journey-item:nth-child(even) .journey-number {
        order: 2;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }

    .nav-container {
        padding: 0 16px;
    }

    .logo {
        gap: 8px;
        font-size: 18px;
        letter-spacing: 1px;
    }

    .logo-image {
        width: 24px;
        height: 24px;
    }

    .nav-btn {
        padding: 8px 14px;
        font-size: 11px;
        letter-spacing: 0.4px;
        margin-left: 12px;
        white-space: nowrap;
    }

    .hero {
        padding: 110px 20px 72px;
    }

    .hero-grid {
        gap: 28px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.08;
        margin-bottom: 14px;
    }

    .hero-content .subtitle {
        font-size: 0.98rem;
        line-height: 1.45;
        margin-bottom: 20px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 12px;
        letter-spacing: 0.6px;
    }

    .section {
        padding: 72px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 0.98rem;
        line-height: 1.45;
    }

    .problem-grid,
    .testimonials-grid,
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .journey-item {
        margin-bottom: 44px;
        gap: 14px;
    }

    .journey-item:nth-child(even) .journey-content {
        order: 2;
    }

    .journey-item:nth-child(even) .journey-number {
        order: -1;
    }

    .journey-content {
        padding: 24px 18px;
    }

    .journey-content h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .journey-content p {
        font-size: 0.94rem;
        line-height: 1.4;
    }

    .journey-number {
        justify-content: flex-start;
        order: -1;
        margin-bottom: 6px;
    }

    .journey-number span {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }

    .mini-lead-form {
        padding: 18px;
    }

    .hero-lead-form {
        margin-top: 24px;
    }

    .mini-lead-form h3 {
        font-size: 1.1rem;
    }

    .mini-form-grid {
        grid-template-columns: 1fr;
    }

    .phone-group {
        grid-template-columns: 100px 1fr;
        grid-column: auto;
    }

    .lead-modal {
        padding: 14px;
    }

    .lead-modal-close {
        top: 10px;
        right: 10px;
    }

    .abharon-text h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .final-cta h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .pillar-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mini-lead-form {
        padding: 18px;
    }

    .mini-lead-form h3 {
        font-size: 1.1rem;
    }

    .mini-form-grid {
        grid-template-columns: 1fr;
    }

    .phone-group {
        grid-template-columns: 100px 1fr;
        grid-column: auto;
    }
}

.mockup-volume-control {
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

#mockupVolume {
    width: 220px;
    accent-color: var(--gold);
}