/* ========================================
   SAKURA CANDLES & SOAPS - Premium CSS
   Inspired by Japanese minimalism & harmony
   ======================================== */

/* === VARIABLES === */
:root {
    /* Sakura Color Palette */
    --sakura-pink: #F4C2C2;
    --sakura-dark: #8B9D83;
    --sakura-light: #FFD4D4;
    --cream: #FAF7F5;
    --cream-dark: #F5EBE0;
    --charcoal: #2E2E2E;
    --charcoal-light: #4A4A4A;
    --wood: #8B7355;
    --zen-gray: #E8E8E8;
    --white: #FFFFFF;

    /* Typography */
    --font-japanese: 'Noto Sans JP', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'DM Sans', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* === LOADER === */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

/* === SAKURA FLOWER ANIMATION === */
.sakura-loader {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sakura-flower {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: sakuraRotate 8s linear infinite, sakuraGlow 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 25px rgba(244, 194, 194, 0.4));
    transform-origin: center;
}

@keyframes sakuraRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes sakuraGlow {

    0%,
    100% {
        filter: drop-shadow(0 10px 25px rgba(244, 194, 194, 0.4));
    }

    50% {
        filter: drop-shadow(0 15px 35px rgba(244, 194, 194, 0.7)) drop-shadow(0 0 20px rgba(139, 157, 131, 0.5));
    }
}

@keyframes sakuraScale {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.95;
    }
}

.loader-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--sakura-dark);
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* === NAVIGATION === */
.nav {
    position: sticky;
    top: 0;
    background: rgba(250, 247, 245, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 157, 131, 0.1);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform var(--transition-normal);
}

.nav-brand:hover {
    transform: translateY(-2px);
}

.brand-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sakura-dark);
    letter-spacing: 0.05em;
}

.brand-sub {
    font-size: 0.625rem;
    color: var(--wood);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sakura-pink);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--sakura-dark);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.cart-button {
    position: relative;
    background: none;
    border: none;
    color: var(--sakura-dark);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.cart-button:hover {
    background: rgba(223, 159, 189, 0.1);
}

.cart-button svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--sakura-pink);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-sans);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--sakura-dark);
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 2000;
    transition: right var(--transition-slow);
}

.mobile-menu.active {
    right: 0;
}

.mobile-close {
    background: none;
    border: none;
    color: var(--sakura-dark);
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
    display: block;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.mobile-link {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: color var(--transition-normal);
}

.mobile-link:hover {
    color: var(--sakura-dark);
}

.btn-primary-mobile {
    background: var(--sakura-pink);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    margin-top: 2rem;
    transition: all var(--transition-normal);
}

.btn-primary-mobile:hover {
    background: var(--sakura-dark);
    transform: translateY(-2px);
}

/* === HERO SECTION === */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23FFB7C5" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(244, 194, 194, 0.15);
    color: var(--sakura-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 600;
    border: 1px solid var(--sakura-light);
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    width: 20px;
    height: 20px;
}

.hero-title {
    font-family: var(--font-sans);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-title-accent {
    color: var(--sakura-dark);
    display: block;
    font-weight: 800;
    position: relative;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: 0.125rem;
    left: 0;
    width: 100%;
    height: 0.375rem;
    background: linear-gradient(90deg, var(--sakura-light), transparent);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.8vw, 1.375rem);
    color: var(--charcoal-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
    font-weight: 400;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--charcoal);
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    font-weight: 500;
}

.hero-feature svg {
    color: var(--sakura-pink);
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--sakura-dark);
    color: white;
    padding: 1.125rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-slow);
    box-shadow: 0 8px 25px rgba(139, 157, 131, 0.25);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--sakura-pink);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 157, 131, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--sakura-dark);
    padding: 1.125rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--sakura-dark);
    transition: all var(--transition-normal);
}

.btn-secondary:hover {
    background: #20BA5A;
    color: white;
    transform: translateY(-2px);
}

.hero-right {
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
    transition: transform var(--transition-slow);
}

.hero-image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(139, 157, 131, 0.3) 100%);
}

/* === CONTAINER === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    font-weight: 700;
    color: var(--sakura-dark);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.875rem;
}

.section-title {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 5.5vw, 3rem);
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-subtitle {
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    color: var(--charcoal-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === FILOSOFÍA ZEN === */
.filosofia-zen {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.zen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.zen-card {
    background: var(--cream);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all var(--transition-slow);
    border: 1px solid rgba(139, 157, 131, 0.1);
}

.zen-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 157, 131, 0.12);
    border-color: var(--sakura-pink);
}

.zen-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sakura-pink);
}

.zen-icon.zen-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(244, 194, 194, 0.1), rgba(139, 157, 131, 0.1));
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(244, 194, 194, 0.2);
    transition: all var(--transition-normal);
}

.zen-icon.zen-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.zen-card:hover .zen-icon.zen-image img {
    transform: scale(1.1);
}

.zen-title {
    font-family: var(--font-japanese);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--sakura-dark);
    margin-bottom: 1rem;
}

.zen-description {
    color: var(--charcoal-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* === COLECCIÓN === */
.coleccion {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 50%, var(--cream) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-slow);
    border: 1px solid rgba(139, 157, 131, 0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 157, 131, 0.15);
}

.product-large {
    grid-column: span 2;
    grid-row: span 2;
}

.product-wide {
    grid-column: span 2;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    width: 100%;
}

.product-large .product-image {
    height: 320px;
}

.product-wide .product-image {
    height: 280px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
    transition: opacity var(--transition-normal);
}

/* Overlay deshabilitado */
.product-overlay {
    display: none !important;
}

.product-overlay-btn {
    display: none !important;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--sakura-dark);
    color: white;
    padding: 0.4rem 0.875rem;
    border-radius: 50px;
    font-size: clamp(0.65rem, 1.5vw, 0.75rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-badge.new {
    background: var(--sakura-pink);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: var(--font-sans);
    font-size: clamp(1.15rem, 2.8vw, 1.375rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.375rem;
    letter-spacing: -0.01em;
}

.product-meaning {
    font-size: clamp(0.8rem, 1.9vw, 0.9rem);
    color: var(--sakura-dark);
    margin-bottom: 1rem;
}

.product-description {
    color: var(--charcoal-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: clamp(0.95rem, 2.1vw, 1.025rem);
}

.product-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.875rem;
}

.product-price {
    display: none;
    /* Precios ocultos para cotización */
}

.product-actions {
    display: flex;
    gap: 0.625rem;
    align-items: center;
}

.btn-view-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--sakura-dark);
    color: var(--sakura-dark);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.btn-view-detail:hover {
    background: var(--sakura-dark);
    color: white;
    transform: scale(1.05);
}

.btn-add-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sakura-pink);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-add-cart:hover {
    background: var(--sakura-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 157, 131, 0.25);
}

/* === PROCESO === */
.proceso {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.proceso-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.proceso-step {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.proceso-step.reverse {
    grid-template-columns: 80px 1fr 1fr;
}

.proceso-step.reverse .step-content {
    order: 3;
}

.proceso-step.reverse .step-image {
    order: 2;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--sakura-light);
    text-align: center;
}

.step-content {
    padding: 2rem;
}

.step-title {
    font-family: var(--font-japanese);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--charcoal-light);
    line-height: 1.7;
}

.step-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.proceso-step:hover .step-image img {
    transform: scale(1.05);
}

/* === TESTIMONIOS === */
.testimonios {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-slow);
    border: 1px solid rgba(139, 157, 131, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--sakura-dark) 0%, var(--sakura-pink) 100%);
    color: white;
    transform: scale(1.05);
}

.testimonial-card.featured .testimonial-text,
.testimonial-card.featured .testimonial-author span {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--charcoal-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--charcoal-light);
}

/* === CONTACTO === */
.contacto {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contacto-title {
    font-family: var(--font-japanese);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.contacto-subtitle {
    font-size: 1.125rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contacto-item {
    display: flex;
    gap: 1rem;
}

.contacto-item svg {
    color: var(--sakura-pink);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contacto-item strong {
    display: block;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.contacto-item p {
    color: var(--charcoal-light);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sakura-dark);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--sakura-pink);
    color: white;
    transform: translateY(-3px);
}

.contacto-whatsapp-card {
    background: linear-gradient(135deg, var(--sakura-dark) 0%, var(--sakura-pink) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(139, 157, 131, 0.25);
}

.whatsapp-icon {
    margin: 0 auto 1.5rem;
    opacity: 0.9;
}

.contacto-whatsapp-card h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contacto-whatsapp-card p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--sakura-dark);
    padding: 1.125rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp-large:hover {
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* === FOOTER === */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-brand .brand-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-brand-name {
    font-family: var(--font-japanese);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-brand-sub {
    font-size: 0.75rem;
    color: var(--zen-gray);
    letter-spacing: 0.15em;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--sakura-pink);
}

.footer-column a {
    display: block;
    color: var(--zen-gray);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: color var(--transition-normal);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--zen-gray);
    font-size: 0.875rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-right {
        max-width: 600px;
        margin: 0 auto;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .product-image {
        height: 260px !important;
    }

    .product-large .product-image,
    .product-wide .product-image {
        height: 260px !important;
    }

    .product-large,
    .product-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contacto-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .brand-icon {
        width: 48px !important;
        height: 48px !important;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .brand-sub {
        font-size: 0.55rem;
        letter-spacing: 0.1em;
    }

    .nav-links {
        display: none;
    }

    .btn-whatsapp {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 0;
    }

    .hero-content {
        padding: 1rem 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .zen-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-image {
        height: 240px !important;
    }

    .product-large .product-image,
    .product-wide .product-image {
        height: 240px !important;
    }

    .product-large,
    .product-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .product-info {
        padding: 1rem;
    }

    .product-name {
        font-size: 1rem;
    }

    .product-meaning {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .product-description {
        display: none;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .btn-add-cart {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
    }

    .proceso-step,
    .proceso-step.reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-content {
        order: 2 !important;
        padding: 0;
    }

    .step-image {
        order: 3 !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card.featured {
        transform: scale(1);
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* === CART MODAL === */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: none;
    align-items: center;
}

.cart-modal.active {
    display: flex;
}

.cart-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.cart-modal-drawer {
    position: relative;
    margin-left: auto;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--sakura-light);
    background: linear-gradient(135deg, #fff9fa 0%, #ffffff 100%);
}

.cart-modal-header h2 {
    font-family: var(--font-japanese);
    font-size: 1.5rem;
    color: var(--sakura-dark);
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--sakura-dark);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.close-btn:hover {
    background: rgba(223, 159, 189, 0.1);
}

.cart-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #fafafa;
    border-radius: 0.5rem;
    border: 1px solid var(--sakura-light);
    transition: all 0.2s;
}

.cart-item:hover {
    background: #f5f5f5;
    border-color: var(--sakura-pink);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--sakura-light), var(--sakura-pink));
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.cart-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.cart-item-name {
    font-family: var(--font-japanese);
    font-size: 1rem;
    font-weight: 600;
    color: var(--sakura-dark);
}

.cart-item-price {
    font-weight: 700;
    color: var(--sakura-pink);
}

.cart-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid var(--sakura-light);
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
}

.qty-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--sakura-dark);
    font-size: 1rem;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.qty-btn:hover {
    color: var(--sakura-pink);
}

.qty-display {
    min-width: 24px;
    text-align: center;
    font-size: 0.9rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: var(--sakura-dark);
}

.empty-cart-message {
    text-align: center;
    padding: 3rem 1rem;
    color: #999;
}

.empty-cart-message p {
    margin: 0.5rem 0;
}

.empty-cart-message .small-text {
    font-size: 0.85rem;
}

.cart-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--sakura-light);
    background: #fafafa;
}

.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #666;
}

.summary-row.total {
    border-top: 2px solid var(--sakura-light);
    padding-top: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sakura-dark);
}

.btn-whatsapp-checkout {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-whatsapp-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-checkout:active {
    transform: translateY(0);
}

.btn-whatsapp-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* === UTILITIES === */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* === PRODUCT DETAIL MODAL === */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-modal.active {
    display: flex;
}

.product-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.product-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.product-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
    z-index: 10;
}

.product-modal-close:hover {
    color: var(--sakura-dark);
}

.product-modal-image {
    border-radius: 16px;
    overflow: hidden;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: modalImageZoom 0.4s ease-out;
}

@keyframes modalImageZoom {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.product-modal-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem 0;
}

.product-modal-header h2 {
    font-family: var(--font-japanese);
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 0.5rem 0;
}

.modal-meaning {
    font-size: 0.95rem;
    color: var(--sakura-dark);
    font-weight: 600;
    margin: 0 0 1.5rem 0;
}

.modal-description {
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 12px;
}

.feature-item {
    color: var(--charcoal);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--sakura-pink);
    border-radius: 50%;
}

.modal-footer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--sakura-light);
}

.modal-price {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--sakura-dark);
}

.modal-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--sakura-dark);
    color: white;
    padding: 1.125rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.modal-btn:hover {
    background: var(--sakura-pink);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 157, 131, 0.25);
}

.modal-btn:active {
    transform: translateY(0);
}

/* Mobile modal */
@media (max-width: 768px) {
    .product-modal-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        max-height: 85vh;
    }

    .product-modal-image {
        min-height: 300px;
    }

    .product-modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-btn {
        width: 100%;
    }
}

/* ========================================
   EVENTOS & COTIZACIÓN - PROFESSIONAL CONVERSION
   ======================================== */

/* Navigation Link Highlight */
.nav-link-highlight {
    background: linear-gradient(135deg, var(--sakura-pink), var(--sakura-light));
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: var(--charcoal) !important;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.nav-link-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 194, 194, 0.4);
}

/* === EVENTOS SECTION === */
.eventos-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, var(--cream), var(--white));
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.evento-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.evento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--sakura-pink), var(--sakura-light));
}

.evento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 157, 131, 0.15);
}

.evento-featured {
    background: linear-gradient(135deg, #FFF5F5, #FFFFFF);
    border: 2px solid var(--sakura-pink);
}

.evento-highlighted {
    background: linear-gradient(135deg, #F4F9F4, #FFFFFF);
    border: 2px solid var(--sakura-dark);
}

.evento-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.evento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.evento-card:hover .evento-image img {
    transform: scale(1.1);
}

.evento-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sakura-light), var(--sakura-pink));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--sakura-dark);
}

.evento-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--sakura-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}


.evento-title {
    font-family: var(--font-sans);
    font-size: clamp(1.25rem, 3.5vw, 1.5rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.evento-description {
    color: var(--charcoal-light);
    line-height: 1.6;
    margin-bottom: 1.125rem;
    font-size: clamp(1rem, 2.2vw, 1.075rem);
}

.evento-features {
    list-style: none;
    padding: 0;
    margin: 1.125rem 0;
}

.evento-features li {
    padding: 0.375rem 0;
    color: var(--charcoal);
    font-size: clamp(0.95rem, 2vw, 1.025rem);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.evento-features li::before {
    content: '•';
    color: var(--sakura-dark);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
}

.evento-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--sakura-dark);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.evento-cta:hover {
    background: var(--sakura-pink);
    color: var(--charcoal);
    transform: translateX(4px);
}

/* === PAQUETES SECTION === */
.paquetes-section {
    padding: var(--spacing-xl) 0;
    background: var(--cream);
}

.paquetes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.paquete-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.paquete-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 157, 131, 0.2);
    border-color: var(--sakura-pink);
}

.paquete-destacado {
    background: linear-gradient(135deg, #FFF9F5, #FFFFFF);
    border: 3px solid var(--sakura-pink);
    transform: scale(1.05);
}

.paquete-destacado:hover {
    transform: scale(1.08) translateY(-10px);
}

.paquete-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--sakura-pink);
    color: var(--charcoal);
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.paquete-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--sakura-light);
    color: var(--sakura-dark);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.paquete-header {
    margin-bottom: 1.5rem;
}

.paquete-name {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.paquete-subtitle {
    color: var(--charcoal-light);
    font-size: 1rem;
}

.paquete-price {
    background: linear-gradient(135deg, var(--sakura-light), var(--cream-dark));
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    text-align: center;
}

.price-desde {
    display: block;
    font-size: 0.875rem;
    color: var(--charcoal-light);
    margin-bottom: 0.25rem;
}

.price-amount {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sakura-dark);
    line-height: 1;
}

.price-unit {
    display: block;
    font-size: 0.875rem;
    color: var(--charcoal-light);
    margin-top: 0.25rem;
}

.paquete-includes {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.paquete-includes li {
    padding: 0.75rem 0;
    color: var(--charcoal);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--zen-gray);
}

.paquete-includes li:last-child {
    border-bottom: none;
}

.paquete-cta {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--sakura-dark);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    margin-top: 1.5rem;
}

.paquete-cta:hover {
    background: var(--sakura-pink);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 194, 194, 0.4);
}

.paquete-custom {
    background: linear-gradient(135deg, #F9F9F9, #FFFFFF);
    border: 2px dashed var(--sakura-dark);
}

.paquete-custom-content {
    text-align: center;
    padding: 2rem 0;
}

.paquete-custom-content svg {
    color: var(--sakura-pink);
    margin-bottom: 1rem;
}

.paquete-custom-text {
    color: var(--charcoal-light);
    line-height: 1.7;
}

/* Paquetes Info Cards */
.paquetes-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
}

.info-card {
    text-align: center;
}

.info-card svg {
    color: var(--sakura-pink);
    margin-bottom: 1rem;
}

.info-card h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--charcoal-light);
    font-size: 0.95rem;
}

/* === COTIZACIÓN FORM SECTION === */
.cotizacion-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, var(--white), var(--cream));
}

.cotizacion-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.cotizacion-left {
    position: sticky;
    top: 100px;
}

.cotizacion-intro {
    color: var(--charcoal-light);
    line-height: 1.7;
    margin: 1.5rem 0 2rem;
    font-size: 1.05rem;
}

.cotizacion-benefits {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    color: var(--charcoal);
    font-weight: 500;
}

.benefit-item svg {
    color: var(--sakura-dark);
    flex-shrink: 0;
}

.cotizacion-contact-alt {
    background: linear-gradient(135deg, var(--sakura-light), var(--sakura-pink));
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.cotizacion-contact-alt p {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.btn-whatsapp-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--sakura-dark);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-normal);
    margin: 1rem 0;
}

.btn-whatsapp-contact:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-top: 0.5rem;
}

/* Form Styles */
.cotizacion-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 2px solid var(--zen-gray);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all var(--transition-normal);
    background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sakura-pink);
    background: white;
    box-shadow: 0 0 0 4px rgba(244, 194, 194, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox and Radio Styles */
.form-group input[type="checkbox"],
.form-group input[type="radio"] {
    margin-right: 0.5rem;
    width: 18px;
    height: 18px;
    accent-color: var(--sakura-dark);
}

.form-group label[for] {
    cursor: pointer;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

/* Estimación Preview */
.estimacion-preview {
    background: linear-gradient(135deg, var(--sakura-light), var(--cream-dark));
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 2px solid var(--sakura-pink);
}

.estimacion-preview h4 {
    font-family: var(--font-serif);
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.estimacion-text {
    color: var(--charcoal);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.estimacion-note {
    font-size: 0.875rem;
    color: var(--charcoal-light);
    font-style: italic;
}

/* Submit Button */
.btn-submit-cotizacion {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--sakura-dark), var(--sakura-pink));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.btn-submit-cotizacion:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 157, 131, 0.3);
}

.btn-submit-cotizacion:active {
    transform: translateY(-1px);
}

.form-privacy {
    text-align: center;
    font-size: 0.875rem;
    color: var(--charcoal-light);
    margin-top: 1rem;
    line-height: 1.6;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 3rem;
}

.form-success svg {
    color: var(--sakura-dark);
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .cotizacion-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cotizacion-left {
        position: static;
    }

    .paquetes-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .eventos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .paquetes-grid {
        grid-template-columns: 1fr;
    }

    .paquete-destacado {
        transform: scale(1);
    }

    .paquete-destacado:hover {
        transform: scale(1.02) translateY(-5px);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cotizacion-form {
        padding: 2rem 1.5rem;
    }

    .paquetes-info {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Loading State for Form */
.btn-submit-cotizacion.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-submit-cotizacion.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 0.75rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Hover effects for conversion optimization */
.evento-card,
.paquete-card {
    cursor: pointer;
}

/* Add pulse animation to highlighted CTAs */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(244, 194, 194, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(244, 194, 194, 0);
    }
}

.nav-link-highlight,
.paquete-destacado .paquete-cta {
    animation: pulse 2s infinite;
}
