/* ========================================
   ALQUIMIA DEL SER - Vibrant Spiritual Design
   ======================================== */

:root {
    /* Palette - Vibrant Spiritual */
    --white: #FFFFFF;
    --blue-deep: #1A237E;
    --blue-royal: #2962FF;
    --purple-mystic: #4A148C;
    --purple-light: #7B1FA2;
    --gold-vibrant: #FFD700;
    --gold-dark: #C6A700;

    /* Text Colors */
    --text-main: #2C2C2C;
    --text-light: #555555;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--blue-deep) 0%, var(--purple-mystic) 100%);
    --grad-gold: linear-gradient(135deg, var(--gold-vibrant) 0%, var(--gold-dark) 100%);
    --grad-text: linear-gradient(90deg, var(--blue-deep), var(--purple-mystic));

    /* Fonts */
    --font-heading: 'Cinzel', serif;
    --font-subheading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-pad: 5rem 1.5rem;
}

/* Base */
body {
    background-color: var(--white);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
.text-gradient {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.highlight-purple {
    color: var(--purple-mystic);
    font-weight: 600;
}

.text-golden {
    color: var(--gold-vibrant) !important;
    font-weight: 700;
    font-family: var(--font-subheading);
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-3 {
    margin-top: 3rem;
}

.text-italic {
    font-style: italic;
}

.text-sm {
    font-size: 0.9rem;
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section {
    padding: var(--section-pad);
    position: relative;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.btn--primary {
    background: var(--grad-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.6);
    background: linear-gradient(135deg, var(--blue-royal), var(--purple-light));
}

.btn--glow {
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(74, 20, 140, 0.3);
    }

    to {
        box-shadow: 0 0 20px rgba(74, 20, 140, 0.6);
        border-color: var(--gold-vibrant);
    }
}

.btn--large {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

.btn--full {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: radial-gradient(circle at center, #ffffff 0%, #f4f0ff 100%);
    position: relative;
    overflow: hidden;
}

.hero__container {
    position: relative;
    z-index: 5;
    max-width: 900px;
}

.hero__logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero__logo {
    width: 220px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.3));
}

.hero__title {
    margin-bottom: 1.5rem;
}

.hero__title-top {
    display: block;
    font-family: var(--font-subheading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--purple-mystic);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.hero__title-main {
    display: block;
    font-size: clamp(3rem, 6vw, 4.5rem);
    background: linear-gradient(to right, var(--gold-dark), var(--gold-vibrant), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero__title-sub {
    display: block;
    font-family: var(--font-subheading);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--blue-deep);
    margin-top: 0.5rem;
    font-style: italic;
}

.hero__tagline {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple-mystic);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero__date {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--gold-vibrant);
    border-radius: 50px;
    color: var(--blue-deep);
    font-weight: 500;
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
}

.hero__date-icon {
    color: var(--gold-vibrant);
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero-meditation.png');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
}

/* Symptoms Section (New) */
.section--symptoms {
    background: #F8F9FA;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.symptom-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.symptom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(74, 20, 140, 0.1);
}

.symptom-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.symptom-card h3 {
    color: var(--blue-deep);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.symptom-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Connection Section */
.section--connection {
    background: #FFFFFF;
}

.container--split {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .container--split {
        grid-template-columns: 1fr 1fr;
    }
}

.connection__content .section__title {
    color: var(--blue-deep);
    font-size: 2rem;
}

.text-body {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.text-highlight {
    font-size: 1.2rem;
    color: var(--purple-mystic);
    font-family: var(--font-subheading);
    font-style: italic;
    border-left: 3px solid var(--gold-vibrant);
    padding-left: 1rem;
}

.img-floating {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(74, 20, 140, 0.15);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Target Section (New) */
.section--target {
    background-color: #F3E5F5;
    /* Light purple */
    position: relative;
    overflow: hidden;
}

/* Gallery Section */
.section--gallery {
    padding: 4rem 1.5rem;
    background: var(--white);
    text-align: center;
}

.gallery__grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.gallery__img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery__img:hover {
    transform: scale(1.05);
}

.gallery__text {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--purple-mystic);
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.target__box {
    max-width: 850px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 4rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.target__list {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
}

.target__item {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .target__box {
        padding: 2rem;
    }

    .target__item {
        font-size: 1rem;
    }
}

/* Guide Section */
.section--guide {
    background-color: var(--white);
}

.guide__box {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile: stack vertically */
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9F3FF 100%);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 40px rgba(123, 31, 162, 0.1);
    position: relative;
    overflow: hidden;
}

/* Shine effect for Guide */
.guide__box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .guide__box {
        grid-template-columns: 1fr 1.5fr;
        /* Desktop: Image left (1fr), Text right (1.5fr) */
        text-align: left;
    }
}

.section__title--gold {
    color: var(--gold-dark);
}

.subtitle-gold {
    display: block;
    color: var(--blue-royal);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.guide__img {
    border-radius: 20px;
    /* Square/Frame format */
    border: 4px solid var(--gold-vibrant);
    width: 300px;
    height: 300px;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* Elegant shadow */
    position: relative;
    z-index: 2;
}

/* Pillars Section */
.section--journey {
    background: linear-gradient(to bottom, #fdfbff, #ffffff);
}

.section__title--center {
    text-align: center;
    font-size: 2.2rem;
    color: var(--purple-mystic);
    margin-bottom: 3rem;
}

.pillars {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pillar {
    background: var(--white);
    padding: 3rem 2rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.pillar:hover {
    transform: translateY(-5px);
    border-top-color: var(--gold-vibrant);
}

.pillar__session-tag {
    display: inline-block;
    background: var(--purple-light);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 0 0 15px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pillar__visual {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pillar__img {
    max-height: 100%;
}

.pillar__title {
    color: var(--blue-deep);
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.pillar__desc {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Benefits Section (New) */
.section--benefits {
    background: var(--white);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #FAFAFA;
    border-radius: 15px;
    transition: background 0.3s, transform 0.3s;
    border: 1px solid #EEEEEE;
}

.benefit-item:hover {
    background: linear-gradient(135deg, #FFFBFA 0%, #FFF8E1 100%);
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.3);
}

.benefit-icon {
    font-size: 2rem;
    background: var(--white);
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: var(--purple-mystic);
}

.benefit-item h3 {
    font-size: 1.2rem;
    color: var(--blue-deep);
    margin-bottom: 0.4rem;
}

.benefit-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Details Section */
.section--details {
    background: linear-gradient(135deg, #E8EAF6 0%, #F3E5F5 100%);
    color: var(--text-main);
}

.details__wrapper {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .details__wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.detail-icon {
    font-size: 2rem;
}

.detail-item h4 {
    margin: 0;
    color: var(--purple-mystic);
    font-family: var(--font-body);
    font-weight: 600;
}

.detail-item p {
    color: var(--text-light);
}

/* Urgency Section */
/* Quote Section (New) */
.section--quote {
    text-align: center;
    padding: 8rem 1.5rem;
    position: relative;
    overflow: hidden;
    /* Background Image */
    background: url('frequency_shift.png') no-repeat center center/cover;
}

/* Overlay for readability */
.section--quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    /* Dark overlay for white text contrast */
}

.quote__text {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--white);
    /* White text */
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Urgency Section */
.section--urgency {
    padding: 3rem 1.5rem;
    background: #F3E5F5;
    /* Light purple requested */
    text-align: center;
    border-left: 4px solid var(--purple-mystic);
}

.urgency__title {
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Manifesto Section */
/* Manifesto Section */
.section--manifesto {
    text-align: center;
    color: var(--blue-deep);
    padding: 6rem 1.5rem;
    overflow: hidden;
    position: relative;
    background: #E3F2FD;
    /* Light Blue/Celeste */
}

.manifesto__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.manifesto__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    /* Increased slightly for visibility */
    filter: sepia(0%);
    mix-blend-mode: multiply;
    /* Better integration */
}

/* Light radiant overlay + Symbols */
.manifesto__bg::after {
    content: '✦  ✨  ✦';
    /* "ALGUN SIMBOLO DE CONEXION DE LA LUZ" */
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    color: rgba(255, 215, 0, 0.05);
    /* Very subtle gold symbols */
    z-index: 2;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(227, 242, 253, 0.2) 100%);
    pointer-events: none;
    letter-spacing: 5rem;
}

.container.relative {
    position: relative;
    z-index: 3;
}

.manifesto__title {
    color: var(--blue-deep);
    text-shadow: none;
    font-weight: 700;
}

.manifesto__text {
    font-size: 1.3rem;
    color: var(--text-main);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.85);
    /* Slightly more opaque */
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold-vibrant);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    margin: 2rem auto 4rem;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.25);
    position: relative;
    z-index: 10;
}

.price-tag {
    font-size: 4.5rem;
    font-family: var(--font-heading);
    /* "TIPOGRAFIA DE LAS QUE SE ESTA USANDO" */
    font-weight: 700;
    color: var(--blue-deep);
    margin: 1rem 0 2rem;
    text-shadow: none;
    letter-spacing: -1px;
}

.payment-methods {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--text-light);
}

/* Guide Typography Refinements */
.guide__overline {
    color: var(--blue-royal);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.guide__subtitle {
    font-family: var(--font-heading);
    /* "AL MISMO DEL TITULO" */
    color: var(--blue-royal);
    font-size: 1.1rem;
    font-style: normal;
    margin: -1rem 0 0.5rem 0;
    font-weight: 700;
}

/* Override for specific golden highlight text to be non-italic and gold */
.text-highlight.text-golden {
    font-style: normal;
    /* "NO DEBE SER CURSIVA" */
    font-family: var(--font-body);
    /* "CAMBIA EL TIPO DE LETRA" */
    color: var(--gold-vibrant) !important;
    /* "COLOR DEBE SER DORADO" */
}

.guide__name {
    font-family: var(--font-heading);
    color: var(--gold-dark);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.guide__img {
    border-radius: 20px;
    /* Square/Frame format */
    border: 4px solid var(--gold-vibrant);
    width: 300px;
    height: 300px;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}


/* Footer */
.footer {
    background: linear-gradient(135deg, #5E35B1 0%, #7E57C2 100%);
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    padding: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal.is-visible {
    opacity: 1;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 30, 0.6);
    backdrop-filter: blur(8px);
}

/* Fix Global Box Sizing for form consistecy */
*,
*::before,
*::after {
    box-sizing: border-box;
}

.modal__container {
    background: var(--white);
    width: 90%;
    max-width: 450px;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    z-index: 101;
    transform: translateY(20px);
    transition: transform 0.3s;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--gold-vibrant);
    margin: auto;
    /* Ensure centering fallbacks */
}

.modal.is-visible .modal__container {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 1.5rem;
    /* Adjusted for better spacing */
    right: 1.5rem;
    /* Explicitly on the right */
    background: transparent;
    border: none;
    font-size: 2rem;
    /* Larger for better visibility */
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
    padding: 5px;
    z-index: 10;
}

.modal__close:hover {
    color: var(--purple-mystic);
}

.modal__header {
    text-align: center;
    margin-bottom: 2rem;
    padding-right: 1rem;
    /* Prevent overlap with close button */
}

.modal__title {
    font-size: 1.5rem;
    color: var(--blue-deep);
}

.form__field {
    margin-bottom: 1.5rem;
    /* Increased spacing between fields */
}

.form__field label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.btn--full {
    width: 100%;
    margin-top: 1rem;
    /* Explicit separation from last input */
}

.form__field input {
    width: 100%;
    padding: 0.8rem 1rem;
    /* Slightly reduced padding for balance */
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
    /* Explicitly ensure this */
}

.form__field input:focus {
    outline: none;
    border-color: var(--purple-mystic);
    background: #FAF5FF;
}

.modal__note {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
}

/* Payment Options */
.payment-options {
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-options__text {
    margin-bottom: 1.5rem;
    color: var(--text-main);
    font-size: 1.1rem;
}

.payment-options .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1rem;
    padding: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.payment-options .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn--whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
}

.btn--whatsapp:hover {
    background-color: #128C7E;
}

.btn--paypal {
    background-color: #0070BA;
    color: white;
    border: none;
}

.btn--paypal:hover {
    background-color: #003087;
}

.btn .icon {
    font-size: 1.2rem;
}

.mb-2 {
    margin-bottom: 1rem;
}