/* ========================================
   DOLL'S AESTHETICS LAB - ESTILOS COMPLETOS
   ======================================== */

/* ===== VARIABLES ===== */
:root {
    --primary: #c9a88c;
    --primary-dark: #b08a6e;
    --primary-light: #e2d0c0;
    --secondary: #2c2c2c;
    --text: #333333;
    --text-light: #6b5f55;
    --white: #ffffff;
    --bg-light: #faf6f3;
    --bg-cream: #f5f0eb;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --section-padding: 80px 0;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); line-height: 1.7; background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TIPOGRAFÍA ===== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2.2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 span { color: var(--primary); }
.section-header p { color: var(--text-light); font-size: 1.1rem; max-width: 600px; margin: 0.5rem auto 0; }
.text-center { text-align: center; margin-top: 2.5rem; }

/* ===== BOTONES ===== */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 0.5px;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.btn-secondary { background: transparent; color: var(--secondary); border: 1.5px solid var(--secondary); }
.btn-secondary:hover { background: var(--secondary); color: var(--white); transform: translateY(-3px); }
.btn-small { padding: 8px 20px; font-size: 0.8rem; }
.btn-large { padding: 18px 48px; font-size: 1.05rem; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.header.scrolled { padding: 10px 0; background: rgba(255, 255, 255, 0.97); box-shadow: var(--shadow); }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo-img { height: 100px; width: auto; }
.nav-list { display: flex; gap: 2.5rem; align-items: center; }
.nav-list a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    letter-spacing: 0.3px;
}
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--primary);
    transition: var(--transition);
}
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }
.nav-list a.active { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 1rem; }

/* Language Toggle */
.lang-toggle {
    background: none;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
}
.lang-toggle:hover { border-color: var(--primary); }
.lang-toggle .lang-es { opacity: 0.4; }
.lang-toggle.active .lang-en { opacity: 0.4; }
.lang-toggle.active .lang-es { opacity: 1; }
.lang-separator { margin: 0 4px; color: #ccc; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-cream);
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 246, 243, 0.9) 0%, rgba(245, 240, 235, 0.4) 100%);
    z-index: 1;
}
.hero-container { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 700px; }
.hero-tagline {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}
.hero-title { margin-bottom: 1.5rem; font-weight: 600; line-height: 1.1; }
.hero-title span { color: var(--primary); font-style: italic; }
.hero-description { font-size: 1.15rem; color: var(--text-light); max-width: 500px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== INTRO ===== */
.intro-section { padding: var(--section-padding); background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.intro-text p { color: var(--text-light); margin-bottom: 1.2rem; font-size: 1.05rem; }
.intro-highlights {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}
.intro-highlights span {
    font-size: 0.95rem;
    color: var(--text-light);
}
.intro-image img { border-radius: var(--radius); width: 100%; height: 500px; object-fit: cover; box-shadow: var(--shadow); }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: var(--section-padding); background: var(--bg-light); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.step-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--text-light); font-size: 0.95rem; }

/* ===== SERVICES ===== */
.services-preview { padding: var(--section-padding); background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-image { position: relative; height: 260px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-image img { transform: scale(1.05); }
.service-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.service-info { padding: 1.8rem; }
.service-info h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.service-meta { display: flex; gap: 1.5rem; color: var(--text-light); font-size: 0.85rem; margin-bottom: 0.8rem; }
.service-info p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1.2rem; line-height: 1.6; }

/* ===== SERVICES FULL PAGE ===== */
.page-header {
    padding: 140px 0 60px;
    background: var(--bg-light);
    text-align: center;
}
.page-header h1 { font-size: clamp(2.5rem, 4vw, 3.5rem); }
.page-header h1 span { color: var(--primary); }
.page-header p { color: var(--text-light); font-size: 1.1rem; max-width: 600px; margin: 0.5rem auto 0; }

.services-full { padding: 60px 0 80px; }
.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}
.service-item:last-child { border-bottom: none; }
.service-item-image img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius); }
.service-category {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.service-item-content h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.service-details { display: flex; gap: 2rem; color: var(--text-light); margin-bottom: 1rem; }
.service-item-content ul { margin: 0.5rem 0 1rem; padding-left: 1.5rem; }
.service-item-content ul li { margin-bottom: 0.3rem; list-style: disc; }
.service-item-actions { margin-top: 1.5rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: var(--section-padding); background: var(--bg-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-stars { color: #d4af37; font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.testimonial-card p { font-style: italic; color: var(--text-light); margin-bottom: 1.2rem; font-size: 1rem; }
.testimonial-author strong { display: block; font-family: var(--font-serif); font-size: 1rem; }
.testimonial-author span { font-size: 0.85rem; color: var(--text-light); }

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 0;
    background: var(--secondary);
    color: var(--white);
    text-align: center;
}
.cta-content h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1rem; }
.cta-content h2 span { color: var(--primary); }
.cta-content p { font-size: 1.1rem; opacity: 0.8; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-primary { background: var(--white); color: var(--secondary); }
.cta-banner .btn-primary:hover { background: var(--primary-light); color: var(--secondary); }
.cta-banner .btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.cta-banner .btn-secondary:hover { background: var(--white); color: var(--secondary); }

/* ===== BOOKING ===== */
.booking-section { padding: 60px 0 80px; }
.booking-step {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}
.booking-step h2 { font-size: 1.8rem; margin-bottom: 0.3rem; }
.booking-step .step-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ===== CARRITO DE SERVICIOS ===== */
.service-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-option-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 0.5rem;
    border: 1px solid #eee;
    transition: var(--transition);
}

.service-option-wrapper:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

.service-option {
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-sans);
    flex: 1;
    width: 100%;
}

.service-option:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.service-option.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.service-name {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.service-time,
.service-price {
    font-size: 0.8rem;
    color: var(--text-light);
}

.btn-add-service {
    padding: 8px 12px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-sans);
    width: 100%;
}

.btn-add-service:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

/* ===== CARRITO ===== */
.service-cart {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-top: 1.5rem;
    border: 2px dashed var(--primary-light);
}

.service-cart h3 {
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    font-size: 1.2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.cart-item-name {
    font-weight: 500;
    flex: 1;
}

.cart-item-duration {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0 1rem;
}

.cart-item-price {
    font-weight: 600;
    color: var(--primary);
    margin-right: 1rem;
}

.btn-remove {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 4px;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove:hover {
    background: #ff6b6b;
    color: var(--white);
    transform: scale(1.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid var(--primary-light);
    font-weight: 600;
    font-size: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cart-total-left,
.cart-total-right {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.cart-total-left span:last-child,
.cart-total-right span:last-child {
    color: var(--primary);
    font-size: 1.1rem;
}

.empty-cart {
    color: var(--text-light);
    text-align: center;
    padding: 1rem 0;
}

#continueToStep2 {
    margin-top: 1rem;
    width: 100%;
}

/* ===== BOOKING CALENDAR ===== */
.booking-calendar { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.calendar-container { padding: 1rem; }
.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.slot-item {
    padding: 10px;
    background: var(--bg-light);
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}
.slot-item:hover { background: var(--primary-light); border-color: var(--primary); }
.slot-item.selected { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ===== SUMMARY ===== */
.booking-summary {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin: 1.5rem 0;
}
.booking-summary h3 { margin-bottom: 1rem; }
.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}
.summary-item:last-child { border-bottom: none; }
.summary-item.deposit {
    background: var(--primary-light);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-top: 0.3rem;
}
.summary-item.deposit span { color: var(--primary-dark); }
.summary-item.deposit strong { color: var(--primary-dark); }
.summary-item.total { font-weight: 600; }

/* ===== CONFIRMACIÓN ===== */
.confirmation-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1.5rem;
}

.confirmation-icon { font-size: 4rem; margin-bottom: 1rem; }
.confirmation-container h2 { font-size: 2rem; margin-bottom: 0.3rem; }
.confirmation-subtitle { color: var(--text-light); font-size: 1.05rem; margin-bottom: 2rem; }

.confirmation-details {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.confirmation-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.confirmation-item:last-child { border-bottom: none; }

.confirmation-item.deposit-highlight {
    background: var(--primary-light);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    font-weight: 600;
}
.confirmation-item.deposit-highlight span { color: var(--primary-dark); }
.confirmation-item.deposit-highlight strong { color: var(--primary-dark); font-size: 1.1rem; }

.confirmation-payment-info {
    text-align: left;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.confirmation-payment-info h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.confirmation-payment-info ol { padding-left: 1.2rem; line-height: 2; }
.confirmation-payment-info ol li { margin-bottom: 0.5rem; }

.payment-methods, .contact-methods {
    list-style: none;
    padding-left: 1.5rem !important;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin: 0.3rem 0 0.8rem;
}
.payment-methods li, .contact-methods li {
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
.payment-methods li:last-child, .contact-methods li:last-child { border-bottom: none; }

.btn-whatsapp { color: #25D366; font-weight: 600; text-decoration: none; }
.btn-whatsapp:hover { text-decoration: underline; }

.confirmation-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}
.confirmation-actions .btn { width: 100%; }

.confirmation-note {
    background: #fff3cd;
    border-radius: var(--radius);
    padding: 1rem;
    font-size: 0.9rem;
    color: #856404;
    text-align: center;
}
.confirmation-note p { margin-bottom: 0.3rem; }
.confirmation-note p:last-child { margin-bottom: 0; }

/* ===== CONTACT ===== */
.contact-section { padding: 60px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; }
.contact-info { padding-right: 2rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { font-size: 1.5rem; width: 40px; flex-shrink: 0; }
.contact-text h3 { font-family: var(--font-sans); font-size: 1rem; margin-bottom: 0.2rem; }
.contact-text p { color: var(--text-light); }
.contact-note { display: block; font-size: 0.8rem; color: var(--text-light); opacity: 0.7; margin-top: 0.1rem; }
.contact-social { margin-top: 2rem; }
.contact-social h3 { font-family: var(--font-sans); font-size: 1rem; margin-bottom: 0.5rem; }
.form-note {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

/* ===== ABOUT ===== */
.about-section { padding: 60px 0 80px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius); }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.stat { text-align: center; }
.stat-number { display: block; font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 0.9rem; color: var(--text-light); }

.about-values { margin-top: 4rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2rem; }
.value-card { text-align: center; padding: 2rem; background: var(--bg-light); border-radius: var(--radius); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--text-light); font-size: 0.95rem; }

.about-location { margin-top: 4rem; }
.location-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--primary-light);
}
.location-address {
    font-size: 1.2rem;
    margin: 1rem 0;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius);
}
.location-address strong { display: block; }
.location-address span { color: var(--text-light); }

/* ===== FOOTER ===== */
.footer {
    background: #1a1817;
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { height: 100px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-col p { font-size: 0.95rem; line-height: 1.7; }
.social-links { display: flex; gap: 1rem; margin-top: 1.2rem; }
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    font-size: 1.1rem;
}
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-col h4 { color: var(--white); font-family: var(--font-serif); margin-bottom: 1.2rem; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 0.6rem; font-size: 0.95rem; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.footer-bottom a:hover { color: var(--primary); }

/* ===== FORMULARIOS ===== */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.3rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.terms-group { margin-top: 0.5rem; }
.terms-group label { font-weight: normal; }

/* ===== MAP ===== */
.map-section { padding: 0 0 80px; }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ===== ANIMACIONES ===== */
.fade-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   BOTÓN DE WHATSAPP CON MENSAJE PRE-LLENADO
   ======================================== */

.btn-whatsapp {
    display: inline-block;
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    background: #f0faf4;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid #25D366;
}

.btn-whatsapp:hover {
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: normal;
    margin-top: 2px;
}

.btn-whatsapp:hover span {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== INDICADOR DE MENSAJE PRE-LLENADO ===== */
.confirmation-note .tip-highlight {
    background: var(--primary-light);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: var(--text);
    border-left: 3px solid var(--primary);
}

.confirmation-note .tip-highlight strong {
    color: var(--primary-dark);
}

.confirmation-payment-info ol {
    padding-left: 1.2rem;
    line-height: 2;
}

.confirmation-payment-info ol li {
    margin-bottom: 0.5rem;
}

.confirmation-payment-info ol li strong {
    color: var(--primary-dark);
}

.payment-methods {
    list-style: none;
    padding-left: 1.5rem !important;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin: 0.3rem 0 0.8rem;
}

.payment-methods li {
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.payment-methods li:last-child {
    border-bottom: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .confirmation-payment-info ol {
        padding-left: 0.8rem;
    }
    
    .payment-methods {
        padding-left: 0.5rem !important;
    }
}