/* ========================================
   UMO CANDLE — Landing Page Styles
   ======================================== */

/* --- Custom Properties --- */
:root {
    --primary: #7A4247;
    --primary-light: #9E5A60;
    --primary-dark: #5C2F33;
    --primary-subtle: rgba(122, 66, 71, 0.08);
    --primary-border: rgba(122, 66, 71, 0.15);
    --accent: #DEBF71;
    --accent-light: #E8D08E;
    --accent-dark: #C4A85E;
    --cream: #FBF7F4;
    --cream-dark: #F0E8E0;
    --dark: #1A1A1A;
    --dark-soft: #2A2424;
    --text: #2E2E2E;
    --text-light: #6B6B6B;
    --white: #FFFFFF;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --shadow-sm: 0 2px 8px rgba(122,66,71,0.06);
    --shadow-md: 0 8px 30px rgba(122,66,71,0.08);
    --shadow-lg: 0 20px 60px rgba(122,66,71,0.12);
    --shadow-primary: 0 8px 30px rgba(122,66,71,0.25);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 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(--text);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 3rem;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
}

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

.text-center .section-text {
    margin-left: auto;
    margin-right: auto;
}

/* --- Sections --- */
.section {
    padding: 100px 0;
    position: relative;
}

/* --- Gradient Text --- */
.gradient-text {
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Section Dividers --- */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(122,66,71,0.2), var(--accent), rgba(122,66,71,0.2), transparent);
    margin: 0;
}

.section-divider--dark {
    background: linear-gradient(90deg, transparent, rgba(222,191,113,0.3), var(--accent), rgba(222,191,113,0.3), transparent);
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: none;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.08));
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(122,66,71,0.35);
    background: var(--primary-dark);
}

.btn-primary:hover::before {
    left: 100%;
    transition: left 0.6s ease;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-large {
    padding: 22px 48px;
    font-size: 1.1rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid var(--primary);
    border-radius: 60px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(253, 248, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 0 0 rgba(222,191,113,0.2), var(--shadow-sm);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.05em;
}

.navbar-logo span {
    color: var(--accent);
}

.navbar-cta {
    padding: 10px 24px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.navbar-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-primary);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 40%, #E8D5D7 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80vw;
    height: 80vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122,66,71,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(222,191,113,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237A4247' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Floating parallax orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
    transition: transform 0.1s linear;
}

.hero-orb-1 {
    top: 15%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(222,191,113,0.12) 0%, transparent 70%);
    animation: orbFloat1 8s ease-in-out infinite;
}

.hero-orb-2 {
    bottom: 20%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(122,66,71,0.1) 0%, transparent 70%);
    animation: orbFloat2 10s ease-in-out infinite;
}

.hero-orb-3 {
    top: 60%;
    right: 25%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(222,191,113,0.08) 0%, transparent 70%);
    animation: orbFloat3 12s ease-in-out infinite;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122,66,71,0.06) 0%, rgba(222,191,113,0.04) 40%, transparent 70%);
    pointer-events: none;
    will-change: transform;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, 15px) scale(1.05); }
    66% { transform: translate(15px, -10px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -20px) scale(1.08); }
    66% { transform: translate(-10px, 10px) scale(0.92); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-15px, 15px); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(122,66,71,0.12);
    border-radius: 60px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(122,66,71,0.06);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: normal;
    color: var(--primary);
    position: relative;
}

.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    opacity: 0.5;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.hero-cta {
    font-size: 1.05rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ========================================
   EMOTIONAL SECTION
   ======================================== */
.section-emotional {
    background: var(--white);
}

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

.placeholder-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--cream), var(--cream-dark), rgba(222,191,113,0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(122,66,71,0.1), 0 0 100px rgba(222,191,113,0.05);
}

.placeholder-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(122,66,71,0.15);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.placeholder-image svg {
    width: 40%;
    height: auto;
    opacity: 0.6;
}

.emotional-text .section-title {
    margin-bottom: 1.5rem;
}

.emotional-text .section-text {
    margin-bottom: 2rem;
}

.emotional-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 6px 16px;
    background: var(--cream);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 60px;
    border: 1px solid rgba(122,66,71,0.2);
}

/* ========================================
   FEATURES / QUÉ ES — Magazine Layout
   ======================================== */
.section-what {
    background: var(--cream);
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 20px;
}

.magazine-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    grid-column: span 2;
}

.magazine-card--tall {
    grid-row: span 2;
    grid-column: span 2;
}

.magazine-card--wide {
    grid-column: span 2;
}

/* Photo area — gradient placeholder, will be replaced with real images */
.magazine-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.magazine-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.magazine-card:hover .magazine-photo {
    transform: scale(1.06);
}

/* Dark gradient overlay */
.magazine-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.2) 50%, transparent 100%);
    transition: var(--transition);
    z-index: 1;
}

.magazine-card:hover .magazine-overlay {
    background: linear-gradient(0deg, rgba(122,66,71,0.9) 0%, rgba(122,66,71,0.3) 50%, transparent 100%);
}

/* Text content */
.magazine-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
    transform: translateY(8px);
    transition: var(--transition);
}

.magazine-card:hover .magazine-content {
    transform: translateY(0);
}

.magazine-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    opacity: 0.8;
}

.magazine-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.2;
}

.magazine-card--tall .magazine-content h3 {
    font-size: 1.6rem;
}

.magazine-content p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    max-width: 320px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.magazine-card:hover .magazine-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Accent line on hover */
.magazine-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light), var(--accent));
    z-index: 3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.magazine-card:hover::after {
    transform: scaleX(1);
}

/* ========================================
   AUDIENCE / PARA QUIÉN
   ======================================== */
.section-audience {
    background: linear-gradient(160deg, var(--dark) 0%, #2A1E1F 40%, var(--dark-soft) 70%, #1E1518 100%);
    color: var(--white);
    overflow: hidden;
}

.section-audience::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122,66,71,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.section-audience::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(222,191,113,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.section-audience .section-title {
    color: var(--white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 3rem;
}

.audience-card {
    background: rgba(42,36,36,0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
    border: 1px solid rgba(122,66,71,0.15);
    position: relative;
    z-index: 1;
}

.audience-card:hover {
    border-color: rgba(222,191,113,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.audience-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.audience-icon svg {
    width: 100%;
    height: 100%;
}

.audience-card p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.audience-card strong {
    color: var(--accent);
}

/* ========================================
   STEPS / TIMELINE
   ======================================== */
.section-steps {
    background: var(--white);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--primary), rgba(122,66,71,0.1));
}

.timeline-item {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    position: relative;
}

.timeline-number {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    background: var(--primary);
    color: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(122,66,71,0.25);
}

.timeline-content {
    padding-top: 8px;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.section-testimonials {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 50%, var(--cream) 100%);
}

.testimonials-carousel {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    position: relative;
    min-height: 250px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(122,66,71,0.08);
    opacity: 0;
    transform: translateX(40px);
    transition: var(--transition-slow);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    box-shadow: 0 8px 40px rgba(122,66,71,0.08), 0 0 80px rgba(222,191,113,0.04);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--accent);
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-card cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.testimonial-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background: rgba(122,66,71,0.4);
}

/* ========================================
   CTA FINAL
   ======================================== */
.section-cta-final {
    background: linear-gradient(160deg, var(--primary-dark) 0%, #3A1E21 50%, #2A1520 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease-in-out infinite;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 120vw;
    height: 120vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(222,191,113,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.section-cta-final::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122,66,71,0.15) 0%, transparent 60%);
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Floating particles in CTA */
.cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(222,191,113,0.3);
    border-radius: 50%;
    animation: particleFloat 10s ease-in-out infinite;
}

.cta-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 8s; }
.cta-particles span:nth-child(2) { left: 30%; top: 70%; animation-delay: 2s; animation-duration: 12s; width: 6px; height: 6px; }
.cta-particles span:nth-child(3) { left: 70%; top: 30%; animation-delay: 4s; animation-duration: 9s; }
.cta-particles span:nth-child(4) { left: 85%; top: 60%; animation-delay: 1s; animation-duration: 11s; width: 3px; height: 3px; }
.cta-particles span:nth-child(5) { left: 50%; top: 80%; animation-delay: 3s; animation-duration: 10s; width: 5px; height: 5px; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(10px); opacity: 0.6; }
    50% { transform: translateY(-60px) translateX(-10px); opacity: 0.3; }
    75% { transform: translateY(-30px) translateX(15px); opacity: 0.5; }
}

.cta-final-content {
    position: relative;
    z-index: 1;
}

.cta-final-content .section-title {
    color: var(--white);
    max-width: 600px;
    margin: 0 auto 1rem;
}

.cta-final-content .section-text {
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(180deg, var(--dark) 0%, #0F0A0A 100%);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(222,191,113,0.3), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-brand p {
    font-size: 0.9rem;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer ul li a {
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer ul li a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 0.8rem;
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.magazine-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.magazine-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.magazine-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.magazine-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }

.audience-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.audience-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.audience-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

.timeline-item.animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.timeline-item.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.timeline-item.animate-on-scroll:nth-child(4) { transition-delay: 0.45s; }
.timeline-item.animate-on-scroll:nth-child(5) { transition-delay: 0.6s; }

/* ========================================
   SHOP / VENTAS SLIDER
   ======================================== */
.section-shop {
    background: var(--white);
}

.shop-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-viewport {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius-md);
}

.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.product-card {
    min-width: calc(33.333% - 16px);
    background: var(--cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(122,66,71,0.08);
    flex-shrink: 0;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(122,66,71,0.12), 0 0 60px rgba(222,191,113,0.06);
    border-color: rgba(222,191,113,0.3);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder svg {
    width: 50%;
    height: auto;
    opacity: 0.7;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 14px;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 60px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.product-info {
    padding: 20px 24px 24px;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.product-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 16px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.btn-product {
    padding: 8px 22px;
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-product:hover {
    background: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-primary);
}

.slider-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(122,66,71,0.3);
    background: var(--white);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.slider-arrow:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.slider-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

.slider-arrow:disabled:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: rgba(122,66,71,0.3);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(122,66,71,0.25);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.modal-overlay.open .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--cream-dark);
    color: var(--dark);
}

.modal-header {
    margin-bottom: 28px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="date"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

.form-group input[type="text"]:focus,
.form-group input[type="date"]:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(122,66,71,0.1);
}

.form-group input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.form-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.form-option input[type="radio"] {
    display: none;
}

.option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 10px;
    background: var(--cream);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.form-option input[type="radio"]:checked + .option-card {
    border-color: var(--primary);
    background: rgba(122,66,71,0.06);
    color: var(--primary);
    box-shadow: 0 0 0 3px rgba(122,66,71,0.08);
}

.option-card:hover {
    border-color: rgba(122,66,71,0.5);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    border: none;
    font-family: var(--font-body);
    cursor: pointer;
}

/* ========================================
   MAP / UBICACIÓN
   ======================================== */
.section-map {
    background: var(--cream);
}

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

.map-info .section-title {
    margin-bottom: 1rem;
}

.map-info .section-text {
    margin-bottom: 2rem;
}

.map-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-details li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.map-details li svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.map-details li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.map-details li strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.map-details li span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.map-embed {
    width: 100%;
}

.map-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(122,66,71,0.1);
    position: relative;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(122,66,71,0.2), rgba(222,191,113,0.3), rgba(122,66,71,0.2));
    z-index: -1;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ========================================
   PLATFORMS / INTEGRACIONES
   ======================================== */
.section-platforms {
    background: var(--white);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid rgba(122,66,71,0.08);
    transition: var(--transition);
    cursor: pointer;
}

.platform-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(122,66,71,0.1);
    border-color: rgba(222,191,113,0.3);
    background: linear-gradient(135deg, var(--cream), rgba(222,191,113,0.08));
}

.platform-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.platform-icon svg {
    width: 100%;
    height: 100%;
}

.platform-airbnb {
    background: rgba(255, 56, 92, 0.1);
    color: #FF385C;
}

.platform-tripadvisor {
    background: rgba(52, 224, 161, 0.1);
    color: #34E0A1;
}

.platform-google {
    background: rgba(66, 133, 244, 0.1);
    color: #4285F4;
}

.platform-instagram {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.1), rgba(253, 29, 29, 0.1));
    color: #E1306C;
}

.platform-facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
}

.platform-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.platform-text strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.platform-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.platform-arrow {
    flex-shrink: 0;
    color: var(--text-light);
    opacity: 0;
    transform: translateX(-4px);
    transition: var(--transition);
}

.platform-card:hover .platform-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   FOOTER SOCIALS
   ======================================== */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255,255,255,0.5);
}

.footer-socials a svg {
    width: 16px;
    height: 16px;
}

.footer-socials a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .hero-orb-1,
    .hero-orb-3,
    .hero-glow {
        display: none;
    }

    .hero-orb-2 {
        width: 120px;
        height: 120px;
    }

    .cta-particles {
        display: none;
    }

    .section {
        padding: 70px 0;
    }

    .emotional-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .emotional-image {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }

    .magazine-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .magazine-card,
    .magazine-card--tall,
    .magazine-card--wide {
        grid-column: span 1;
    }

    .magazine-card--tall {
        grid-row: span 2;
    }

    .magazine-card--wide {
        grid-column: span 2;
    }

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

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

    .testimonial-card {
        padding: 32px 24px;
    }

    .testimonial-card blockquote {
        font-size: 1.05rem;
    }

    .timeline::before {
        left: 22px;
    }

    .timeline-number {
        width: 46px;
        height: 46px;
        font-size: 0.95rem;
    }

    .timeline-item {
        gap: 20px;
    }

    .hero-content {
        padding: 100px 20px 60px;
    }

    .btn-primary {
        padding: 16px 28px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 18px 36px;
        font-size: 1rem;
    }

    .product-card {
        min-width: calc(50% - 12px);
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .modal {
        padding: 28px 24px;
        max-width: 100%;
        border-radius: var(--radius-md);
    }

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

    .map-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .map-embed {
        order: -1;
    }

    .map-wrapper {
        aspect-ratio: 16/10;
    }

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

@media (max-width: 480px) {
    .magazine-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .magazine-card,
    .magazine-card--tall,
    .magazine-card--wide {
        grid-column: span 1;
    }

    .magazine-card--tall {
        grid-row: span 1;
    }

    .magazine-content h3,
    .magazine-card--tall .magazine-content h3 {
        font-size: 1.15rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .navbar-logo {
        font-size: 1.2rem;
    }

    .navbar-cta {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .product-card {
        min-width: calc(100% - 0px);
    }
}
