/* =====================================================
   Dental Leonardo Batista — Landing Crédito Dental
   Static Build · Optimized for Speed
   ===================================================== */

/* ========== CSS RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ========== DESIGN TOKENS ========== */
:root {
    --azul: #007BFF;
    --azul-oscuro: #0056b3;
    --azul-claro: #F0F6FD;
    --azul-palido: #F6F9FF;
    --verde: #5CB85C;
    --verde-hover: #4CAF50;
    --teal: #E0F7FA;
    --gris-bg: #F5F7FA;
    --blanco: #ffffff;
    --negro: #333333;
    --gris: #888888;
    --gris-linea: #EEEEEE;
    --gris-claro: #f8f9fa;

    --sombra-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --sombra-md: 0 4px 20px rgba(0, 0, 0, 0.10);
    --sombra-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --sombra-card: 0 5px 25px rgba(0, 123, 255, 0.08);

    --font-heading: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-2xl: 80px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    --max-width: 1100px;
}

/* ========== BASE ========== */
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--negro);
    background: var(--blanco);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.15rem); font-weight: 400; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    text-align: center;
    line-height: 1.3;
}

.btn:hover { transform: translateY(-2px); }

.btn-green {
    background: var(--verde);
    color: var(--blanco);
    box-shadow: 0 4px 15px rgba(92, 184, 92, 0.35);
}
.btn-green:hover {
    background: var(--verde-hover);
    box-shadow: 0 6px 20px rgba(92, 184, 92, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--azul);
    border: 2px solid var(--azul);
}
.btn-outline:hover {
    background: var(--azul);
    color: var(--blanco);
}

.btn-blue {
    background: var(--azul);
    color: var(--blanco);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
.btn-blue:hover {
    background: var(--azul-oscuro);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn-teal {
    background: #D3F0F1;
    color: var(--negro);
}
.btn-teal:hover {
    background: #b8e6e8;
}

.btn-block { width: 100%; }

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, var(--azul-claro), var(--teal), var(--blanco));
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.hero-content h1 {
    color: var(--azul);
    margin-bottom: 8px;
}

.hero-content h1 .highlight {
    display: block;
}

.hero-content h1 .exclamation {
    color: var(--verde);
    display: block;
    font-size: 0.85em;
}

.hero-content h4 {
    color: var(--gris);
    margin-bottom: 8px;
    line-height: 1.5;
}

.hero-content .hero-bold {
    color: var(--azul);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
}

.hero-buttons .btn { font-size: 0.92rem; }

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-right .btn {
    text-align: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--sombra-lg);
    width: 100%;
    object-fit: cover;
    max-height: 480px;
}

/* ========== SECTION COMMON ========== */
.section {
    padding: var(--space-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    color: var(--azul);
    margin-bottom: 12px;
}

.section-header h4 {
    color: var(--gris);
    max-width: 600px;
    margin: 0 auto;
}

.section-bg { background: var(--gris-bg); }

/* ========== PASOS (3-Step Process) ========== */
.pasos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.paso-card {
    text-align: center;
    padding: 30px 24px;
    background: var(--blanco);
    border-radius: var(--radius-lg);
    box-shadow: var(--sombra-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.paso-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sombra-md);
}

.paso-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--azul-claro);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: var(--azul);
}

.paso-card h3 {
    color: var(--azul);
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.paso-card p {
    color: var(--gris);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: var(--space-lg) 0;
    background: var(--gris-bg);
    text-align: center;
}

/* ========== SERVICES GRID ========== */
.servicios-section {
    background: var(--azul);
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
    overflow: hidden;
}

.servicios-section .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.servicios-section .section-header {
    margin-bottom: 24px;
    flex-shrink: 0;
}

.servicios-section .section-header h2 { color: var(--blanco); font-size: clamp(1.4rem, 3.5vw, 2rem); }
.servicios-section .section-header h4 { color: rgba(255,255,255,0.8); }

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    flex: 1;
    min-height: 0;
}

.servicio-card {
    background: var(--blanco);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gris-linea);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.servicio-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sombra-lg);
}

.servicio-card img {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: contain;
    padding: 8px 12px 0;
}

.servicio-card-body {
    padding: 8px 12px 12px;
    flex-shrink: 0;
}

.servicio-card h5 {
    font-size: 0.95rem;
    color: var(--azul);
    margin-bottom: 4px;
}

.servicio-card p {
    color: var(--gris);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* ========== BENEFITS ========== */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.beneficio-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--blanco);
    border-radius: var(--radius-lg);
    box-shadow: var(--sombra-sm);
    transition: transform 0.3s;
}

.beneficio-card:hover { transform: translateY(-3px); }

.beneficio-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--azul-claro);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--azul);
}

.beneficio-card h3 {
    color: var(--azul);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.beneficio-card p {
    color: var(--gris);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== MISSION / ABOUT ========== */
.mision-section {
    background: var(--gris-bg);
}

.mision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mision-content h2 {
    color: var(--azul);
    margin-bottom: 20px;
}

.mision-content h2 span { display: block; }

.mision-content p {
    color: var(--gris);
    font-size: 0.95rem;
    line-height: 1.7;
}

.doctor-card {
    background: var(--blanco);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--sombra-md);
    text-align: center;
}

.doctor-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
}

.doctor-card-body {
    padding: 24px;
}

.doctor-card h4 {
    color: var(--azul);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.doctor-card h6 {
    color: var(--gris);
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.doctor-card p {
    color: var(--gris);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonio-card {
    background: var(--azul-palido);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--sombra-sm);
}

.testimonio-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonio-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonio-name {
    font-weight: 700;
    color: var(--negro);
}

.testimonio-role {
    color: var(--gris);
    font-size: 0.85rem;
}

.testimonio-stars {
    color: #FFB800;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.testimonio-card p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.7;
    font-style: italic;
}

/* ========== FORM SECTION ========== */
.form-section {
    background: var(--azul);
    padding: var(--space-2xl) 0;
    color: var(--blanco);
}

.form-section .section-header h2 { color: var(--blanco); }

.form-wrapper {
    max-width: 560px;
    margin: 0 auto;
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: rgba(255,255,255,0.9);
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1);
    color: var(--blanco);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.form-group input::placeholder { color: rgba(255,255,255,0.5); }
.form-group input:focus {
    outline: none;
    border-color: var(--blanco);
    background: rgba(255,255,255,0.15);
}

.form-group input.error {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.field-error {
    color: #ffcdd2;
    font-size: 12px;
    margin-top: 4px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--verde);
    color: var(--blanco);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.form-submit:hover {
    background: var(--verde-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 184, 92, 0.4);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-logo {
    text-align: center;
    margin-top: 32px;
}

.form-logo img { margin: 0 auto; width: 140px; opacity: 0.85; }

/* ========== COUNTDOWN ========== */
.countdown-wrapper {
    text-align: center;
    margin-top: 32px;
}

.countdown-wrapper h2 {
    color: var(--blanco);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.countdown-item {
    background: var(--blanco);
    border-radius: 8px;
    padding: 16px 20px;
    min-width: 75px;
    text-align: center;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--azul);
    line-height: 1;
    display: block;
}

.countdown-label {
    font-size: 0.72rem;
    color: var(--negro);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--negro);
    color: rgba(255,255,255,0.7);
    padding: 30px 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer a { color: var(--azul); }

/* ========== WHATSAPP WIDGET (Zenithe-style) ========== */
.whatsapp-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99999;
    font-family: var(--font-body);
}

.whatsapp-float-btn {
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulseWhatsapp 2.5s ease-in-out infinite;
}

.whatsapp-float-btn:hover {
    transform: scale(1.08);
    background-color: #1FAD54;
}

.whatsapp-float-btn svg { width: 30px; height: 30px; fill: currentColor; }

.whatsapp-box {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 310px;
    background: var(--blanco);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    transition: all 0.3s ease;
    transform-origin: bottom right;
}

.whatsapp-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-header {
    background: #00762d;
    color: #fff;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.whatsapp-header-icon {
    width: 38px; height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.whatsapp-header-icon svg { width: 22px; height: 22px; fill: #fff; }

.whatsapp-title { font-weight: 600; font-size: 1rem; margin: 0; }
.whatsapp-subtitle { font-size: 0.82rem; margin: 2px 0 0; opacity: 0.85; font-weight: 300; }

.whatsapp-close {
    position: absolute; top: 10px; right: 10px;
    background: none; border: none; color: rgba(255,255,255,0.7);
    font-size: 1.4rem; cursor: pointer; padding: 5px; line-height: 1;
}
.whatsapp-close:hover { color: #fff; }

.whatsapp-body { padding: 16px; background: #f0f6fd; }

.whatsapp-option {
    display: flex; align-items: center; gap: 14px;
    background: var(--blanco); padding: 14px; border-radius: 8px;
    text-decoration: none; color: var(--negro); margin-bottom: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
}
.whatsapp-option:last-child { margin-bottom: 0; }
.whatsapp-option:hover { transform: translateY(-1px); box-shadow: 0 2px 8px rgba(0,0,0,0.06); border-color: #25D366; }

.whatsapp-option-icon { font-size: 1.4rem; }
.whatsapp-option-text span { display: block; font-weight: 500; font-size: 0.95rem; }
.whatsapp-option-text small { display: block; color: var(--gris); font-size: 0.78rem; margin-top: 2px; font-weight: 300; }

.whatsapp-footer {
    background: var(--blanco); padding: 8px; text-align: center;
    border-top: 1px solid var(--gris-linea);
}
.whatsapp-footer p { font-size: 0.72rem; color: var(--gris); margin: 0; }

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========== POPUP SERVICIOS ========== */
.popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 60, 150, 0.85);
    z-index: 100000; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.35s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.popup-overlay.active { opacity: 1; visibility: visible; }

.popup-card {
    background: linear-gradient(160deg, #ffffff 0%, #f0f6fd 100%);
    border-radius: 24px; padding: 0;
    max-width: 460px; width: 92%;
    max-height: 85vh;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}
.popup-overlay.active .popup-card { transform: scale(1) translateY(0); }

.popup-header {
    background: linear-gradient(135deg, var(--azul) 0%, var(--azul-oscuro) 100%);
    padding: 28px 32px 24px;
    text-align: center;
    position: relative;
}

.popup-close {
    position: absolute; top: 14px; right: 18px;
    background: rgba(255,255,255,0.15); border: none; color: #fff;
    width: 32px; height: 32px; border-radius: 50%;
    font-size: 20px; cursor: pointer; line-height: 1; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.popup-close:hover { background: rgba(255,255,255,0.3); }

.popup-logo { margin-bottom: 12px; }
.popup-logo img { width: 56px; height: 56px; margin: 0 auto; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); }

.popup-header h3 { color: #fff; font-size: 1.15rem; font-weight: 600; margin: 0 0 4px; }
.popup-header p { color: rgba(255,255,255,0.75); font-size: 0.82rem; margin: 0; font-weight: 300; }

.popup-body {
    max-height: 55vh; overflow-y: auto; padding: 8px 24px 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--azul) transparent;
}

.popup-list { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 16px; }

.popup-list li {
    break-inside: avoid;
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; margin-bottom: 6px;
    color: var(--negro); font-size: 0.88rem; font-weight: 500;
    background: var(--blanco);
    border-radius: 10px;
    border: 1px solid var(--gris-linea);
    transition: all 0.2s ease;
    cursor: default;
}

.popup-list li .popup-icon {
    color: var(--azul); font-size: 0.85rem; flex-shrink: 0;
    width: 24px; height: 24px; background: var(--azul-claro);
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
}

.popup-list li:hover {
    border-color: var(--azul);
    background: var(--azul-claro);
    transform: translateX(2px);
}

.popup-footer {
    padding: 16px 24px;
    background: var(--blanco);
    border-top: 1px solid var(--gris-linea);
    text-align: center;
}

.popup-footer .btn { width: 100%; }

@media (max-width: 768px) {
    .whatsapp-widget { bottom: 20px !important; right: 16px !important; }
    .whatsapp-box { bottom: 72px !important; width: 290px; right: 6px; }
    .popup-card { max-width: 95%; }
    .popup-list { columns: 1; }
    .popup-list li { font-size: 0.85rem; padding: 9px 12px; }
    .popup-header { padding: 24px 20px 20px; }
    .popup-body { padding: 8px 16px 16px; }
}

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

.animate { opacity: 0; }
.animate.visible {
    animation: fadeInUp 0.6s ease forwards;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons { max-width: 100%; }

    .hero-image { order: -1; }

    .hero-image img { max-height: 300px; }

    .pasos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .servicios-section {
        height: auto;
        min-height: 100vh;
        padding: 40px 0;
    }

    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 12px;
    }

    .servicio-card img { padding: 6px 8px 0; }
    .servicio-card-body { padding: 6px 8px 10px; }
    .servicio-card h5 { font-size: 0.85rem; }
    .servicio-card p { font-size: 0.75rem; }

    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row { grid-template-columns: 1fr; }

    .countdown { gap: 10px; }
    .countdown-item { min-width: 60px; padding: 12px 14px; }
    .countdown-number { font-size: 1.5rem; }

    .section { padding: 50px 0; }
}

@media (max-width: 480px) {
    .servicios-grid { grid-template-columns: repeat(2, 1fr); }

    .countdown-item { min-width: 55px; padding: 10px 12px; }
    .countdown-number { font-size: 1.3rem; }
}

/* ========== GRACIAS PAGE ========== */
.gracias-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--azul-claro);
    padding: 40px 20px;
    text-align: center;
}

.gracias-card {
    background: var(--blanco);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    max-width: 560px;
    width: 100%;
    box-shadow: var(--sombra-lg);
}

.gracias-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--verde);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: scaleIn 0.5s ease;
}

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

.gracias-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.gracias-card h1 {
    color: var(--azul);
    margin-bottom: 16px;
    font-size: 1.8rem;
}

.gracias-card p {
    color: var(--gris);
    margin-bottom: 20px;
    line-height: 1.6;
}

.gracias-timer {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--azul);
    margin: 20px 0;
}

.gracias-conditions {
    text-align: left;
    background: var(--azul-claro);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 24px 0;
}

.gracias-conditions h3 {
    color: var(--azul);
    font-size: 1rem;
    margin-bottom: 12px;
}

.gracias-conditions ol {
    padding-left: 20px;
    color: var(--gris);
    font-size: 0.9rem;
    line-height: 1.7;
}

.gracias-conditions ol li { margin-bottom: 8px; }

.gracias-address {
    background: var(--gris-bg);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 24px;
}

.gracias-address h4 {
    color: var(--azul);
    font-weight: 700;
    margin-bottom: 8px;
}

.gracias-address p {
    color: var(--gris);
    font-size: 0.9rem;
    margin-bottom: 0;
}
