/* ================================
   Variables y Reset
   ================================ */
:root {
    --primary-color: #B8985F;
    --secondary-color: #1a1a1a;
    --accent-color: #2C7A4A;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --overlay-dark: rgba(0, 0, 0, 0.75);
    --overlay-gradient: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 100%);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

/* ================================
   Hero Section con Parallax
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/fondo.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-gradient);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInDown 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.hero-text {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
    margin-top: 80px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.4;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.5px;
}

.hero-title .location {
    color: var(--primary-color);
    display: block;
    font-weight: 400;
    font-style: italic;
    margin-top: 5px;
}

.hero-title .badge {
    display: inline-block;
    background: rgba(184, 152, 95, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 30px;
    margin-left: 10px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.pricing {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 20px;
}

.old-price {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.new-price {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-color);
    font-weight: 300;
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
}

.financing {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.3px;
}

.consultation-badge {
    margin: 25px 0 20px;
}

.badge-text {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: clamp(0.8rem, 1.6vw, 1rem);
    font-weight: 400;
    padding: 12px 30px;
    border-radius: 3px;
    text-transform: none;
    letter-spacing: 1px;
}

.bonus-offer {
    background: rgba(184, 152, 95, 0.1);
    border: 1px solid rgba(184, 152, 95, 0.3);
    border-radius: 4px;
    padding: 10px 20px;
    margin: 20px auto 30px;
    backdrop-filter: blur(10px);
    max-width: 550px;
}

.bonus-offer p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(0.7rem, 1.4vw, 0.9rem);
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

.btn-whatsapp {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    font-weight: 400;
    padding: 18px 40px;
    border-radius: 3px;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 20px rgba(44, 122, 74, 0.25);
    position: relative;
    overflow: hidden;
    line-height: 1.5;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-whatsapp:hover::before {
    width: 300px;
    height: 300px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 122, 74, 0.4);
    background: #246838;
}

.btn-whatsapp i {
    margin-right: 10px;
    font-size: 1.2em;
}

/* ================================
   Results Section
   ================================ */
.results-section {
    padding: 80px 20px 100px;
    background: #ffffff;
}

.results-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 60px;
    letter-spacing: 0.3px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.result-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.result-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.result-buttons {
    padding: 25px;
    background: #f5f5f5;
    text-align: center;
}

.btn-result {
    display: inline-block;
    padding: 16px 35px;
    border-radius: 3px;
    text-decoration: none;
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-consult {
    background: #1e3a5f;
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.25);
}

.btn-consult:hover {
    background: #152a45;
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.35);
    transform: translateY(-2px);
}

.btn-finance {
    background: #1e3a5f;
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.25);
}

.btn-finance:hover {
    background: #152a45;
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.35);
    transform: translateY(-2px);
}

/* ================================
   CTA Valoración Section
   ================================ */
.cta-valoracion-section {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
}

.cta-valoracion-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-valoracion-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.cta-valoracion-text {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #666;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-cta-valoracion {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    font-weight: 700;
    padding: 20px 45px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(44, 122, 74, 0.3);
    line-height: 1.5;
}

.btn-cta-valoracion:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(44, 122, 74, 0.4);
    background: #246838;
}

.btn-cta-valoracion i {
    margin-right: 10px;
    font-size: 1.3em;
}

/* ================================
   Procedimiento Section
   ================================ */
.procedimiento-section {
    padding: 40px 0;
    background: #ffffff;
}

.procedimiento-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
}

.procedimiento-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.procedimiento-right {
    display: flex;
    align-items: flex-start;
}

.procedimiento-imagen {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.procedimiento-imagen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.procedimiento-imagen-large {
    width: 100%;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
}

.procedimiento-imagen-large img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ================================
   Video Section
   ================================ */
.video-section {
    padding: 100px 20px;
    background-image: url('../img/fondo.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

.video-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.video-section .container {
    position: relative;
    z-index: 2;
}

.video-section .section-title {
    color: white;
    margin-bottom: 50px;
}

.video-section .section-title::after {
    background: var(--primary-color);
}

.video-container {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(184, 152, 95, 0.9);
    border: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.video-play-btn:hover {
    background: rgba(184, 152, 95, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
}

.video-play-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ================================
   Benefits Section
   ================================ */
.benefits-section {
    padding: 120px 20px;
    background: #fafafa;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 70px;
    position: relative;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    margin: 25px auto 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 50px 35px;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-color);
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
}

.benefit-card p {
    color: #666;
    line-height: 1.8;
    font-weight: 300;
    font-size: 0.95rem;
}

/* ================================
   Process Section
   ================================ */
.process-section {
    padding: 120px 20px;
    background: white;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 35px 25px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-family: 'Playfair Display', serif;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
}

.process-step p {
    color: #666;
    line-height: 1.8;
    font-weight: 300;
    font-size: 0.95rem;
}

/* ================================
   CTA Section
   ================================ */
.cta-section {
    padding: 120px 20px;
    background: var(--secondary-color);
    text-align: center;
    color: var(--text-light);
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.btn-whatsapp-large {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 400;
    padding: 20px 45px;
    border-radius: 3px;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 20px rgba(44, 122, 74, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-whatsapp-large:hover::before {
    width: 350px;
    height: 350px;
}

.btn-whatsapp-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(44, 122, 74, 0.45);
    background: #246838;
}

.btn-whatsapp-large i {
    margin-right: 12px;
    font-size: 1.3em;
}

.cta-note {
    margin-top: 25px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* ================================
   FAQ Section
   ================================ */
.faq-section {
    padding: 120px 20px;
    background: #f8f8f8;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(184, 152, 95, 0.15);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(184, 152, 95, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 28px 35px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 35px 30px;
    margin: 0;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 300;
}

/* ================================
   Footer
   ================================ */
.footer {
    background: #0a0a0a;
    color: var(--text-light);
    padding: 80px 20px 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    max-width: 130px;
    height: auto;
    opacity: 0.9;
}

.footer-info p {
    margin: 12px 0;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    font-size: 0.95rem;
}

.footer-info i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
}

.footer-social a:hover {
    transform: scale(1.05);
    background: var(--primary-color);
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    font-size: 0.9rem;
}

/* ================================
   WhatsApp Floating Button
   ================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(44, 122, 74, 0.3);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(44, 122, 74, 0.3), 0 0 0 0 rgba(44, 122, 74, 0.4);
    }
    50% {
        box-shadow: 0 6px 25px rgba(44, 122, 74, 0.4), 0 0 0 15px rgba(44, 122, 74, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #246838;
    box-shadow: 0 8px 30px rgba(44, 122, 74, 0.5);
    animation: none;
}

/* ================================
   Animations
   ================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   Responsive Design
   ================================ */

/* Tablets landscape */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 700px;
        padding: 20px 30px;
    }
    
    .logo {
        max-width: 100px;
    }
    
    .hero-text {
        margin-top: 70px;
    }
    
    .results-grid {
        gap: 40px;
    }
    
    .results-title {
        font-size: 1.2rem;
        margin-bottom: 50px;
    }
    
    .procedimiento-grid {
        grid-template-columns: 1fr 1.3fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .procedimiento-left {
        gap: 15px;
    }
}

/* Tablets portrait */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        height: auto;
        padding: 40px 0 50px;
    }
    
    .hero-content {
        padding: 10px 20px;
        max-width: 90%;
    }
    
    .logo {
        max-width: 100px;
    }
    
    .logo-container {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-text {
        margin-top: 110px;
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 4.5vw, 2rem);
        margin-bottom: 12px;
    }
    
    .hero-title .badge {
        display: block;
        margin: 12px auto 0;
        width: fit-content;
        font-size: 0.75rem;
        padding: 5px 14px;
    }
    
    .pricing {
        flex-direction: row;
        gap: 12px;
        margin: 15px 0 12px;
    }
    
    .old-price {
        font-size: 1.4rem;
    }
    
    .new-price {
        font-size: 2rem;
    }
    
    .financing {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .badge-text {
        font-size: 0.8rem;
        padding: 8px 18px;
        letter-spacing: 1px;
    }
    
    .bonus-offer {
        padding: 7px 12px;
        margin: 10px auto 18px;
    }
    
    .bonus-offer p {
        font-size: 0.65rem;
        letter-spacing: 0.2px;
    }
    
    .btn-whatsapp {
        font-size: 0.8rem;
        padding: 14px 28px;
    }
    
    .results-section {
        padding: 50px 20px 60px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .results-title {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .btn-result {
        font-size: 0.95rem;
        padding: 14px 30px;
    }
    
    .cta-valoracion-section {
        padding: 60px 20px;
    }
    
    .cta-valoracion-title {
        font-size: 1.8rem;
    }
    
    .cta-valoracion-subtitle {
        font-size: 1.6rem;
    }
    
    .cta-valoracion-text {
        font-size: 1rem;
    }
    
    .btn-cta-valoracion {
        font-size: 0.95rem;
        padding: 16px 35px;
    }
    
    .procedimiento-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .procedimiento-left {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        height: auto !important;
    }
    
    .procedimiento-imagen {
        height: auto;
    }
    
    .procedimiento-imagen img {
        object-fit: contain;
    }
    
    .procedimiento-imagen-large {
        height: auto;
    }
    
    .benefits-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Mobile landscape */
@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: auto;
        height: auto;
        padding: 40px 0 50px;
    }
    
    .hero-content {
        padding: 10px 15px;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.9rem;
        margin-bottom: 18px;
    }
    
    .old-price {
        font-size: 1.8rem;
    }
    
    .new-price {
        font-size: 3.2rem;
        font-weight: 900;
    }
    
    .financing {
        font-size: 1.15rem;
        font-weight: 600;
    }
    
    .badge {
        font-size: 0.9rem;
        padding: 7px 18px;
    }
    
    .bonus-offer {
        padding: 12px 20px;
    }
    
    .bonus-offer p {
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.4;
    }
    
    .btn-whatsapp {
        padding: 16px 32px;
        font-size: 1.05rem;
    }
    
    .pricing {
        flex-direction: row;
        gap: 12px;
        margin: 12px 0 10px;
    }
    
    .faq-section {
        padding: 50px 20px;
    }
    
    .faq-question {
        padding: 20px 22px;
        font-size: 1.05rem;
    }
    
    .faq-answer p {
        padding: 0 22px 20px;
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .cta-valoracion-section {
        padding: 70px 20px;
    }
    
    .cta-valoracion-title {
        font-size: 1.6rem;
    }
    
    .cta-valoracion-subtitle {
        font-size: 1.4rem;
    }
    
    .procedimiento-left {
        grid-template-columns: 1fr;
        gap: 15px;
        height: auto !important;
    }
    
    .procedimiento-imagen {
        height: auto;
    }
    
    .procedimiento-imagen img {
        object-fit: contain;
    }
    
    .video-section {
        padding: 60px 15px;
        background-attachment: scroll;
    }
    
    .video-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .video-container {
        max-width: 100%;
        width: calc(100% - 20px);
        margin: 0 auto;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        min-height: auto;
        height: auto;
        padding: 30px 0 40px;
    }
    
    .hero-content {
        padding: 5px 15px;
    }
    
    .hero {
        min-height: auto;
        height: auto;
        padding: 35px 0 45px;
    }
    
    .hero-content {
        padding: 5px 15px;
    }
    
    .logo {
        max-width: 110px;
    }
    
    .logo-container {
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-text {
        margin-top: 110px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 14px;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }
    
    .hero-title .badge {
        font-size: 0.85rem;
        padding: 6px 16px;
        margin: 12px auto 0;
    }
    
    .pricing {
        gap: 18px;
        margin: 20px 0 18px;
    }
    
    .old-price {
        font-size: 1.7rem;
    }
    
    .new-price {
        font-size: 3rem;
        font-weight: 900;
    }
    
    .financing {
        font-size: 1.1rem;
        margin-bottom: 18px;
        font-weight: 600;
    }
    
    .consultation-badge {
        margin: 14px 0 12px;
    }
    
    .badge-text {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .bonus-offer {
        padding: 10px 16px;
        margin: 10px auto 18px;
    }
    
    .bonus-offer p {
        font-size: 0.95rem;
        font-weight: 600;
        line-height: 1.4;
    }
    
    .btn-whatsapp {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .btn-whatsapp i {
        font-size: 1.2em;
    }
    
    .results-section {
        padding: 40px 15px 50px;
    }
    
    .results-title {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .results-grid {
        gap: 25px;
    }
    
    .result-buttons {
        padding: 15px 15px;
        gap: 12px;
    }
    
    .btn-result {
        font-size: 0.9rem;
        padding: 12px 25px;
    }
    
    .btn-result {
        font-size: 0.85rem;
        padding: 12px 25px;
    }
    
    .cta-valoracion-section {
        padding: 50px 15px;
    }
    
    .cta-valoracion-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .cta-valoracion-subtitle {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .cta-valoracion-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .btn-cta-valoracion {
        font-size: 0.85rem;
        padding: 15px 30px;
    }
    
    .btn-cta-valoracion i {
        font-size: 1.2em;
    }
    
    .procedimiento-section {
        padding: 30px 0;
    }
    
    .procedimiento-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 15px;
    }
    
    .procedimiento-left {
        grid-template-columns: 1fr;
        gap: 15px;
        height: auto !important;
    }
    
    .procedimiento-imagen {
        height: auto;
    }
    
    .procedimiento-imagen img {
        object-fit: contain;
    }
    
    .procedimiento-imagen-large {
        height: auto;
    }
    
    .btn-whatsapp-large {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 55px;
        height: 55px;
        margin: 0 auto 18px;
        font-size: 1.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .benefit-card p {
        font-size: 0.88rem;
        line-height: 1.6;
    }
    
    .process-step {
        padding: 25px 18px;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .process-step h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .process-step p {
        font-size: 0.88rem;
        line-height: 1.6;
    }
    
    .result-buttons {
        padding: 15px;
        gap: 12px;
    }
    
    .btn-result {
        font-size: 0.88rem;
        padding: 12px 24px;
    }
    
    .benefits-section,
    .process-section,
    .cta-section {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 1.65rem;
        margin-bottom: 40px;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .cta-note {
        font-size: 0.85rem;
        margin-top: 20px;
    }
    
    .faq-section {
        padding: 50px 15px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .faq-question i {
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.9rem;
        line-height: 1.65;
    }
    
    .video-section {
        padding: 50px 10px;
    }
    
    .video-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .video-container {
        max-width: 100%;
        width: calc(100% - 10px);
        border-radius: 8px;
    }
    
    .video-play-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 15px;
        right: 15px;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    .hero {
        min-height: auto;
        height: auto;
        padding: 25px 0 35px;
    }
    
    .hero {
        min-height: auto;
        height: auto;
        padding: 30px 0 40px;
    }
    
    .logo {
        max-width: 95px;
    }
    
    .logo-container {
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-text {
        margin-top: 100px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
        margin-bottom: 14px;
    }
    
    .old-price {
        font-size: 1.6rem;
    }
    
    .new-price {
        font-size: 2.8rem;
        font-weight: 900;
    }
    
    .financing {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .bonus-offer {
        padding: 8px 14px;
    }
    
    .bonus-offer p {
        font-size: 0.85rem;
        font-weight: 600;
        line-height: 1.4;
    }
    
    .btn-whatsapp {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .video-section {
        padding: 40px 8px;
    }
    
    .video-section .section-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .video-container {
        max-width: 100%;
        width: calc(100% - 5px);
        border-radius: 6px;
    }
    
    .video-play-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
