/* ------------------------------------------------------------
 * LANDING WORKSHOP – CORAZÓN ROTO
 * Estilo mobile-first
 * Paleta adaptada a la web del Dr.:
 * Celeste suave: #D9F3F1
 * Celeste intenso: #00A6A6
 * Blanco: #ffffff
 * Gris oscuro (texto): #2d2d2d
 * Verde CTA WhatsApp: #25D366
 ------------------------------------------------------------ */

/* VARIABLES */
:root {
    --cr-celeste: #D9F3F1;
    --cr-celeste-intenso: #00A6A6;
    --cr-texto: #2d2d2d;
    --cr-blanco: #ffffff;
    --cr-cta-whatsapp: #25D366;
    --cr-cta-whatsapp-hover: #1ebe5a;
}

/* MAIN DEL TEMPLATE */
.landing-cr {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Poppins', sans-serif;
    color: var(--cr-texto);
    background: var(--cr-blanco);
}

.landing-cr a {
    text-decoration: none;
    color: inherit;
}

/* CONTENEDOR BASE */
.landing-cr .cr-container {
    width: 92%;
    margin: 0 auto;
}

/* ------------------------------------------------------------
 * HERO
 ------------------------------------------------------------ */
.landing-cr .cr-hero {
    padding: 0 0 32px;
    background: var(--cr-blanco);
    text-align: center;
}

/* BANNER SUPERIOR DENTRO DEL HERO
   (Workshop online · Cupo limitado) */
/* BANNER SUPERIOR TIPO PROMO */
.landing-cr .cr-banner {
    width: 100%;
    background: #00A6A6;
    color: #ffffff;
    text-align: center;
    padding: 16px 0;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    margin: 0 0 28px 0;
}

/* TÍTULO PRINCIPAL */
.landing-cr .cr-hero-title {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--cr-celeste-intenso);
    margin-bottom: 8px;
}

.landing-cr .cr-hero-title span {
    color: var(--cr-celeste-intenso); /* SIN AMARILLO */
}

/* SUBTÍTULO */
.landing-cr .cr-hero-subtitle {
    margin-top: 14px;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    color: #333333;
}

/* LISTA DEL HERO */
.landing-cr .cr-hero-list {
    margin: 22px auto;
    padding-left: 18px;
    text-align: left;
    max-width: 420px;
}

.landing-cr .cr-hero-list li {
    margin-bottom: 8px;
    font-size: 1rem;
}

/* BOTÓN PRINCIPAL */
.landing-cr .cr-btn-primary {
    display: block;
    width: 100%;
    background: var(--cr-cta-whatsapp);
    color: #ffffff !important;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    font-size: 1.2rem;
    font-weight: 800;
    transition: 0.2s;
    margin-top: 18px;
}

.landing-cr .cr-btn-primary:hover {
    background: var(--cr-cta-whatsapp-hover);
}

/* NOTA PEQUEÑA */
.landing-cr .cr-small-note {
    margin-top: 14px;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* TARJETA DEL DOCTOR EN HERO */
.landing-cr .cr-hero-card {
    margin-top: 25px;
    padding: 18px;
    background: #f7f7f7;
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    text-align: left;
}

.landing-cr .cr-hero-card-text p {
    font-size: 0.95rem;
    line-height: 1.45;
}

.landing-cr .cr-hero-card-author {
    font-size: 0.8rem;
    margin-top: 10px;
    display: block;
    font-weight: 600;
    color: var(--cr-celeste-intenso);
}

/* ------------------------------------------------------------
 * SECCIONES GENERALES
 ------------------------------------------------------------ */
.landing-cr .cr-section {
    padding: 40px 0;
}

.landing-cr .cr-section-light {
    background: #ECFDFC; /* celeste limpio tipo fondo de sección */
}

.landing-cr .cr-section-title {
    font-size: 1.7rem;
    margin-bottom: 12px;
    font-weight: 800;
    color: var(--cr-celeste-intenso);
    text-align: center;
}

.landing-cr .cr-section-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 20px;
}

.landing-cr .cr-section-highlight {
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 20px;
    color: var(--cr-celeste-intenso);
    text-align: center;
}
/* ------------------------------------------------------------
 * GRID Y CARDS
 ------------------------------------------------------------ */
.landing-cr .cr-grid {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}
.landing-cr .cr-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.landing-cr .cr-chip-card {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 12px 10px;
    font-size: 0.9rem;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
/* ------------------------------------------------------------
 * CARDS DE CONTENIDO DEL WORKSHOP
 ------------------------------------------------------------ */
.landing-cr .cr-feature-card {
    background: #ffffff;
    padding: 18px;
    margin-top: 20px;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.landing-cr .cr-feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--cr-celeste-intenso);
}
/* ------------------------------------------------------------
 * STICKY CTA (BOTÓN FIJO MÓVIL) – OPCIONAL
 * Solo se usa si en el PHP agregas <a class="cr-sticky-cta">
 ------------------------------------------------------------ */
.landing-cr .cr-sticky-cta {
    position: fixed;
    bottom: 12px;
    left: 6%;
    width: 88%;
    background: var(--cr-cta-whatsapp);
    color: #ffffff !important;
    text-align: center;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    z-index: 999;
}
.landing-cr .cr-sticky-cta:hover {
    background: var(--cr-cta-whatsapp-hover);
}
/* ------------------------------------------------------------
 * RESPONSIVE (tablet / desktop)
 ------------------------------------------------------------ */
 
@media (min-width: 768px) {
    .landing-cr .cr-hero-title {
        font-size: 2.8rem;
    }
    .landing-cr .cr-section-title {
        font-size: 2rem;
    }
    .landing-cr .cr-grid-2 {
        grid-template-columns: repeat(4, 1fr);
    }
    .landing-cr .cr-hero-card {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}
/* Imagen del hero */
.landing-cr .cr-hero-image {
    margin: 20px auto 14px;
    max-width: 420px;
}
.landing-cr .cr-hero-image img {
    width: 100%;
    display: block;
    border-radius: 28px;          /* 🔥 más redondeada */
    border: 2px solid #DFF8F8;
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
    object-fit: cover;
    height: 280px;                /* 🔥 recorta verticalmente */
}