/* ========== IDENTIDAD DE MARCA: ENERGÍA RADIANTE ========== */
/* Paleta de colores vívidos y saturados */
:root {
    --color-primary: #C957BC;        /* Magenta vibrante */
    --color-secondary: #FFFFFF;      /* Blanco */
    --color-accent: #FFC872;         /* Amarillo dorado */
    --color-highlight: #FFB340;      /* Amarillo naranja */
    --color-complementary: #A8C5E5;  /* Azul suave */
    --color-text: #2D1B3D;           /* Púrpura oscuro */
    --color-gray-light: #F8F8F8;
    --color-gray-medium: #E5E5E5;
    --color-gray-dark: #6B6B6B;
    
    /* Tipografía */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-secondary);
    line-height: 2.1;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.7rem); }

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.section-lead {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--color-gray-dark);
}

.section-note {
    text-align: center;
    font-size: 1rem;
    color: var(--color-gray-dark);
    margin: 2rem 0;
    font-style: italic;
}

.highlight {
    background-color: var(--color-accent);
    padding: 0.35rem 0.7rem;
    border-radius: 0.5rem;
    color: var(--color-text);
    font-weight: 600;
    line-height: 2.4;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    white-space: nowrap;
}

.highlight-red {
    color: var(--color-primary);
    font-weight: 900;
    font-size: 1.1em;
}

.big-text {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    text-align: center;
    margin: 1rem 0;
}

.accent {
    color: var(--color-primary);
    font-weight: 700;
}

.accent-text {
    color: var(--color-primary);
    font-weight: 600;
}

.text-left {
    text-align: left;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #B045A8 100%);
    color: var(--color-secondary);
    box-shadow: 0 8px 30px rgba(201, 87, 188, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 87, 188, 0.55);
}

.precio-box {
    text-align: center;
}

.precio-regular {
    text-align: center;
    font-weight: 500;
    color: var(--color-primary);
}

.precio-hoy {
    text-align: center;
    font-weight: 600;
    color: var(--color-primary);
}

.btn-big {
    background: linear-gradient(135deg, var(--color-primary) 0%, #B045A8 100%);
    color: var(--color-secondary);
    font-size: 1.1rem;
    padding: 18px 36px;
    box-shadow: 0 8px 30px rgba(201, 87, 188, 0.4);
    white-space: nowrap;
}

.btn-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 87, 188, 0.55);
}

.pulse {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

/* ========== SECTIONS ========== */
.section {
    padding: 80px 0;
}

/* ========== VIDEO SECTION ========== */
.video-container {
    display: flex;
    justify-content: center;
}

.video-container iframe {
    width: 360px;
    height: 640px;
    border-radius: 12px;
    max-width: 100%;
}

/* ========== HEADER ========== */
.site-header {
    width: 100%;
    line-height: 0;
}

.header-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== HERO CON IMAGEN ========== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 87, 188, 0.7) 0%, rgba(176, 69, 168, 0.6) 50%, rgba(168, 197, 229, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 100px 24px 80px;
}

.hero-pre {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    font-weight: 300;
    font-style: italic;
}

.hero-title {
    font-weight: 900;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

/* ========== PROMESA ========== */
.promesa {
    background: var(--color-secondary);
}

.pain-list {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.pain-list li {
    font-size: 1.15rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-light);
    text-align: left;
}

.pain-list li:last-child {
    border-bottom: none;
}

.callout {
    background: linear-gradient(135deg, #FFF8F3 0%, #FCF0F9 100%);
    border-left: 5px solid var(--color-primary);
    padding: 28px 32px;
    border-radius: 0 16px 16px 0;
    margin: 2.5rem 0;
    text-align: center;
    font-size: 1.1rem;
}

.callout-fire {
    background: linear-gradient(135deg, #FFF8F5 0%, #FDF0F8 100%);
    border-left: 5px solid var(--color-primary);
}

.callout-warm {
    background: linear-gradient(135deg, #FEF8F3 0%, #FCF0F9 100%);
    border-left: 5px solid #B045A8;
}

.promesa .btn {
    display: block;
    max-width: 450px;
    margin: 0 auto;
}

/* ========== RESPONSABILIDAD ========== */
.responsabilidad {
    background: linear-gradient(180deg, var(--color-text) 0%, #3D2550 100%);
    color: var(--color-secondary);
}

.responsabilidad .section-title {
    color: var(--color-secondary);
}

.impact-block {
    text-align: center;
    margin-bottom: 3rem;
}

.impact-block .big-text {
    color: #ccc;
}

.impact-block .accent {
    color: var(--color-accent);
    font-size: clamp(1.4rem, 3.5vw, 2rem);
}

.transform-block h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #eee;
}

.transform-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.transform-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255,255,255,0.07);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.transform-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.transform-item p {
    color: #ddd;
    font-size: 1.05rem;
}

/* ========== LOGROS ========== */
.logros {
    background: #FEF8F3;
}

.logros-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.logro-card {
    background: var(--color-secondary);
    padding: 28px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.logro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(201, 87, 188, 0.2);
    border-color: var(--color-accent);
}

.logro-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.logro-card p {
    font-size: 0.95rem;
    color: var(--color-gray-dark);
}

.logros .btn {
    display: block;
    max-width: 420px;
    margin: 0 auto;
}

/* ========== ANTES / DESPUÉS ========== */
.antes-despues {
    background: var(--color-secondary);
}

.comparison {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.comparison-col {
    flex: 1;
    padding: 32px 28px;
    border-radius: 20px;
}

.comparison-col h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.before {
    background: linear-gradient(135deg, #FFF8F5 0%, #F8E0F5 100%);
    border: 2px solid #E8B0E0;
}

.after {
    background: linear-gradient(135deg, #F0F8FF 0%, #E5F0FA 100%);
    border: 2px solid var(--color-complementary);
}

.comparison-col ul li {
    padding: 10px 0;
    font-size: 1rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.comparison-col ul li:last-child {
    border-bottom: none;
}

.comparison-arrow {
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 80px 24px 60px;
    }

    .logros-grid {
        grid-template-columns: 1fr;
    }

    .comparison {
        flex-direction: column;
    }

    .comparison-arrow {
        justify-content: center;
        padding: 0.5rem 0;
    }

    .highlight {
        white-space: normal;
    }

    .sobre-mi-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sobre-mi-img {
        display: flex;
        justify-content: center;
    }
}

/* ========== PROTOCOLO BOX ========== */
.protocolo-box {
    margin-top: 2.5rem;
    padding-top: 2rem;
}

.protocolo-box h3 {
    margin-bottom: 1.2rem;
}

.protocolo-box p {
    margin-bottom: 1rem;
}

.protocolo-box ul {
    margin-top: 0.8rem;
}

.protocolo-box ul li {
    margin-bottom: 0.6rem;
}

/* ========== SOBRE MÍ ========== */
.sobre-mi-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.sobre-mi-header .section-title {
    margin-bottom: 0;
}

.sobre-mi-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sobre-mi-img {
    flex-shrink: 0;
}

.sobre-mi-img img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 4px 20px rgba(201, 87, 188, 0.3);
    border: 4px solid var(--color-primary);
}

.sobre-mi-text {
    text-align: left;
}

.sobre-mi-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: var(--color-text);
    text-align: center;
}

.sobre-mi-cta {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 1.5rem;
}

/* ========== ANIMACIONES ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
