/* ===== EXPERIMENTO: Estilo minimal, inspirado en Michelle & Tonye ===== */
/* Menos saturación, más aire, scroll fluido hasta abajo */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #fafaf8;
    --bg-section: #fff;
    --text: #2d2d8c;
    --text-soft: #4a4a9e;
    --accent: #8b7355;
    --accent-soft: #c4b5a0;
    --border: #e8e6e3;
    --navbar-height: 72px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.75;
    font-weight: 400;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text);
    font-weight: 500;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.2s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 var(--border);
}

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

.navbar-brand {
    text-decoration: none;
}

.navbar-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.navbar-menu a:hover {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background-color: var(--text);
    transition: all 0.2s ease;
}

/* ===== FLYING MACAW ===== */
.flying-macaw {
    display: none;
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    width: 150px;
    height: 150px;
    animation: flyAcross 25s infinite ease-in-out;
    opacity: 0.85;
    will-change: transform;
    background: transparent;
}

.macaw-speech {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 0.5rem 0.75rem;
    min-width: 8ch;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text);
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    transition: opacity 0.5s ease;
}

.macaw-speech::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border: 6px solid transparent;
    border-top-color: #fff;
}

.macaw-speech.macaw-speech--hidden {
    opacity: 0;
    pointer-events: none;
}

.macaw-extracted {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
    animation: wingFlap 0.5s ease-in-out infinite;
    background: transparent;
}

@keyframes wingFlap {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.95); }
}

@keyframes flyAcross {
    0% { left: -200px; top: 15%; transform: rotate(-10deg) scale(0.8); }
    5% { top: 10%; transform: rotate(-5deg) scale(0.9); }
    10% { top: 20%; transform: rotate(5deg) scale(1); }
    15% { top: 12%; transform: rotate(-3deg) scale(0.95); }
    20% { top: 25%; transform: rotate(8deg) scale(1.05); }
    25% { top: 18%; transform: rotate(-2deg) scale(1); }
    30% { top: 30%; transform: rotate(10deg) scale(1.1); }
    35% { top: 22%; transform: rotate(-5deg) scale(1); }
    40% { top: 15%; transform: rotate(3deg) scale(0.95); }
    45% { top: 28%; transform: rotate(-8deg) scale(1.05); }
    50% { left: 50%; top: 20%; transform: rotate(0deg) scale(1); }
    55% { top: 15%; transform: rotate(-5deg) scale(0.95); }
    60% { top: 25%; transform: rotate(8deg) scale(1.05); }
    65% { top: 18%; transform: rotate(-3deg) scale(1); }
    70% { top: 30%; transform: rotate(10deg) scale(1.1); }
    75% { top: 22%; transform: rotate(-5deg) scale(1); }
    80% { top: 15%; transform: rotate(3deg) scale(0.95); }
    85% { top: 28%; transform: rotate(-8deg) scale(1.05); }
    90% { top: 20%; transform: rotate(5deg) scale(1); }
    95% { top: 25%; transform: rotate(-3deg) scale(0.9); }
    100% { left: calc(100% + 200px); top: 20%; transform: rotate(10deg) scale(0.8); }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    padding: var(--navbar-height) 1.5rem 4rem;
    text-align: center;
}

/* Hero con foto de fondo (estilo Michelle & Tonye) */
.hero.section-bg-hero {
    position: relative;
    background-image: url("assets/photos/PCR54177.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero.section-bg-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(250, 250, 248, 0.6);
    z-index: 0;
}

.hero.section-bg-hero .hero-content {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-title-image {
    max-width: 420px;
    width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    opacity: 0.95;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--border);
    margin: 0 auto 1.25rem;
}

.hero-date {
    font-size: 1.25rem;
    color: var(--text-soft);
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}

.hero-location {
    font-size: 1rem;
    color: var(--text-soft);
    margin-bottom: 2.5rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 64px;
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text);
    display: block;
    letter-spacing: 0.02em;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-note {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin-top: 1rem;
}

.scroll-down {
    display: inline-block;
    margin-top: 2.5rem;
    color: var(--text-soft);
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.scroll-down:hover {
    opacity: 1;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.65rem 1.75rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    font-family: inherit;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--text);
    color: var(--bg);
}

.btn-primary:hover {
    background: var(--text-soft);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--text-soft);
    color: var(--text-soft);
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

/* ===== SECTIONS ===== */
.section {
    padding: 7rem 1.5rem;
}

.section.bg-white {
    background-color: #f2f1ef !important;
    background-image: none !important;
}

/* Secciones con foto de fondo */
.section.section-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section.section-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(250, 250, 248, 0.7);
    z-index: 0;
}

.section.section-bg .container {
    position: relative;
    z-index: 1;
}

.section-bg-historia {
    background-image: url("assets/photos/PCR54194.jpg");
}

.section-bg-itinerario {
    background-image: url("assets/photos/PCR54110.jpg");
    background-position: 0% center;
}

.section-bg-ubicacion {
    background-image: url("assets/photos/PCR53765.jpg");
}

.section-bg-transporte {
    background-image: url("assets/photos/PCR53793.jpg");
}

.section-bg-cartagena {
    background-image: url("assets/photos/PCR54355.jpg");
    background-position: center 65%;
}

.section-bg-maquillistas {
    background-image: url("assets/photos/PCR54352.jpg");
}

.section-bg-regalos {
    background-image: url("assets/photos/PCR54355.jpg");
}

.section-bg-faq {
    background-image: url("assets/photos/PCR54498.jpg");
}

/* Solo el hero muestra foto de fondo; el resto: alternancia gris / blanco roto */
.section.section-bg {
    background-color: #d4d2ce;
    background-image:
        repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(255,255,255,.5) 2px, rgba(255,255,255,.5) 4px),
        repeating-linear-gradient(90deg, transparent 0, transparent 2px, rgba(0,0,0,.04) 2px, rgba(0,0,0,.04) 4px);
    background-size: 4px 4px;
}

/* Alternar fondo: secciones pares (2ª, 4ª…) gris; impares (3ª, 5ª…) blanco roto */
.main-content > section:nth-of-type(even) {
    background-color: #d4d2ce;
    background-image:
        repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(255,255,255,.5) 2px, rgba(255,255,255,.5) 4px),
        repeating-linear-gradient(90deg, transparent 0, transparent 2px, rgba(0,0,0,.04) 2px, rgba(0,0,0,.04) 4px);
    background-size: 4px 4px;
}
.main-content > section:nth-of-type(odd):not(.hero) {
    background-color: #f2f1ef;
    background-image: none;
}

/* Cartagena: una sola sección con fondo liso (sin textura de cuadritos) */
.section-cartagena {
    background-color: #f2f1ef !important;
    background-image: none !important;
}

.container {
    max-width: 680px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-soft);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

/* ===== SCHEDULE / TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    margin-left: 2.5rem;
    padding-left: 5rem;
}

/* Barra vertical más marcada */
.timeline::before {
    content: "";
    position: absolute;
    left: 3rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--text-soft);
    border-radius: 2px;
}

.timeline-node {
    position: relative;
    padding-left: 1.5rem;
    padding-bottom: 1.75rem;
}

.timeline-node:last-child {
    padding-bottom: 0;
}

/* Nodos centrados sobre la barra (centro del punto = centro de la barra 4px) */
.timeline-marker {
    position: absolute;
    left: calc(3rem - 5rem + 2px - 7px);
    top: 0.35rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--text);
    border: 3px solid var(--bg-section, #fff);
    box-sizing: border-box;
}

.timeline-node--day .timeline-marker {
    display: none;
}

.timeline-node--day {
    padding-left: 0;
    min-height: 3rem;
}

/* Días a la izquierda de la barra */
.timeline-node--day .timeline-content {
    position: absolute;
    left: -5rem;
    top: 0;
    width: 2.75rem;
    margin-top: 0;
}

.timeline-node--day:first-child .timeline-content {
    margin-top: 0;
}

.timeline-node--day .timeline-day-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin: 0;
    padding: 0;
    border: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
    color: var(--text-soft);
    line-height: 1.4;
}

.timeline-content {
    font-size: 0.95rem;
    color: var(--text-soft);
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.timeline-day-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    color: var(--text);
}

.timeline-content p {
    margin: 0.25rem 0 0;
    line-height: 1.6;
}

.timeline-content .event-dresscode {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.event-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.event-details p {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0;
}

.event-dresscode {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.pinterest-link {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ===== LINKS ===== */
.link-gold,
a.link-gold {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.link-gold:hover {
    color: var(--text);
}

.belleza-contact {
    font-size: 0.95rem;
    color: var(--text-soft);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.75rem;
}

/* ===== HOTEL ===== */
.hotel-info-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 560px;
    margin: 0 auto;
}

.hotel-discount {
    padding: 1.5rem 0;
    border: none;
    border-radius: 0;
    text-align: center;
}

.hotel-discount h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.hotel-discount p {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.hotel-options-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 0.75rem;
}

.hotel-options-list li {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.hotel-options-list a {
    color: var(--accent);
    text-decoration: none;
}

.hotel-options-list a:hover {
    text-decoration: underline;
}

.map-container-small {
    border-radius: 6px;
    overflow: hidden;
    height: 320px;
    border: none;
}

.map-container-small iframe {
    width: 100%;
    height: 100%;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }

/* ===== CARTAGENA / PLACES ===== */
.places-to-visit-section {
    margin-bottom: 3rem;
}

.places-section-title {
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.section-note {
    font-size: 0.9rem;
    color: var(--text-soft);
    text-align: center;
    margin-bottom: 1.5rem;
}

.google-form-embed {
    max-width: 640px;
    margin: 1.5rem auto 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.google-form-embed iframe {
    display: block;
    min-height: 600px;
}

.transport-mailto-btn {
    display: inline-block;
    margin: 1rem 0;
}

.transport-email-data {
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
}

.transport-email-cta {
    margin-bottom: 0.75rem;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.transport-email-fallback {
    margin-top: 2rem;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.transport-email-fallback h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.transport-email-fallback p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-soft);
}

.transport-email-fallback p:last-of-type {
    margin-top: 0.75rem;
}

.transport-fields-list {
    margin: 0.5rem 0 0 1.25rem;
    padding: 0;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.transport-fields-list li {
    margin-bottom: 0.25rem;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.place-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
}

.place-card:hover {
    opacity: 0.95;
}

.place-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    opacity: 0.95;
}

.place-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 1.25rem 0.25rem;
    margin: 0;
}

.place-card p {
    font-size: 0.9rem;
    color: var(--text-soft);
    padding: 0 1.25rem 1.25rem;
    line-height: 1.6;
    margin: 0;
}

.recommendations-grid {
    display: grid;
    gap: 2rem;
    max-width: 560px;
    margin: 2rem auto 0;
}

/* Cartagena: subsecciones colapsables */
.cartagena-collapse-item {
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    background: transparent;
}
.cartagena-collapse-btn {
    width: 100%;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    font-family: inherit;
    transition: background 0.2s ease;
}
.cartagena-collapse-btn:hover {
    background: rgba(0, 0, 0, 0.03);
}
.cartagena-collapse-icon {
    font-size: 1.25rem;
    color: var(--text-soft);
    transition: transform 0.2s ease;
}
.cartagena-collapse-item.active .cartagena-collapse-icon {
    transform: rotate(45deg);
}
.cartagena-collapse-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.cartagena-collapse-item.active .cartagena-collapse-content {
    max-height: 2000px;
}
.cartagena-collapse-content .recommendation-content,
.cartagena-collapse-content .cartagena-tours {
    padding: 0 1.25rem 1.25rem 1.25rem;
    border-top: 1px solid var(--border);
}
.cartagena-collapse-content .cartagena-tours {
    margin-top: 0;
    padding-top: 1.25rem;
    border-top: none;
}

.cartagena-tours {
    max-width: 560px;
    margin: 2.5rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.tours-contact-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-soft);
}

.tours-contact-item {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.recommendation-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 1.5rem 0;
}

.recommendation-header h3 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.recommendation-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.recommendation-item p {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.recommendation-item:last-child p {
    margin-bottom: 0;
}

.shopping-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.shopping-list li {
    margin-bottom: 0.35rem;
    color: var(--text-soft);
    font-size: 0.95rem;
}

/* ===== STORY ===== */
.story-container {
    max-width: 560px;
    margin: 0 auto;
}

.story-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem 0;
}

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

.placeholder-badge {
    display: inline-block;
    background: transparent;
    color: var(--text-soft);
    padding: 0.4rem 0;
    border-radius: 0;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

.story-placeholder h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.story-text {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.story-divider {
    width: 40px;
    height: 1px;
    background: var(--border);
    margin: 1.5rem 0;
}

.story-note {
    background: transparent;
    border: none;
    border-top: 1px solid var(--border);
    padding: 1rem 0;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-soft);
}

/* Ocultar screenshot en versión corta; en versión larga se ve el de .story-text-long */
.story-placeholder > .story-screenshot {
    display: none;
}
.story-screenshot {
    float: right;
    max-width: 170px;
    margin: 0.25rem 0 0.75rem 1rem;
}


.story-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    border: 1px solid var(--border);
}

.story-screenshot figcaption {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-soft);
    font-style: italic;
}

.story-placeholder::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 480px) {
    .story-screenshot {
        max-width: 140px;
        margin-left: 0.75rem;
    }
}

.story-text-long {
    margin-top: 1rem;
}

.story-text-long p {
    margin-bottom: 1rem;
}

.story-text-long p:last-child {
    margin-bottom: 0;
}

.btn-chismosos {
    clear: both;
    display: block;
    margin-top: -1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    color: #9a7d3d;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.btn-chismosos:hover {
    color: var(--text-soft);
    border-color: #9a7d3d;
    background: rgba(154, 125, 61, 0.12);
}

/* ===== FAQ ===== */
.faq-container {
    max-width: 560px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--bg-section);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    font-family: inherit;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: transparent;
    opacity: 0.9;
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--text-soft);
    transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== GLOSARIO ===== */
.glossary {
    clear: both;
    display: block;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.glossary-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-soft);
}

.glossary-list {
    margin: 0;
}

.glossary-list dt,
.glossary-list dd {
    display: inline;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.6;
}

.glossary-list dt {
    font-weight: 600;
}

.glossary-list dd::before {
    content: " ";
}

/* ===== MESA DE REGALOS ===== */
.gift-registry-container {
    max-width: 560px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.gift-registry-card {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.5rem;
}

.gift-registry-header {
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.gift-registry-header h3 {
    font-size: 1.15rem;
    font-weight: 500;
}

.gift-icon {
    font-size: 1.25rem;
}

.gift-description {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.gift-stores {
    display: grid;
    gap: 1rem;
}

.gift-store-item {
    padding: 1rem 0;
    background: transparent;
    border-radius: 0;
    border-left: 3px solid var(--accent-soft);
    padding-left: 1rem;
}

.gift-store-item h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.gift-store-item p {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.gift-account {
    background: var(--bg);
    padding: 1rem;
    border-radius: 4px;
    margin-top: 0.75rem;
    border-left: 3px solid var(--accent-soft);
}

.gift-account p {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.gift-note {
    background: transparent;
    border: none;
    border-top: 1px solid var(--border);
    padding: 0.75rem 0;
    margin-top: 1rem;
}

.gift-note p {
    font-size: 0.85rem;
    color: var(--text-soft);
}

/* ===== MAQUILLISTAS ===== */
.makeup-artists-container {
    max-width: 560px;
    margin: 0 auto;
}

.makeup-artist-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 1.5rem 0;
}

.makeup-artist-header h3 {
    font-size: 1.15rem;
    font-weight: 500;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.makeup-description {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.makeup-artists-list {
    display: grid;
    gap: 1rem;
}

.makeup-artist-item {
    padding: 1rem;
    background: var(--bg);
    border-radius: 4px;
    border-left: 3px solid var(--accent-soft);
}

.makeup-artist-item h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.makeup-contact {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.6;
}

.makeup-contact a {
    color: var(--accent);
    text-decoration: none;
}

.makeup-contact a:hover {
    text-decoration: underline;
}

.makeup-tips {
    background: transparent;
    padding: 1rem 0;
    margin-top: 1.5rem;
    border: none;
    border-top: 1px solid var(--border);
}

.makeup-tips h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.makeup-tips-list {
    list-style: none;
    padding-left: 0;
}

.makeup-tips-list li {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.makeup-tips-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--accent-soft);
}

.makeup-note {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 0.75rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.makeup-note p {
    font-size: 0.85rem;
    color: var(--text-soft);
}

/* ===== RSVP ===== */
.rsvp-container {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.text-sm { font-size: 0.9rem; }
.text-gray-500 { color: var(--text-soft); }

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-section);
    border-radius: 6px;
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-size: 1.35rem;
    font-weight: 500;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text-soft);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--text);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-section);
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-soft);
}

.text-xs { font-size: 0.8rem; }

/* ===== FOOTER ===== */
/* Imagen PCR53793 visible hasta abajo (antes del footer) */
.bottom-bg-image {
    min-height: 55vh;
    background-image: url("assets/photos/PCR53793.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 769px) {
    .bottom-bg-image {
        min-height: 130vh;
    }
}

.footer {
    background: transparent;
    color: var(--text-soft);
    padding: 3rem 1.5rem 2rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 680px;
    margin: 0 auto 2rem;
}

.footer-column h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-column a {
    color: var(--accent);
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links .social-icon-insta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    text-decoration: none;
}
.social-links .social-icon-insta:hover {
    color: var(--accent);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-soft);
}

.text-gray-400 { color: var(--text-soft); }

/* ===== SECTION NEXT (botón siguiente sección) ===== */
.section-next {
    text-align: center;
    margin-top: 2.5rem;
    padding-bottom: 0.5rem;
}

.section-next .btn {
    min-width: 180px;
}

/* ===== MAIN CONTENT PADDING (navbar tope) ===== */
.main-content {
    padding-top: var(--navbar-height);
}

.section-wrapper section,
.hero {
    scroll-margin-top: var(--navbar-height);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .hero.section-bg-hero {
        background-position: 30% center;
    }
    .section.section-bg {
        background-position: 30% center;
    }
    .section.section-bg-cartagena {
        background-position: 30% 65%;
    }
    .section.section-bg-itinerario {
        background-position: 0% center;
    }
    .flying-macaw {
        width: 80px;
        height: 80px;
    }
    .macaw-extracted {
        width: 80px;
        height: 80px;
    }
    .navbar-menu {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        background: transparent;
        flex-direction: column;
        padding: 0 1.5rem;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: none;
        box-shadow: none;
    }

    .navbar-menu.active {
        max-height: 80vh;
        padding: 1.5rem;
        background: var(--bg-section);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .navbar-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border);
    }

    .navbar-menu li:last-child {
        border-bottom: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title-image {
        max-width: 320px;
    }

    .section {
        padding: 5rem 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}
