﻿/*
Theme Name: UMO CANDLE
Theme URI: https://umocandle.com
Author: UMO CANDLE
Author URI: https://umocandle.com
Description: Tema premium para UMO CANDLE — experiencia creativa de velones artesanales en Puerto Plata. Creado desde el diseño original index.html. Incluye CPT Productos y Experiencias.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
Text Domain: umo-candle
*/
/* ========================================
   UMO CANDLE — Landing Page Styles (Premium 2026)
   ======================================== */

/* --- 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: #C9A870;
    --accent-light: #DBBE90;
    --accent-dark: #A8894E;
    --cream: #FAF7F2;
    --cream-dark: #EEE5DA;
    --dark: #0D0906;
    --dark-mid: #1A1008;
    --dark-soft: #2A1E14;
    --text: #2A2420;
    --text-light: #8A7A70;
    --white: #FFFFFF;

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

    --shadow-sm: 0 2px 8px rgba(13,9,6,0.06);
    --shadow-md: 0 8px 32px rgba(13,9,6,0.08);
    --shadow-lg: 0 20px 64px rgba(13,9,6,0.14);
    --shadow-primary: 0 8px 32px rgba(122,66,71,0.25);
    --shadow-gold: 0 8px 32px rgba(201,168,112,0.25);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;

    --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;
}

/* iOS-safe scroll lock — used by modal & mobile menu */
body.scroll-locked {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

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(2.2rem, 4.5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 3.5rem;
    line-height: 1.75;
    letter-spacing: 0.01em;
}

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

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

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

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

/* --- Gradient Text --- */
.gradient-text {
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 45%, 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(201,168,112,0.2), rgba(201,168,112,0.5), rgba(201,168,112,0.2), transparent);
    margin: 0;
}

.section-divider--dark {
    background: linear-gradient(90deg, transparent, rgba(201,168,112,0.15), rgba(201,168,112,0.35), rgba(201,168,112,0.15), transparent);
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 38px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    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.12), transparent);
    transition: none;
}

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

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

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

.btn-large {
    padding: 22px 52px;
    font-size: 0.85rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: transparent;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1.5px 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: 24px 0;
    transition: var(--transition);
}

/* Over dark hero: white text */
.navbar:not(.scrolled) .navbar-logo {
    color: rgba(255, 255, 255, 0.92);
}

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

.navbar:not(.scrolled) .navbar-link {
    color: rgba(255, 255, 255, 0.65);
}

.navbar:not(.scrolled) .navbar-link:hover {
    color: var(--accent);
}

.navbar:not(.scrolled) .navbar-toggle span {
    background: rgba(255, 255, 255, 0.8);
}

.navbar:not(.scrolled) .navbar-cta {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    backdrop-filter: blur(8px);
}

.navbar:not(.scrolled) .navbar-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

.navbar.scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(201,168,112,0.12), 0 4px 24px rgba(13,9,6,0.05);
}

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

.navbar-logo {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.08em;
    transition: var(--transition);
}

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

.navbar-cta {
    padding: 10px 28px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 60px;
    cursor: pointer;
    transition: var(--transition);
}

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

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-left: auto;
}

.navbar-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    transition: var(--transition);
    position: relative;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

.navbar-link:hover {
    color: var(--primary);
}

.navbar-link:hover::after {
    width: 100%;
}

.navbar-cta-mobile {
    display: none;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.navbar-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO — Dark Luxury
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #0D0906 0%, #140C08 35%, #1A0F0C 65%, #120A0D 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 70vw;
    height: 70vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,112,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 55vw;
    height: 55vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122,66,71,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A870' fill-opacity='0.022'%3E%3Ccircle cx='40' cy='40' r='1'/%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: 12%;
    right: 8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,168,112,0.09) 0%, rgba(201,168,112,0.03) 40%, transparent 70%);
    animation: orbFloat1 9s ease-in-out infinite;
}

.hero-orb-2 {
    bottom: 18%;
    left: 4%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(122,66,71,0.11) 0%, transparent 65%);
    animation: orbFloat2 11s ease-in-out infinite;
}

.hero-orb-3 {
    top: 55%;
    right: 22%;
    width: 190px;
    height: 190px;
    background: radial-gradient(circle, rgba(201,168,112,0.06) 0%, transparent 65%);
    animation: orbFloat3 13s ease-in-out infinite;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,112,0.045) 0%, rgba(122,66,71,0.035) 40%, transparent 70%);
    pointer-events: none;
    will-change: transform;
    animation: glowPulse 7s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-18px, 14px) scale(1.04); }
    66% { transform: translate(14px, -10px) scale(0.97); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(14px, -18px) scale(1.07); }
    66% { transform: translate(-8px, 10px) scale(0.93); }
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    padding: 130px 24px 90px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,112,0.22);
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-badge svg {
    color: var(--accent);
    opacity: 0.75;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

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

.hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(255,255,255,0.45);
    line-height: 1.85;
    max-width: 540px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    letter-spacing: 0.015em;
}

/* Hero CTA — gold on dark bg */
.hero-cta {
    background: var(--accent);
    color: var(--dark);
    box-shadow: 0 8px 36px rgba(201,168,112,0.28);
}

.hero-cta:hover {
    background: var(--accent-light);
    color: var(--dark);
    box-shadow: 0 16px 52px rgba(201,168,112,0.38);
    transform: translateY(-2px);
}

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

.scroll-line {
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, rgba(201,168,112,0.55), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

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

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

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

.placeholder-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--cream), var(--cream-dark), rgba(201,168,112,0.07));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 72px rgba(13,9,6,0.07), 0 0 120px rgba(201,168,112,0.04);
}

.placeholder-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201,168,112,0.1);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.placeholder-image svg {
    width: 38%;
    height: auto;
    opacity: 0.45;
}

.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 18px;
    background: var(--cream);
    color: var(--primary-dark);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 60px;
    border: 1px solid rgba(201,168,112,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: 230px;
    gap: 16px;
}

.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 */
.magazine-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.65s 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.05);
}

/* Dark gradient overlay */
.magazine-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13,9,6,0.9) 0%, rgba(13,9,6,0.22) 55%, transparent 100%);
    transition: var(--transition-slow);
    z-index: 1;
}

.magazine-card:hover .magazine-overlay {
    background: linear-gradient(0deg, rgba(80,36,40,0.94) 0%, rgba(80,36,40,0.32) 55%, transparent 100%);
}

/* Text content */
.magazine-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 30px;
    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-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    opacity: 0.85;
}

.magazine-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.15;
}

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

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

.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: 2px;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-dark));
    z-index: 3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s 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, #0D0906 0%, #1C1008 40%, #1A1210 70%, #100A0D 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.12) 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(201,168,112,0.07) 0%, transparent 60%);
    pointer-events: none;
}

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

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

.audience-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition);
    border: 1px solid rgba(201,168,112,0.08);
    position: relative;
    z-index: 1;
}

.audience-card:hover {
    border-color: rgba(201,168,112,0.22);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.28);
    background: rgba(255,255,255,0.05);
}

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

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

.audience-card p {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
}

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

/* ========================================
   STEPS / TIMELINE — Dark
   ======================================== */
.section-steps {
    background: linear-gradient(180deg, #0D0906 0%, #140C08 50%, #0D0906 100%);
}

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

.section-steps .section-subtitle {
    color: rgba(255,255,255,0.35);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent), rgba(201,168,112,0.25), transparent);
}

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

.timeline-number {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    background: rgba(201,168,112,0.07);
    border: 1px solid rgba(201,168,112,0.22);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.timeline-item:hover .timeline-number {
    background: rgba(201,168,112,0.14);
    border-color: var(--accent);
    box-shadow: 0 0 28px rgba(201,168,112,0.14);
}

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

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
}

/* ========================================
   TESTIMONIALS — Dark Atmospheric
   ======================================== */
.section-testimonials {
    background: linear-gradient(180deg, #0D0906 0%, #1A1008 40%, #100A0D 100%);
}

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

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

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

.testimonial-card {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 52px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201,168,112,0.1);
    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 48px rgba(0,0,0,0.28);
}

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

.testimonial-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,0.82);
    line-height: 1.55;
    margin-bottom: 24px;
}

.testimonial-card cite {
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

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

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid rgba(201,168,112,0.35);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 12px;
    background-clip: content-box;
}

.testimonial-dot.active {
    background: var(--accent);
    background-clip: content-box;
    border-color: var(--accent);
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background: rgba(201,168,112,0.35);
    background-clip: content-box;
}

/* ========================================
   CTA FINAL
   ======================================== */
.section-cta-final {
    background: linear-gradient(160deg, #1A0B0D 0%, #3A1E21 50%, #2A1520 100%);
    background-size: 200% 200%;
    animation: gradientShift 9s 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: 100vw;
    height: 100vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,112,0.055) 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.12) 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: 3px;
    height: 3px;
    background: rgba(201,168,112,0.22);
    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: 5px; height: 5px; }
.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: 2px; height: 2px; }
.cta-particles span:nth-child(5) { left: 50%; top: 80%; animation-delay: 3s; animation-duration: 10s; width: 4px; height: 4px; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.22; }
    25% { transform: translateY(-28px) translateX(8px); opacity: 0.5; }
    50% { transform: translateY(-55px) translateX(-8px); opacity: 0.22; }
    75% { transform: translateY(-28px) translateX(12px); opacity: 0.42; }
}

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

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

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

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(180deg, #0D0906 0%, #080503 100%);
    color: rgba(255,255,255,0.45);
    padding: 72px 0 32px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,112,0.18), var(--accent-dark), rgba(201,168,112,0.18), transparent);
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 10px;
}

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

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.75;
}

.footer h4 {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer ul li {
    margin-bottom: 12px;
    font-size: 0.86rem;
}

.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: 32px;
    font-size: 0.76rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255,255,255,0.28);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    font-size: 0.76rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.28);
    transition: var(--transition);
    letter-spacing: 0.04em;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ========================================
   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.38);
    transition: var(--transition);
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

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

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

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.75s 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; }

/* Steps grid stagger (odd children = step-card, even = connector hidden) */
.steps-grid .step-card.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.steps-grid .step-card.animate-on-scroll:nth-child(3) { transition-delay: 0.1s; }
.steps-grid .step-card.animate-on-scroll:nth-child(5) { transition-delay: 0.2s; }
.steps-grid .step-card.animate-on-scroll:nth-child(7) { transition-delay: 0.3s; }
.steps-grid .step-card.animate-on-scroll:nth-child(9) { transition-delay: 0.4s; }

/* Reviews grid stagger */
.reviews-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.12s; }
.reviews-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.24s; }

/* Booking widgets stagger */
.booking-widgets-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.12s; }

/* ========================================
   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(201,168,112,0.1);
    flex-shrink: 0;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(13,9,6,0.09), 0 0 80px rgba(201,168,112,0.04);
    border-color: rgba(201,168,112,0.2);
}

.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.6;
}

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

.product-info {
    padding: 22px 26px 26px;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--dark);
    margin-bottom: 6px;
}

.product-info p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 18px;
}

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

.product-price {
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.01em;
}

.btn-product {
    padding: 9px 24px;
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    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: 1.5px solid rgba(122,66,71,0.18);
    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.22;
    cursor: default;
}

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

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

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

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

/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(13,9,6,0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    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: 44px;
    position: relative;
    transform: translateY(32px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 40px 100px rgba(13,9,6,0.3), 0 0 0 1px rgba(201,168,112,0.1);
}

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

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    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);
    transform: rotate(90deg);
}

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

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 6px;
}

.modal-header p {
    font-size: 0.86rem;
    color: var(--text-light);
    line-height: 1.65;
}

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

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 10px;
}

.form-group input[type="text"],
.form-group input[type="date"] {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px 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 3px rgba(122,66,71,0.07);
}

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

.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: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    color: var(--text-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

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

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

.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);
}

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

.section-map .section-subtitle {
    margin-bottom: 4rem;
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 52px;
    align-items: start;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Info Cards */
.info-card {
    display: flex;
    gap: 20px;
    padding: 24px 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(201,168,112,0.1);
    transition: var(--transition);
}

.info-card:hover {
    border-color: rgba(201,168,112,0.22);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(13,9,6,0.06);
}

.info-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201,168,112,0.08), rgba(122,66,71,0.04));
    border-radius: 12px;
    color: var(--primary);
}

.info-card-content {
    flex: 1;
}

.info-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 6px;
}

.info-card-content p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 4px;
}

.info-card-content p:last-child {
    margin-bottom: 0;
}

.info-card-content a {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.info-card-content a:hover {
    color: var(--primary-dark);
}

.info-card-detail {
    font-size: 0.82rem !important;
    color: var(--text-light) !important;
}

/* Map Actions */
.map-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--white);
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1.5px solid var(--primary);
    border-radius: 60px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

/* Map Embed */
.map-embed {
    width: 100%;
    position: sticky;
    top: 100px;
}

.map-wrapper {
    width: 100%;
    height: 550px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 72px rgba(13,9,6,0.11), 0 0 120px rgba(201,168,112,0.04);
    border: 1px solid rgba(201,168,112,0.1);
    position: relative;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(201,168,112,0.14), rgba(122,66,71,0.08), rgba(201,168,112,0.14));
    z-index: -1;
}

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

/* Map Overlay Badge */
.map-overlay-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(13,9,6,0.12);
    z-index: 10;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.85rem;
}

.map-overlay-badge svg {
    width: 18px;
    height: 18px;
}

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

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

.platform-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 26px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid rgba(201,168,112,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.platform-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(13,9,6,0.07);
    border-color: rgba(201,168,112,0.22);
    background: linear-gradient(135deg, var(--cream), rgba(201,168,112,0.05));
}

.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.08);
    color: #FF385C;
}

.platform-tripadvisor {
    background: rgba(52, 224, 161, 0.08);
    color: #2DB87A;
}

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

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

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

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

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

.platform-text span {
    font-size: 0.78rem;
    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: 10px;
    margin-top: 20px;
}

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

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

.footer-socials a:hover {
    background: rgba(201,168,112,0.12);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ========================================
   ACCESSIBILITY & TOUCH IMPROVEMENTS
   ======================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

* {
    -webkit-tap-highlight-color: rgba(201, 168, 112, 0.15);
}

::selection {
    background: var(--accent);
    color: var(--dark);
}

::-moz-selection {
    background: var(--accent);
    color: var(--dark);
}

button,
a,
input[type="radio"],
input[type="checkbox"] {
    touch-action: manipulation;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 32px;
    }

    .magazine-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
        gap: 14px;
    }

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

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

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

    .map-wrapper {
        height: 450px;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile & Small Tablets (up to 768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 14px 0;
    }

    .navbar-container {
        padding: 0 20px;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 100px 32px 32px;
        box-shadow: -4px 0 24px rgba(13,9,6,0.14);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        margin-left: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Mobile menu always uses dark text */
    .navbar-menu .navbar-link {
        color: var(--dark) !important;
        font-size: 1rem;
        letter-spacing: 0.08em;
        width: 100%;
        padding: 8px 0;
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(13,9,6,0.65);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }

    .navbar-toggle {
        display: flex;
        z-index: 1001;
    }

    /* When menu is open, toggle goes dark (over white panel bg) */
    .navbar-toggle.active span {
        background: var(--dark) !important;
    }

    .navbar-cta {
        display: none;
    }

    .navbar-menu .navbar-cta-mobile {
        display: flex;
        width: 100%;
        margin-top: 16px;
        padding: 16px 28px;
        background: var(--primary);
        color: var(--white);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        border: none;
        border-radius: 60px;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: var(--shadow-primary);
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .navbar-menu .navbar-cta-mobile:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

    .hero-orb-1,
    .hero-orb-3,
    .hero-glow {
        display: none;
    }

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

    .cta-particles {
        display: none;
    }

    .section {
        padding: 80px 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: 200px;
        gap: 12px;
    }

    .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;
        grid-row: span 1;
    }

    .magazine-content {
        padding: 20px;
    }

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

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

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

    .audience-card {
        padding: 24px;
        flex-direction: row;
    }

    .audience-icon {
        width: 36px;
        height: 36px;
    }

    .audience-card p {
        font-size: 0.93rem;
    }

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

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

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

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

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

    .timeline-item {
        gap: 22px;
    }

    .hero {
        min-height: 90vh;
        min-height: 90dvh;
    }

    .hero-content {
        padding: 110px 20px 70px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
        line-height: 1.08;
    }

    .hero-subtitle {
        font-size: 0.93rem;
        line-height: 1.75;
        max-width: 92%;
        margin: 0 auto 2rem;
    }

    .hero-badge {
        font-size: 0.68rem;
        padding: 7px 18px;
    }

    .hero-cta {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        justify-content: center;
    }

    .btn-primary {
        padding: 16px 32px;
        font-size: 0.78rem;
        min-height: 48px;
    }

    .btn-large {
        padding: 18px 36px;
        font-size: 0.82rem;
        min-height: 52px;
    }

    .btn-secondary {
        padding: 14px 28px;
        min-height: 48px;
    }

    .section-title {
        font-size: clamp(1.9rem, 6vw, 2.6rem);
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 0.93rem;
        margin-bottom: 2.5rem;
    }

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

    .product-card:active {
        transform: scale(0.98);
    }

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

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

    .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: 40px;
    }

    .map-embed {
        order: 1;
        position: relative;
        top: 0;
    }

    .map-wrapper {
        height: 380px;
    }

    .info-card {
        padding: 20px;
    }

    .info-card-icon {
        width: 46px;
        height: 46px;
    }

    .map-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .map-actions .btn-primary,
    .map-actions .btn-map {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .form-group input[type="text"],
    .form-group input[type="date"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea {
        padding: 16px 18px;
        font-size: 16px;
        min-height: 52px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .slider-dots {
        display: none;
    }

    .testimonial-dots {
        display: none;
    }

    .modal-close {
        width: 44px;
        height: 44px;
        top: 12px;
        right: 12px;
    }
}

/* ========================================
   HERO TRUST STRIP + STORE LINK
   ======================================== */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 2.5rem;
}

.hero-store-link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-bottom: 2px;
}

.hero-store-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.hero-trust-strip {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,112,0.14);
    border-radius: 60px;
    padding: 10px 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 6px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
}

.trust-sep {
    width: 1px;
    height: 28px;
    background: rgba(201,168,112,0.18);
    flex-shrink: 0;
}

.trust-platform-icon,
.trust-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    flex-shrink: 0;
}

.trust-ta {
    background: rgba(52, 224, 161, 0.1);
    color: #2DB87A;
}

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

.trust-badge-icon {
    background: rgba(201,168,112,0.1);
    color: var(--accent);
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-align: left;
}

.trust-stars {
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.02em;
    line-height: 1;
}

.trust-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    line-height: 1;
}

/* ========================================
   STEPS — Horizontal Widget Cards
   ======================================== */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
    margin-top: 1rem;
}

.step-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,112,0.1);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.step-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(201,168,112,0.28);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}

.step-num {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.step-card p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.65;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    padding-top: 52px;
    color: rgba(201,168,112,0.25);
    flex-shrink: 0;
}

.step-connector::before {
    content: '→';
    font-size: 1rem;
    color: rgba(201,168,112,0.25);
}

/* ========================================
   SHOP PREVIEW WIDGET
   ======================================== */
.section-shop-preview {
    background: var(--white);
    padding: 80px 0;
}

.shop-preview-widget {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 52px 60px;
    border: 1px solid rgba(201,168,112,0.12);
    box-shadow: var(--shadow-md);
}

.widget-eyebrow {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 14px;
    padding: 5px 14px;
    background: rgba(201,168,112,0.1);
    border-radius: 60px;
    border: 1px solid rgba(201,168,112,0.18);
}

.shop-preview-text h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.shop-preview-text p {
    font-size: 0.97rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 400px;
}

.shop-preview-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 12px;
    align-items: stretch;
}

.shop-mini-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(201,168,112,0.1);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.shop-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201,168,112,0.22);
}

.shop-mini-img {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.shop-mini-img svg {
    opacity: 0.65;
}

.shop-mini-card span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light);
    padding: 6px 10px 2px;
    line-height: 1.3;
}

.shop-mini-card strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-dark);
    padding: 0 10px 12px;
}

.shop-preview-more {
    background: linear-gradient(135deg, rgba(201,168,112,0.08), rgba(122,66,71,0.05));
    border-radius: var(--radius-md);
    border: 1px dashed rgba(201,168,112,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.shop-preview-more span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

/* ========================================
   REVIEWS GRID — 3 Cards Visible
   ======================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 1rem;
}

.review-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201,168,112,0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}

.review-card:hover {
    border-color: rgba(201,168,112,0.24);
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.06);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.review-stars {
    font-size: 0.9rem;
    color: var(--accent);
    letter-spacing: 0.03em;
}

.review-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 60px;
}

.review-ta {
    background: rgba(52, 224, 161, 0.08);
    color: #2DB87A;
    border: 1px solid rgba(52, 224, 161, 0.18);
}

.review-airbnb {
    background: rgba(255, 56, 92, 0.08);
    color: #FF385C;
    border: 1px solid rgba(255, 56, 92, 0.18);
}

.review-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,0.78);
    line-height: 1.55;
    flex: 1;
}

.review-card cite {
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    margin-top: auto;
}

/* ========================================
   BOOKING WIDGETS
   ======================================== */
.section-booking {
    background: linear-gradient(180deg, #0D0906 0%, #140C08 100%);
}

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

.section-booking .section-subtitle {
    color: rgba(255,255,255,0.35);
}

.booking-widgets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.booking-widget {
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: var(--transition);
}

.booking-widget--airbnb {
    background: rgba(255, 56, 92, 0.04);
    border: 1px solid rgba(255, 56, 92, 0.14);
}

.booking-widget--airbnb:hover {
    border-color: rgba(255, 56, 92, 0.28);
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(255, 56, 92, 0.08);
}

.booking-widget--wa {
    background: rgba(37, 211, 102, 0.04);
    border: 1px solid rgba(37, 211, 102, 0.14);
}

.booking-widget--wa:hover {
    border-color: rgba(37, 211, 102, 0.28);
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(37, 211, 102, 0.08);
}

.booking-widget-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.booking-platform-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.bw-wa {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.booking-platform-name {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.booking-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.booking-stars {
    font-size: 0.75rem;
    color: var(--accent);
}

.wa-stars {
    font-size: 0.72rem;
    font-weight: 600;
    color: #25D366;
}

.booking-count {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.02em;
}

.booking-description {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.75;
}

.booking-perks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.booking-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}

.booking-perks li svg {
    flex-shrink: 0;
    color: var(--accent);
    opacity: 0.7;
}

.btn-booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 60px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-booking--airbnb {
    background: #FF385C;
    color: var(--white);
    box-shadow: 0 8px 28px rgba(255, 56, 92, 0.25);
}

.btn-booking--airbnb:hover {
    background: #E0293F;
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(255, 56, 92, 0.35);
}

.btn-booking--wa {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.25);
}

.btn-booking--wa:hover {
    background: #1FB959;
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.35);
}

/* ========================================
   RESPONSIVE — NEW COMPONENTS
   ======================================== */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr auto 1fr auto 1fr;
        grid-template-rows: auto auto;
    }

    .step-card:nth-child(7),
    .step-card:nth-child(9) {
        grid-column: span 1;
    }

    .shop-preview-widget {
        gap: 40px;
        padding: 40px;
    }

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

    .reviews-grid .review-card:last-child {
        grid-column: 1 / -1;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .booking-widgets-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-trust-strip {
        padding: 8px 16px;
        gap: 0;
    }

    .trust-item {
        padding: 0 10px;
    }

    .trust-sep {
        height: 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .step-connector {
        display: none;
    }

    .step-card {
        text-align: left;
        padding: 20px 22px;
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

    .step-num {
        margin-bottom: 0;
        font-size: 1.4rem;
        flex-shrink: 0;
        padding-top: 2px;
    }

    .step-card h3 {
        margin-bottom: 4px;
        font-size: 1.05rem;
    }

    .shop-preview-widget {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 28px;
        border-radius: var(--radius-lg);
    }

    .shop-preview-products {
        grid-template-columns: repeat(3, 1fr) auto;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .reviews-grid .review-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .review-card {
        padding: 24px;
    }

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

    .booking-widgets-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .booking-widget {
        padding: 28px 24px;
    }

    .booking-platform-icon {
        width: 48px;
        height: 48px;
    }
}

