/* ============================================
   PLANTILLA CITAS - Salón / Spa
   Paleta: violeta profundo + dorado
   ============================================ */

:root {
    --primary: #3D2D52;
    --primary-soft: #5A3F70;
    --primary-light: #7A5C92;
    --accent: #C9A961;
    --accent-dark: #A88845;
    --accent-light: #F8F2E2;
    --rose: #E8C5C5;
    --bg: #FFFFFF;
    --bg-soft: #FAF7F4;
    --bg-cream: #F5EFE6;
    --text: #2A1F38;
    --text-soft: #6B5F7A;
    --text-muted: #9B8FAB;
    --border: #E8E0D5;
    --border-strong: #D4C8B8;
    --success: #5B8C6B;
    --danger: #C04B5B;
    --warning: #D4995F;

    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(61, 45, 82, 0.06);
    --shadow-md: 0 6px 20px rgba(61, 45, 82, 0.08);
    --shadow-lg: 0 16px 40px rgba(61, 45, 82, 0.12);
    --shadow-xl: 0 32px 64px rgba(61, 45, 82, 0.16);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVBAR
   ============================================ */
.announce-bar {
    background: var(--primary);
    color: white;
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.announce-bar .accent { color: var(--accent); font-weight: 600; }

.navbar {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.95);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.logo {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 28px;
    color: var(--primary);
    letter-spacing: 0.01em;
    line-height: 1;
}

.logo .ornament {
    color: var(--accent);
    font-size: 14px;
    margin: 0 6px;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-soft);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
}

.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 22px;
    background: var(--primary);
    color: white !important;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: 90px 0 110px;
    background:
        linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-soft) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.2), transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(61, 45, 82, 0.08), transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeUp 0.8s ease-out;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    height: 1px;
    width: 32px;
    background: var(--accent);
}

.hero h1 {
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1;
}

.hero h1 em {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}

.hero p.lead {
    font-size: 17px;
    color: var(--text-soft);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-strong);
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-num .accent { color: var(--accent); }

.hero-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* HERO IMAGE */
.hero-visual {
    position: relative;
    animation: fadeRight 1s ease-out;
}

.hero-image-main {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-cream);
    position: relative;
    box-shadow: var(--shadow-xl);
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.hfc-1 {
    top: 20px;
    left: -30px;
    animation: float 4s ease-in-out infinite;
}

.hfc-2 {
    bottom: 30px;
    right: -20px;
    animation: float 4s ease-in-out infinite 2s;
}

.hfc-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    color: var(--accent-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hfc-text strong {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 2px;
}

.hfc-text span {
    color: var(--text-muted);
    font-size: 11px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: 1.5px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(201, 169, 97, 0.3);
}

.btn-accent {
    background: var(--accent);
    color: white;
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(168, 136, 69, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary);
    border-color: var(--border);
}

.btn-light:hover {
    border-color: var(--primary);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1FB855;
    transform: translateY(-2px);
}

.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 32px; font-size: 14px; }
.btn-sm { padding: 10px 18px; font-size: 12px; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-bg { background: var(--bg-soft); }
.section-cream { background: var(--bg-cream); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.section-header.left {
    text-align: left;
    margin-left: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    height: 1px;
    width: 24px;
    background: var(--accent);
}

.section-header.left .section-eyebrow::before { display: none; }

.section h2 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.1;
}

.section h2 em {
    color: var(--accent);
    font-style: italic;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

.section-header.left .section-subtitle { margin: 0; }

/* ============================================
   SERVICIOS GRID
   ============================================ */
.servicios-tabs {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.servicio-tab {
    padding: 9px 18px;
    border-radius: var(--radius-full);
    background: white;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.servicio-tab:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.servicio-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.servicio-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.servicio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.servicio-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-cream);
    position: relative;
}

.servicio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.servicio-card:hover .servicio-img img { transform: scale(1.06); }

.servicio-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.servicio-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.servicio-cat {
    font-size: 11px;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 8px;
}

.servicio-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.servicio-desc {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.servicio-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-bottom: 16px;
}

.servicio-precio {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--primary);
}

.servicio-duracion {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.servicio-btn {
    background: var(--bg-cream);
    color: var(--primary);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.servicio-btn:hover {
    background: var(--primary);
    color: white;
}

/* ============================================
   PROFESIONALES
   ============================================ */
.equipo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.persona-card {
    text-align: center;
}

.persona-foto {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 24px;
    background: var(--bg-cream);
    position: relative;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}

.persona-foto::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid var(--accent);
    border-radius: 50%;
}

.persona-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.persona-card:hover .persona-foto img {
    transform: scale(1.06);
}

.persona-card h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 4px;
}

.persona-rol {
    color: var(--accent-dark);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 12px;
}

.persona-bio {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

/* ============================================
   AGENDAR — flujo de cita
   ============================================ */
.agendar-wrap {
    padding: 60px 0 100px;
    background: var(--bg-soft);
    min-height: 80vh;
}

.agendar-stepper {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 60%;
    right: -40%;
    height: 1px;
    background: var(--border-strong);
    z-index: 0;
}

.step-item.done:not(:last-child)::after {
    background: var(--accent);
}

.step-circle {
    width: 36px;
    height: 36px;
    background: white;
    border: 2px solid var(--border-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.step-item.active .step-circle {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.step-item.done .step-circle {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.step-label {
    font-size: 11px;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.step-item.active .step-label,
.step-item.done .step-label {
    color: var(--primary);
}

/* SELECCIÓN DE SERVICIOS */
.servicios-pick {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.servicio-pick {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.servicio-pick:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.servicio-pick.selected {
    border-color: var(--accent);
    background: var(--accent-light);
}

.servicio-pick.selected::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 22px;
    height: 22px;
    background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center no-repeat;
    border-radius: 50%;
}

.servicio-pick h4 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 6px;
    font-weight: 600;
}

.servicio-pick p {
    font-size: 12px;
    color: var(--text-soft);
    margin-bottom: 12px;
    min-height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.servicio-pick-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.servicio-pick-precio {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
}

.servicio-pick-dur {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* CALENDARIO Y HORARIOS */
.agendar-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.cal-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 28px;
}

.cal-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 4px;
}

.cal-card .h-help {
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 24px;
}

/* Calendario */
.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cal-month {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
    text-transform: capitalize;
}

.cal-nav {
    display: flex;
    gap: 4px;
}

.cal-nav button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cal-nav button:hover { background: var(--primary); color: white; }
.cal-nav button:disabled { opacity: 0.3; cursor: not-allowed; }

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-dow {
    font-size: 10px;
    color: var(--text-muted);
    text-align: center;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    background: transparent;
    border: 1px solid transparent;
}

.cal-day:hover:not(:disabled):not(.empty) {
    background: var(--bg-cream);
    border-color: var(--accent);
}

.cal-day.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.cal-day.today {
    color: var(--accent);
    font-weight: 700;
}

.cal-day.today.selected {
    color: white;
}

.cal-day.empty,
.cal-day:disabled {
    color: var(--text-muted);
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.cal-day.unavailable {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.5;
    cursor: not-allowed;
}

/* SLOTS */
.slots-card .h-info {
    font-size: 13px;
    color: var(--accent-dark);
    background: var(--accent-light);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.slot-btn {
    padding: 12px 8px;
    background: var(--bg-soft);
    border: 1.5px solid transparent;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.slot-btn:hover:not(:disabled) {
    background: var(--accent-light);
    border-color: var(--accent);
}

.slot-btn.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.slot-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.slots-empty {
    text-align: center;
    padding: 30px 16px;
    color: var(--text-muted);
    font-size: 13px;
}

/* FORMULARIO FINAL */
.form-final {
    max-width: 640px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.form-summary {
    background: var(--bg-cream);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 28px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
}

.summary-row span { color: var(--text-soft); }
.summary-row strong { color: var(--primary); font-weight: 600; }

.summary-row.total {
    border-top: 1px dashed var(--accent);
    padding-top: 12px;
    margin-top: 8px;
    font-size: 16px;
}

.summary-row.total strong {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--accent-dark);
}

.form-group { margin-bottom: 18px; }

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-label .req { color: var(--danger); }

.form-control {
    width: 100%;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 14px;
    background: var(--bg-soft);
    border: 1.5px solid transparent;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    background: white;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Profesional select */
.prof-select {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.prof-card {
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.prof-card:hover {
    border-color: var(--accent);
}

.prof-card.selected {
    border-color: var(--accent);
    background: var(--accent-light);
}

.prof-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 8px;
}

.prof-card .nombre {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.prof-card .esp {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--primary);
    color: rgba(255,255,255,0.75);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 280px; margin-bottom: 16px; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-body);
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { padding: 5px 0; font-size: 14px; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
}

.footer-bottom .powered { color: rgba(255,255,255,0.5); }
.footer-bottom .powered a { color: var(--accent); }

/* WhatsApp FAB */
.wa-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: var(--transition);
    animation: pulse-wa 2.5s infinite;
}

.wa-fab:hover { transform: scale(1.1); }

/* CONFIRMATION */
.confirmation {
    max-width: 640px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.conf-header {
    text-align: center;
    padding: 50px 30px 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    color: white;
}

.conf-check {
    width: 88px;
    height: 88px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.conf-header h1 {
    font-size: 36px;
    margin-bottom: 8px;
}

.conf-header p {
    color: rgba(255,255,255,0.8);
}

.conf-numero {
    display: inline-block;
    margin-top: 16px;
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-family: monospace;
    font-size: 13px;
    letter-spacing: 0.08em;
}

.conf-body { padding: 32px; }

.conf-info {
    background: var(--bg-cream);
    padding: 18px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--accent-dark);
    line-height: 1.6;
}

.conf-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    gap: 16px;
}

.conf-detail-row:last-child { border-bottom: none; }

.conf-detail-row .label {
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 11px;
    font-weight: 600;
    min-width: 100px;
    flex-shrink: 0;
}

.conf-detail-row .value {
    color: var(--primary);
    font-weight: 500;
    text-align: right;
}

.conf-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    justify-content: center;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-visual { max-width: 420px; margin: 0 auto; }
    .servicios-grid { grid-template-columns: repeat(2, 1fr); }
    .equipo-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .agendar-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .nav-links { display: none; }
    .nav-toggle { display: inline-flex; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stat-num { font-size: 28px; }
    .servicios-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-final { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .agendar-stepper { padding: 0 10px; }
    .step-label { font-size: 9px; }
    .section { padding: 70px 0; }
    .hero-floating-card { display: none; }
}
