/* ============================================
   BODA4 — BOHEMIO RÚSTICO ELEGANTE — REDISEÑO
   Cada sección tiene un estilo visual único
   ============================================ */

/* ===== VARIABLES DE DISEÑO ===== */
:root {
    --terracota: #C97B5C;
    --terracota-dark: #A0613E;
    --terracota-light: #D99A82;
    --arena: #E8D5B7;
    --arena-light: #F0E0CC;
    --oliva: #6B6B47;
    --oliva-light: #8A8A65;
    --crema: #FFF5EB;
    --crema-dark: #F5E6D3;
    --kraft: #C4A882;
    --kraft-dark: #A88D6A;
    --marron: #5C4033;
    --marron-light: #7A5C4D;

    --font-title: 'Amatic SC', cursive;
    --font-body: 'Nunito', sans-serif;
    --font-accent: 'Sacramento', cursive;
    --font-serif: 'Playfair Display', serif;

    --shadow-kraft: 0 4px 20px rgba(92, 64, 51, 0.15);
    --shadow-terracota: 0 6px 30px rgba(201, 123, 92, 0.25);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--crema);
    color: var(--marron);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100vw;
}

/* ===== CANVAS HOJAS SECAS ===== */
#leaves-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.7;
}

/* ===== SCROLL REVEAL ===== */
.scroll-reveal-boho {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-boho.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   WELCOME OVERLAY — FONDO IMAGEN
   ============================================ */
.image-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    overflow: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.wlc-bg-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Responsive background images (Igual al modelo 3) */
@media (min-width: 1081px) {
    .image-overlay {
        align-items: flex-end;
        /* Mueve el contenido hacia abajo */
        padding-bottom: 80px;
        /* Separación desde el borde inferior */
    }
}

@media (max-width: 1080px) {
    .wlc-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        max-width: none;
        aspect-ratio: unset;
        display: block;
    }

    .image-overlay-content {
        padding-top: 25vh;
        /* Empujar el contenido hacia abajo para que no tape el logo SA */
    }
}

.image-overlay.is-opening {
    animation: imageFadeOut 1.2s ease forwards;
}

@keyframes imageFadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    40% {
        opacity: 1;
        transform: scale(1.02);
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
        visibility: hidden;
    }
}

/* CONTENIDO */
.image-overlay-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 90%;
    max-width: 1000px;
    animation: contentEntrada 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes contentEntrada {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.elegant-tag {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--marron);
    text-transform: uppercase;
    margin-bottom: 25px;
    opacity: 0.9;
}

.contenedor-nombre-elegant {
    width: 100%;
    text-align: center;
    padding: 0 10px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.elegant-guest-name {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--marron);
    line-height: 1.1;
    text-transform: capitalize;
    text-shadow: 0 4px 15px rgba(255, 255, 255, 0.7);
}

.elegant-pases {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 30px;
}

.elegant-pases .pases-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--oliva);
    font-weight: 600;
}

.elegant-pases .pases-count {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--terracota);
    font-style: italic;
}

/* BOTÓN DE ABRIR */
.btn-elegant-open {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: var(--marron);
    border: 1px solid var(--marron);
    padding: 16px 45px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 8px;
    cursor: pointer;
    transition: all 0.5s ease;
    margin-top: 45px;
}

.btn-elegant-open:hover {
    background: var(--marron);
    color: var(--crema);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(92, 64, 51, 0.2);
}

/* ============================================
   BOTÓN DE MÚSICA
   ============================================ */
.music-boho-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--terracota);
    background: rgba(255, 245, 235, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-terracota);
}

.music-boho-btn:hover {
    background: var(--terracota);
    transform: scale(1.1);
}

.music-boho-btn:hover svg {
    fill: var(--crema);
}

.music-boho-btn svg {
    width: 22px;
    height: 22px;
    fill: var(--terracota);
    transition: fill 0.3s ease;
}

.music-boho-btn .icon-pause {
    display: none;
}

.music-boho-btn.playing .icon-play {
    display: none;
}

.music-boho-btn.playing .icon-pause {
    display: block;
}

.music-boho-btn.playing {
    animation: musicPulseBoho 2s ease-in-out infinite;
}

@keyframes musicPulseBoho {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(201, 123, 92, 0.3);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(201, 123, 92, 0);
    }
}

/* ============================================
   HERO — HIGH-END AGENCY EDITORIAL
   ============================================ */
.hero-agency {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: var(--crema-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px;
}

.hero-agency-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: 25vw;
    color: var(--terracota-dark);
    opacity: 0.04;
    font-weight: 700;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    letter-spacing: -5px;
}

.hero-agency-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 900px) {
    .hero-agency-container {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-agency-img-block {
    width: 90%;
    max-width: 450px;
    height: 65vh;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    position: relative;
    box-shadow: -20px 20px 60px rgba(92, 64, 51, 0.2);
    z-index: 3;
}

@media (min-width: 900px) {
    .hero-agency-img-block {
        margin-right: -80px;
        /* Overlap effect */
    }
}

.hero-agency-img {
    width: 100%;
    height: 100%;
    background: url('assets/img/boda-mobile.webp') center/cover no-repeat;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-agency-img:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .hero-agency-img {
        background-image: url('assets/img/boda-desktop.webp');
    }
}

.hero-agency-text-block {
    position: relative;
    z-index: 4;
    background: var(--crema);
    padding: 50px 40px;
    margin-top: -60px;
    width: 85%;
    max-width: 500px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 4px solid var(--terracota);
}

@media (min-width: 900px) {
    .hero-agency-text-block {
        margin-top: 0;
        text-align: left;
        padding: 60px;
        transform: translateY(40px);
    }
}

.agency-monogram {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--terracota-dark);
    display: block;
    margin-bottom: 10px;
}

.agency-names {
    font-family: var(--font-serif);
    color: var(--marron);
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.name-alejandro,
.name-sofia {
    font-size: clamp(2rem, 10vw, 4.5rem);
    font-weight: 400;
}

.agency-amp {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 12vw, 4rem);
    color: var(--terracota);
    margin: -10px 0;
    opacity: 0.8;
}

@media (min-width: 900px) {
    .name-alejandro {
        margin-left: 0;
    }

    .name-sofia {
        margin-left: 0;
    }

    .agency-amp {
        margin-left: 0;
    }
}

.agency-divider {
    width: 40px;
    height: 2px;
    background: var(--terracota);
    margin: 25px auto;
}

@media (min-width: 900px) {
    .agency-divider {
        margin: 25px 0;
    }
}

.agency-date {
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 5px;
    color: var(--marron);
    font-weight: 700;
    margin-bottom: 5px;
}

.agency-loc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--oliva);
    text-transform: uppercase;
}

.hero-verse {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    white-space: nowrap;
    animation: verseFadeIn 2s ease-out forwards;
    opacity: 0;
}

.hero-verse span {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-style: italic;
    color: var(--marron);
    opacity: 0.55;
    letter-spacing: 1px;
    font-weight: 400;
}

.hero-verse em {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--terracota);
    opacity: 0.45;
    letter-spacing: 1.5px;
    font-style: normal;
    font-weight: 600;
}

@keyframes verseFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Flores Decorativas Hero */
.hero-flores-deco {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 400px;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.hero-flores-deco-top {
    position: absolute;
    top: 50px;
    left: -60px;
    width: 380px;
    z-index: 5;
    pointer-events: none;
    transform: scaleX(-1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

@media (max-width: 520px) {
    .hero-verse {
        flex-direction: column;
        gap: 2px;
        white-space: normal;
        text-align: center;
        max-width: 90%;
    }

    .hero-verse span {
        font-size: 0.68rem;
    }

    .hero-verse em {
        font-size: 0.6rem;
    }
}

/* ============================================
   SECCIÓN TÍTULOS COMUNES
   ============================================ */
.section-sub-boho {
    font-family: var(--font-accent);
    font-size: 1.6rem;
    color: var(--terracota);
    display: block;
    text-align: center;
    margin-bottom: 5px;
}

.section-title-boho {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--marron);
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* ============================================
   CONTADOR — BLOQUES ELEGANTES
   ============================================ */
.countdown-boho {
    padding: 70px 20px;
    background: linear-gradient(180deg, var(--arena-light) 0%, var(--crema) 100%);
    text-align: center;
}

.countdown-top-deco {
    font-size: 0.9rem;
    color: var(--terracota);
    letter-spacing: 12px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.countdown-label-boho {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: var(--marron);
    display: block;
    margin-bottom: 25px;
}

.countdown-blocks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.cd-block {
    background: var(--marron);
    border-radius: 12px;
    padding: 20px 15px 15px;
    min-width: 85px;
    box-shadow: 0 8px 25px rgba(92, 64, 51, 0.2);
    position: relative;
}

.cd-block::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(201, 123, 92, 0.3);
    border-radius: 8px;
    pointer-events: none;
}

.cd-number {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--crema);
    line-height: 1;
}

.cd-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terracota-light);
    font-weight: 600;
    margin-top: 6px;
}

.cd-divider {
    height: 40px;
    display: flex;
    align-items: center;
    opacity: 0.5;
}

.cd-divider svg {
    width: 12px;
    height: 40px;
}

.countdown-bottom-deco {
    margin-top: 25px;
}

.countdown-bottom-deco svg {
    width: 180px;
}

/* ============================================
   PADRES — SPLIT SCREEN AGENCY
   ============================================ */
.padres-agency {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 80vh;
    background: var(--crema);
}

@media (min-width: 900px) {
    .padres-agency {
        flex-direction: row;
    }
}

.padres-agency-left {
    background: var(--terracota-dark);
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 900px) {
    .padres-agency-left {
        width: 35%;
        padding: 100px;
    }
}

.agency-vertical-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--crema);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 15px;
    margin: 0;
    z-index: 2;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.agency-watermark {
    position: absolute;
    font-family: var(--font-accent);
    font-size: 15vw;
    color: #FFF;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-15deg);
}

.padres-agency-right {
    padding: 80px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: var(--crema-dark);
}

.padre-agency-item {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 450px;
}

.lottie-agency-wrap {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--arena-light);
    border: 1px solid var(--terracota-light);
    padding: 10px;
}

.padre-agency-info {
    flex: 1;
}

.padre-role-agency {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--terracota-dark);
    display: block;
    margin-bottom: 5px;
}

.padre-names-agency {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--marron);
    line-height: 1.3;
    font-weight: 400;
}

.agency-connector {
    width: 2px;
    height: 50px;
    background: var(--terracota-light);
    opacity: 0.5;
}

/* ============================================
   CORTE DE HONOR — DARK MASONRY AGENCY
   ============================================ */
.honor-agency {
    padding: 120px 20px;
    background: var(--marron);
    color: var(--crema);
}

.honor-agency-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-sub-agency {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--terracota-light);
    display: block;
}

.section-title-agency {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--crema);
    letter-spacing: 2px;
}

.honor-agency-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .honor-agency-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
    }
}

.honor-agency-item {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s ease;
}

.honor-agency-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .honor-item-1 {
        transform: translateY(-30px);
    }

    .honor-item-2 {
        transform: translateY(30px);
    }

    .honor-item-3 {
        transform: translateY(-10px);
    }

    .honor-item-1:hover {
        transform: translateY(-40px);
    }

    .honor-item-2:hover {
        transform: translateY(20px);
    }

    .honor-item-3:hover {
        transform: translateY(-20px);
    }
}

.lottie-agency-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: invert(1) brightness(0.9) sepia(1) hue-rotate(330deg) saturate(3);
}

.honor-role-agency {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--terracota-light);
    display: block;
    margin-bottom: 15px;
}

.honor-names-agency {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--crema);
    font-style: italic;
}

/* ============================================
   CEREMONIA — TICKET VINTAGE
   ============================================ */
.ceremonia-boho {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(180deg, var(--arena-light) 0%, var(--crema-dark) 100%);
}

.ticket-card {
    max-width: 400px;
    margin: 0 auto;
    background: var(--crema);
    border: 2px dashed var(--terracota);
    border-radius: 16px;
    padding: 50px 30px;
    position: relative;
    box-shadow: var(--shadow-kraft);
}

/* Círculos perforados del ticket */
.ticket-perforado {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--arena-light);
}

.ticket-left {
    left: -13px;
}

.ticket-right {
    right: -13px;
}

.ticket-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ceremonia-lottie-boho {
    width: 100px;
    height: 100px;
}

.ticket-tag {
    font-family: var(--font-accent);
    font-size: 1.6rem;
    color: var(--terracota);
}

.ticket-venue {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--marron);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ticket-details {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--oliva);
    letter-spacing: 2px;
    line-height: 1.8;
}

/* Botones */
.btn-boho-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--terracota);
    color: var(--terracota);
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.4s ease;
    margin-top: 8px;
}

.btn-boho-outline:hover {
    background: var(--terracota);
    color: var(--crema);
    transform: scale(1.05);
    box-shadow: var(--shadow-terracota);
}

.btn-boho-filled {
    display: inline-block;
    padding: 14px 32px;
    background: var(--terracota);
    color: var(--crema);
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-terracota);
}

.btn-boho-filled:hover {
    background: var(--terracota-dark);
    transform: scale(1.05);
}

/* ============================================
   RECEPCIÓN — INVITACIÓN IMPRESA ELEGANTE
   ============================================ */
.recepcion-boho {
    padding: 80px 20px;
    background: var(--crema);
    display: flex;
    justify-content: center;
}

.invite-card {
    max-width: 420px;
    width: 100%;
}

.invite-border {
    border: 3px double var(--terracota);
    border-radius: 4px;
    padding: 8px;
}

.invite-inner {
    border: 1px solid rgba(201, 123, 92, 0.3);
    border-radius: 2px;
    padding: 45px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, var(--crema) 0%, var(--arena-light) 100%);
}

.recepcion-lottie-boho {
    width: 90px;
    height: 90px;
}

.invite-subtitle {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--terracota);
}

.invite-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--marron);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.invite-ornament svg {
    width: 100px;
    display: block;
    margin: 5px auto;
}

.invite-venue {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--marron);
    letter-spacing: 2px;
}

.invite-info {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--oliva);
    letter-spacing: 2px;
    line-height: 1.8;
}

/* ============================================
   CRONOGRAMA — ASYMMETRIC PATH
   ============================================ */
.cronograma-agency {
    position: relative;
    padding: 120px 20px;
    background: var(--crema);
    overflow: hidden;
}

.crono-agency-bg-split {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: var(--arena-light);
    z-index: 1;
}

@media (max-width: 767px) {
    .crono-agency-bg-split {
        width: 80px;
    }
}

.crono-agency-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 80px;
}

.crono-agency-header .section-title-agency {
    color: var(--marron);
}

.crono-agency-header .agency-watermark {
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--terracota);
    opacity: 0.05;
}

.timeline-agency {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-agency::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30%;
    width: 2px;
    background: var(--terracota-dark);
    opacity: 0.2;
}

@media (max-width: 767px) {
    .timeline-agency::before {
        left: 40px;
    }
}

.timeline-item-agency {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    width: 100%;
}

.timeline-time-agency {
    width: 30%;
    padding-right: 40px;
    text-align: right;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--terracota-dark);
}

@media (max-width: 767px) {
    .timeline-time-agency {
        width: 0;
        display: none;
    }
}

.timeline-node-agency {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--crema-dark);
    border: 2px solid var(--terracota);
    position: absolute;
    left: 30%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(92, 64, 51, 0.1);
}

@media (max-width: 767px) {
    .timeline-node-agency {
        left: 40px;
        width: 50px;
        height: 50px;
    }
}

.crono-lottie-editorial {
    width: 35px;
    height: 35px;
}

.timeline-content-agency {
    width: 70%;
    padding-left: 60px;
}

@media (max-width: 767px) {
    .timeline-content-agency {
        width: 100%;
        padding-left: 80px;
    }
}

.timeline-event-agency {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--marron);
    font-weight: 400;
}

/* Add time inside content for mobile */
@media (max-width: 767px) {
    .timeline-content-agency::before {
        content: "18:30 h";
        /* Default */
        display: block;
        font-family: var(--font-accent);
        font-size: 1.5rem;
        color: var(--terracota);
        margin-bottom: 5px;
    }

    .timeline-item-agency:nth-child(2) .timeline-content-agency::before {
        content: "20:30 h";
    }

    .timeline-item-agency:nth-child(3) .timeline-content-agency::before {
        content: "21:30 h";
    }

    .timeline-item-agency:nth-child(4) .timeline-content-agency::before {
        content: "22:00 h";
    }

    .timeline-item-agency:nth-child(5) .timeline-content-agency::before {
        content: "22:30 h";
    }

    .timeline-item-agency:nth-child(6) .timeline-content-agency::before {
        content: "23:00 h";
    }

    .timeline-item-agency:nth-child(7) .timeline-content-agency::before {
        content: "00:00 h";
    }
}

/* ============================================
   NUESTRA HISTORIA — KRAFT PHOTO SLIDER (CONSERVADO)
   ============================================ */
.historia-boho {
    padding: 80px 20px;
    background: var(--marron);
    text-align: center;
    overflow: hidden;
}

.historia-boho .section-title-boho {
    color: var(--crema);
}

.kraft-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 30px 20px 20px;
    scroll-snap-type: x mandatory;
    cursor: grab;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.kraft-slider::-webkit-scrollbar {
    display: none;
}

.kraft-photo-item {
    flex-shrink: 0;
    width: 250px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.4s ease;
}

.kraft-photo-item:hover {
    transform: translateY(-8px) rotate(-1deg);
}

.kraft-photo-frame {
    width: 100%;
    background: var(--kraft);
    padding: 15px 15px 10px;
    border-radius: 3px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    background-image:
        linear-gradient(135deg, var(--kraft) 0%, var(--arena) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(0, 0, 0, 0.03) 3px, rgba(0, 0, 0, 0.03) 6px);
}

.kraft-photo-frame img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

/* Washi Tape */
.washi-tape {
    position: absolute;
    width: 80px;
    height: 22px;
    top: -11px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    border-radius: 1px;
    opacity: 0.85;
    z-index: 3;
}

.washi-tape-1 {
    background: repeating-linear-gradient(90deg,
            rgba(201, 123, 92, 0.6),
            rgba(201, 123, 92, 0.6) 4px,
            rgba(201, 123, 92, 0.3) 4px,
            rgba(201, 123, 92, 0.3) 8px);
    transform: translateX(-50%) rotate(-3deg);
}

.washi-tape-2 {
    background: repeating-linear-gradient(90deg,
            rgba(107, 107, 71, 0.5),
            rgba(107, 107, 71, 0.5) 4px,
            rgba(107, 107, 71, 0.25) 4px,
            rgba(107, 107, 71, 0.25) 8px);
    transform: translateX(-50%) rotate(2deg);
}

.washi-tape-3 {
    background: repeating-linear-gradient(90deg,
            rgba(196, 168, 130, 0.7),
            rgba(196, 168, 130, 0.7) 4px,
            rgba(196, 168, 130, 0.35) 4px,
            rgba(196, 168, 130, 0.35) 8px);
    transform: translateX(-50%) rotate(-1deg);
}

.kraft-caption {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--arena);
    opacity: 0.8;
}

.swipe-boho {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255, 245, 235, 0.4);
    letter-spacing: 2px;
    display: block;
    margin-top: 20px;
    animation: swipePulse 2s ease-in-out infinite;
}

@keyframes swipePulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.7;
    }
}

/* ============================================
   DRESS CODE — ETIQUETA COLGANTE
   ============================================ */
.dresscode-boho {
    padding: 80px 20px;
    background: var(--crema);
}

.hangtag-container {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hangtag-string {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--kraft), var(--terracota));
    opacity: 0.5;
}

.hangtag-body {
    background: linear-gradient(145deg, var(--crema-dark), var(--arena-light));
    border: 2px solid var(--kraft);
    border-radius: 4px 4px 12px 12px;
    padding: 35px 25px 30px;
    text-align: center;
    box-shadow: var(--shadow-kraft);
    position: relative;
    width: 100%;
}

.hangtag-hole {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--kraft);
    background: var(--crema);
}

.dresscode-icon-boho {
    width: 100px;
    height: auto;
    margin: 10px auto 15px;
    display: block;
    filter: sepia(30%) saturate(80%);
}

.dresscode-type-boho {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 700;
    color: var(--marron);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.dresscode-cols-boho {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.dresscode-col-boho h4 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--terracota);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.dresscode-col-boho p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--oliva);
    line-height: 1.6;
}

.dresscode-quote-boho {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--terracota);
    opacity: 0.6;
}

/* ============================================
   REGALOS — EDITORIAL SPLIT (SOBRE + QR)
   ============================================ */
.regalos-agency {
    position: relative;
    padding: 120px 20px;
    background: var(--marron);
    overflow: hidden;
}

.regalos-agency-watermark {
    position: absolute;
    font-family: var(--font-serif);
    font-size: 30vw;
    color: var(--crema);
    opacity: 0.02;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
}

.regalo-block {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .regalo-block {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }

    .regalo-qr-block {
        flex-direction: row-reverse;
    }
}

.regalo-visual {
    flex-shrink: 0;
}

.regalo-img-agency {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.regalo-info {
    color: var(--crema);
}

.regalo-info .agency-tag {
    color: var(--terracota-light);
}

.regalo-title-agency {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--crema);
    margin-bottom: 15px;
    line-height: 1.1;
}

.regalo-text-agency {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--arena);
    line-height: 1.8;
}

/* Separator */
.regalo-separator {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin: 60px auto;
    max-width: 300px;
    position: relative;
    z-index: 2;
}

.regalo-sep-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 245, 235, 0.15);
}

.regalo-sep-icon {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: var(--terracota-light);
}

/* Banco detail */
.banco-agency-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 20px 0 25px;
}

.banco-name {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--terracota-light);
    font-weight: 400;
}

.banco-cta {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--arena);
    letter-spacing: 3px;
}

/* QR Frame */
.qr-frame-agency {
    width: 200px;
    height: 200px;
    padding: 15px;
    background: var(--crema);
    border: 1px solid rgba(201, 123, 92, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.qr-frame-agency img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn-agency-gold {
    display: inline-block;
    padding: 15px 40px;
    background: var(--terracota);
    color: var(--crema);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-agency-gold:hover {
    background: var(--terracota-dark);
    color: var(--crema);
    transform: translateY(-5px);
}

/* ============================================
   GALERÍA — POLAROID FRAME
   ============================================ */
.galeria-boho {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--marron) 0%, #3a261a 100%);
    text-align: center;
}

.polaroid-camera-frame {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    background: rgba(255, 245, 235, 0.05);
    border: 2px solid rgba(201, 123, 92, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.polaroid-camera-frame::after {
    content: '📸';
    position: absolute;
    bottom: -8px;
    right: -8px;
    font-size: 1.2rem;
}

.galeria-lottie-boho {
    width: 100px;
    height: 100px;
}

.galeria-title-boho {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--crema);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.galeria-text-boho {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 245, 235, 0.6);
    margin-bottom: 30px;
}

/* ============================================
   RSVP — BOHEMIO CON SELLO
   ============================================ */
.rsvp-boho {
    padding: 80px 20px;
    background: var(--crema);
    display: flex;
    justify-content: center;
}

.rsvp-form-boho {
    max-width: 500px;
    width: 100%;
    background: linear-gradient(145deg, var(--crema-dark), var(--arena-light));
    border: 2px solid rgba(201, 123, 92, 0.2);
    border-radius: 12px;
    padding: 50px 30px 40px;
    box-shadow: var(--shadow-kraft);
    position: relative;
}

.rsvp-seal {
    width: 50px;
    height: 50px;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--crema-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.rsvp-seal svg {
    width: 100%;
    height: 100%;
}

.rsvp-head-boho {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--marron);
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.rsvp-field-boho {
    margin-bottom: 22px;
}

.rsvp-field-boho label {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--terracota);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.rsvp-field-boho input,
.rsvp-field-boho select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--marron);
    background: var(--crema);
    border: 1px solid rgba(201, 123, 92, 0.3);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.rsvp-field-boho input:focus,
.rsvp-field-boho select:focus {
    border-color: var(--terracota);
    box-shadow: 0 0 0 3px rgba(201, 123, 92, 0.15);
}

.rsvp-field-boho input::placeholder {
    color: var(--kraft);
}

.btn-boho-submit {
    width: 100%;
    padding: 16px;
    background: var(--terracota);
    color: var(--crema);
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-terracota);
    margin-top: 10px;
}

.btn-boho-submit:hover {
    background: var(--terracota-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 123, 92, 0.35);
}

/* ============================================
   FOOTER — BOHEMIO
   ============================================ */
.footer-boho {
    padding: 50px 20px 40px;
    background: var(--marron);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-names-boho {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: var(--terracota-light);
}

.footer-date-boho {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 245, 235, 0.4);
    letter-spacing: 4px;
}

.footer-deco svg {
    width: 120px;
    margin-top: 10px;
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
    .hero-name-boho {
        font-size: 3rem;
    }

    .hero-amp-boho {
        font-size: 2rem;
    }

    .hero-date-text {
        font-size: 1.3rem;
    }

    .hero-ornamental-frame {
        width: 90%;
    }

    .section-title-boho {
        font-size: 2.2rem;
    }

    .cd-block {
        min-width: 75px;
        padding: 16px 10px 12px;
    }

    .cd-number {
        font-size: 2.8rem;
    }

    /* Cronograma lotties más grandes en móvil */
    .crono-lottie {
        width: 70px;
        height: 70px;
    }

    .crono-card {
        padding: 16px 15px;
    }

    .ticket-venue {
        font-size: 1.8rem;
    }

    .dresscode-cols-boho {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .kraft-photo-item {
        width: 220px;
    }

    .invite-inner {
        padding: 35px 20px;
    }
}

@media (max-width: 400px) {
    .cd-block {
        min-width: 65px;
        padding: 14px 8px 10px;
    }

    .cd-number {
        font-size: 2.4rem;
    }

    .crono-lottie {
        width: 60px;
        height: 60px;
    }
}

@media (min-width: 1024px) {
    .hero-name-boho {
        font-size: 5rem;
    }

    .hero-amp-boho {
        font-size: 3rem;
    }

    .section-title-boho {
        font-size: 3.5rem;
    }

    .cd-number {
        font-size: 4.5rem;
    }

    .crono-lottie {
        width: 80px;
        height: 80px;
    }
}

/* ============================================
   MOBILE FIXES FOR AGENCY LAYOUT
   ============================================ */
@media (max-width: 899px) {
    .hero-agency {
        padding: 30px 15px;
    }

    .hero-agency-img-block {
        width: 75%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 3 / 4;
        border-radius: 50vw 50vw 0 0;
    }

    .hero-agency-text-block {
        width: 90%;
        max-width: 400px;
        padding: 40px 20px;
        margin-top: -40px;
        margin-bottom: 60px;
        z-index: 10;
    }

    .hero-flores-deco {
        width: 45%;
        max-width: 200px;
        bottom: -20px;
        right: -20px;
    }

    .hero-flores-deco-top {
        width: 50%;
        max-width: 220px;
    }

    .padres-agency-left {
        padding: 50px 20px;
        min-height: 200px;
    }

    .agency-vertical-title {
        font-size: 3.5rem;
        writing-mode: horizontal-tb;
        transform: none;
        letter-spacing: 8px;
    }

    .agency-watermark {
        font-size: 28vw;
        transform: rotate(-5deg);
    }

    .padre-agency-item {
        flex-direction: column;
        text-align: center;
    }

    .agency-connector {
        width: 50px;
        height: 2px;
    }
}

/* ============================================
   TEXTURES FOR DARK BACKGROUNDS — ELEGANT CROSSHATCH
   ============================================ */
.honor-agency,
.ceremonia-agency,
.regalos-agency,
.galeria-boho {
    background-color: var(--marron);
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 40px,
            rgba(255, 245, 235, 0.015) 40px,
            rgba(255, 245, 235, 0.015) 41px),
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 40px,
            rgba(255, 245, 235, 0.015) 40px,
            rgba(255, 245, 235, 0.015) 41px);
}

.recepcion-bg-diagonal {
    background-image:
        repeating-linear-gradient(135deg,
            transparent,
            transparent 30px,
            rgba(255, 245, 235, 0.04) 30px,
            rgba(255, 245, 235, 0.04) 31px);
}

.padres-agency-left {
    background-image:
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 25px,
            rgba(255, 245, 235, 0.03) 25px,
            rgba(255, 245, 235, 0.03) 26px);
}

/* ============================================
   CEREMONIA — ASYMMETRIC AGENCY
   ============================================ */
.ceremonia-agency {
    position: relative;
    padding: 120px 20px;
    background: var(--marron);
    color: var(--crema);
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.ceremonia-agency .agency-watermark {
    position: absolute;
    font-family: var(--font-serif);
    font-size: 25vw;
    color: var(--crema);
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    white-space: nowrap;
}

.ceremonia-content-agency {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    width: 100%;
}

@media (min-width: 768px) {
    .ceremonia-content-agency {
        flex-direction: row;
        justify-content: space-between;
    }
}

.ceremonia-lottie-agency {
    width: 150px;
    height: 150px;
    filter: invert(1) sepia(1) hue-rotate(330deg) saturate(2);
}

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

@media (min-width: 768px) {
    .ceremonia-text-agency {
        text-align: left;
    }
}

.agency-tag {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--terracota-light);
    display: block;
    margin-bottom: 15px;
}

.agency-venue {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--crema);
    margin-bottom: 20px;
    line-height: 1.1;
}

.ceremonia-text-agency .agency-details {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--arena);
    letter-spacing: 2px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-agency-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--terracota-light);
    color: var(--terracota-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-agency-outline:hover {
    background: var(--terracota-light);
    color: var(--marron);
}

/* ============================================
   RECEPCIÓN — SPLIT AGENCY
   ============================================ */
.recepcion-agency {
    position: relative;
    padding: 120px 20px;
    background: var(--crema);
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.recepcion-bg-diagonal {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--terracota-dark);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .recepcion-bg-diagonal {
        clip-path: polygon(40% 0, 100% 0, 100% 100%);
    }
}

.recepcion-content-agency {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    max-width: 900px;
    width: 100%;
}

.recepcion-text-agency {
    text-align: center;
    background: var(--crema-dark);
    padding: 50px 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    max-width: 500px;
    width: 100%;
}

.recepcion-text-agency::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(201, 123, 92, 0.2);
    pointer-events: none;
}

/* Recepción venue styling */
.agency-venue-large {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--marron);
    line-height: 1;
    margin-bottom: 10px;
}

.agency-venue-sub {
    font-family: var(--font-accent);
    font-size: 2.2rem;
    color: var(--terracota);
    display: block;
    margin-bottom: 20px;
}

.recepcion-text-agency .agency-details {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--marron-light);
    letter-spacing: 2px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.recepcion-lottie-agency {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.btn-agency-filled {
    display: inline-block;
    padding: 12px 30px;
    background: var(--marron);
    color: var(--crema);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-agency-filled:hover {
    background: var(--terracota-dark);
}

/* ============================================
   DRESS CODE — EDITORIAL AGENCY
   ============================================ */
.dresscode-agency {
    position: relative;
    padding: 120px 20px;
    background: var(--crema-dark);
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.dresscode-watermark {
    position: absolute;
    font-family: var(--font-serif);
    font-size: 20vw;
    color: var(--terracota);
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.dresscode-content-agency {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.dresscode-header-agency {
    margin-bottom: 60px;
}

.dresscode-icon-agency {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    filter: sepia(20%) saturate(80%);
}

.dresscode-header-agency .section-title-agency {
    color: var(--marron);
}

.dresscode-type-agency {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: var(--terracota);
}

.dresscode-split-agency {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .dresscode-split-agency {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }
}

.dresscode-col-agency {
    flex: 1;
    padding: 0 20px;
}

.dresscode-line {
    width: 60px;
    height: 1px;
    background: var(--terracota);
}

@media (min-width: 768px) {
    .dresscode-line {
        width: 1px;
        height: auto;
    }
}

.dresscode-col-agency h4 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--terracota-dark);
    margin-bottom: 15px;
    font-weight: 400;
}

.dresscode-col-agency p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--marron);
    line-height: 1.6;
}

.dresscode-quote-agency {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--marron-light);
    font-style: italic;
    border-top: 1px solid rgba(201, 123, 92, 0.3);
    padding-top: 30px;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   SOBRESCRIBIR CRONOGRAMA MOBILE (VERSIÓN CENTRADA)
   ============================================ */
@media (max-width: 767px) {
    .timeline-agency::before {
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: none !important;
    }

    .timeline-item-agency {
        flex-direction: column !important;
        justify-content: center !important;
        text-align: center !important;
        align-items: center !important;
    }

    .timeline-item-agency.left-align,
    .timeline-item-agency.right-align {
        text-align: center !important;
        padding: 0 !important;
    }

    .timeline-time-agency {
        width: 100% !important;
        display: block !important;
        padding-right: 0 !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }

    .timeline-node-agency {
        position: relative !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto 15px !important;
    }

    .timeline-content-agency {
        width: 100% !important;
        padding-left: 0 !important;
    }

    .timeline-content-agency::before {
        display: none !important;
        content: none !important;
    }
}

/* ============================================
   NUEVAS SECCIONES PREMIUM (SOBRE, QR, GALERÍA)
   ============================================ */
.sobre-premium {
    padding: 100px 20px;
    background: var(--arena-light);
    /* Fondo claro pero NO blanco */
    position: relative;
}

.sobre-premium-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background: var(--crema-dark);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(92, 64, 51, 0.08);
    border: 1px solid rgba(201, 123, 92, 0.2);
}

@media (min-width: 768px) {
    .sobre-premium-container {
        flex-direction: row;
        padding: 60px;
    }
}

.sobre-premium-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.sobre-img-wrapper {
    width: 220px;
    position: relative;
}

.sobre-img-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px dashed var(--terracota-light);
    border-radius: 50%;
    animation: rotateDash 20s linear infinite;
}

@keyframes rotateDash {
    100% {
        transform: rotate(360deg);
    }
}

.sobre-img-wrapper img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.sobre-premium-text {
    flex: 1;
    text-align: center;
}

.agency-tag-gold {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--terracota);
    display: block;
    margin-bottom: 15px;
}

.sobre-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--marron);
    line-height: 1.1;
    font-weight: 400;
}

.sobre-divider {
    width: 60px;
    margin: 20px auto;
}

.sobre-premium-text p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--marron-light);
    line-height: 1.8;
}

.qr-premium {
    padding: 100px 20px;
    background: var(--marron);
    /* Fondo oscuro premium */
    color: var(--crema);
    position: relative;
    overflow: hidden;
}

.qr-premium-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(201, 123, 92, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.qr-premium-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .qr-premium-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.qr-premium-text {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .qr-premium-text {
        text-align: left;
    }
}

.agency-tag-light {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--terracota-light);
    display: block;
    margin-bottom: 15px;
}

.qr-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--crema);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 20px;
}

.qr-premium-text p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--arena);
    line-height: 1.8;
    margin-bottom: 30px;
}

.banco-card {
    background: rgba(255, 245, 235, 0.05);
    border: 1px solid rgba(255, 245, 235, 0.1);
    padding: 20px 30px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .banco-card {
        text-align: left;
    }
}

.banco-name-p {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--terracota-light);
    display: block;
}

.banco-cta-p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--crema);
    letter-spacing: 2px;
}

.btn-boho-gold {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    border: 2px solid var(--terracota-light);
    color: var(--terracota-light);
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.4s ease;
}

.btn-boho-gold:hover {
    background: var(--terracota-light);
    color: var(--marron);
}

.qr-premium-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.qr-frame-elegant {
    width: 240px;
    height: 240px;
    background: var(--crema);
    padding: 20px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.qr-corners {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(201, 123, 92, 0.3);
    border-radius: 6px;
    pointer-events: none;
}

.qr-frame-elegant img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.galeria-premium {
    padding: 100px 20px;
    background: var(--terracota-dark);
    /* Color diferente pero acorde al estilo */
    text-align: center;
}

.galeria-premium-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--crema-dark);
    padding: 60px 40px;
    border-radius: 30px 0 30px 0;
    /* Toque asimétrico bohemio */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(201, 123, 92, 0.3);
}

.galeria-icon-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--crema);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 10px 20px rgba(201, 123, 92, 0.2);
}

.galeria-title {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 700;
    color: var(--marron);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.galeria-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--marron-light);
    margin-bottom: 35px;
}

/* ============================================
   NUEVAS CORRECCIONES Y EFECTOS
   ============================================ */

/* 1. Tamaño de Lotties del Cronograma y nodos */
.crono-lottie-editorial {
    width: 80px !important;
    height: 80px !important;
}

.timeline-node-agency {
    width: 110px !important;
    height: 110px !important;
    background: var(--crema-dark) !important;
    border: 2px solid var(--terracota) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 25px rgba(201, 123, 92, 0.2) !important;
}

/* Detalle extra: anillo interior punteado rotatorio */
.timeline-node-agency::after {
    content: '' !important;
    position: absolute !important;
    top: 5px !important;
    left: 5px !important;
    right: 5px !important;
    bottom: 5px !important;
    border: 1px dashed var(--terracota-light) !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    animation: rotateDash 20s linear infinite !important;
}

/* 2. Centrar el lottie de la recepción */
.recepcion-lottie-agency {
    margin: 0 auto 20px !important;
}

/* 3. Texturas sutiles en fondos oscuros (Intercaladas) */
/* Textura bajando a la derecha (45deg) */
.honor-agency,
.qr-premium,
.padres-agency-left {
    background-image: repeating-linear-gradient(45deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.05) 2px,
            transparent 2px,
            transparent 12px) !important;
}

/* Textura bajando a la izquierda (-45deg) */
.historia-boho,
.galeria-premium,
.dresscode-agency {
    background-image: repeating-linear-gradient(-45deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.05) 2px,
            transparent 2px,
            transparent 12px) !important;
}

.sobre-premium-container {
    background-image: repeating-linear-gradient(45deg,
            rgba(0, 0, 0, 0.03),
            rgba(0, 0, 0, 0.03) 2px,
            transparent 2px,
            transparent 12px) !important;
}

/* Texturas para fondos intermedios (cremas) */
.padres-agency-right {
    background-image: repeating-linear-gradient(-45deg,
            rgba(201, 123, 92, 0.04),
            rgba(201, 123, 92, 0.04) 2px,
            transparent 2px,
            transparent 10px) !important;
}

.recepcion-text-agency {
    background-image: repeating-linear-gradient(45deg,
            rgba(201, 123, 92, 0.04),
            rgba(201, 123, 92, 0.04) 2px,
            transparent 2px,
            transparent 10px) !important;
}

/* 4. Efectos de aparición lateral (Scroll Reveal más natural) */
.scroll-reveal-boho.reveal-left {
    transform: translateX(-60px) translateY(10px);
}

.scroll-reveal-boho.reveal-right {
    transform: translateX(60px) translateY(10px);
}

@media (max-width: 767px) {
    .scroll-reveal-boho.reveal-left {
        transform: translateX(-30px) translateY(10px);
    }

    .scroll-reveal-boho.reveal-right {
        transform: translateX(30px) translateY(10px);
    }
}

.scroll-reveal-boho.is-visible {
    transform: translateX(0) translateY(0) !important;
    opacity: 1;
}

/* 5. Cronograma en 2 Columnas Verticales (Grid para PC y Móvil) */
.timeline-agency {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px 10px !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    padding-top: 20px !important;
}

.timeline-agency::before {
    display: block !important;
    content: '' !important;
    position: absolute !important;
    top: 20px !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 2px !important;
    background: linear-gradient(to bottom, transparent, var(--terracota-light) 10%, var(--terracota-light) 90%, transparent) !important;
    opacity: 0.5 !important;
    pointer-events: none !important;
}

.timeline-item-agency {
    width: 100% !important;
    flex-direction: column !important;
    margin-bottom: 0 !important;
    text-align: center !important;
    align-items: center !important;
    padding: 0 !important;
}

.timeline-item-agency.left-align,
.timeline-item-agency.right-align {
    text-align: center !important;
}

.timeline-time-agency {
    width: 100% !important;
    text-align: center !important;
    padding-right: 0 !important;
    margin-bottom: 10px !important;
    display: block !important;
    font-size: 1.4rem !important;
}

.timeline-node-agency {
    position: relative !important;
    left: auto !important;
    transform: none !important;
    margin: 0 auto 10px !important;
}

.timeline-content-agency {
    width: 100% !important;
    padding-left: 0 !important;
}

.timeline-content-agency::before {
    display: none !important;
    /* Evitar duplicar horas en móvil */
}

.timeline-event-agency {
    font-size: 1.2rem !important;
}

@media (max-width: 767px) {
    .timeline-agency {
        gap: 20px 10px !important;
    }

    .timeline-time-agency {
        font-size: 1.1rem !important;
        margin-bottom: 5px !important;
    }

    .timeline-node-agency {
        width: 80px !important;
        height: 80px !important;
    }

    .crono-lottie-editorial {
        width: 60px !important;
        height: 60px !important;
    }

    .timeline-node-agency::after {
        top: 3px !important;
        left: 3px !important;
        right: 3px !important;
        bottom: 3px !important;
    }

    .timeline-event-agency {
        font-size: 1rem !important;
    }
}

/* ============================================
   FLORES DECORATIVAS
   ============================================ */

/* Flor Hero — esquina inferior derecha */
.hero-flores-deco {
    position: absolute;
    bottom: -80px;
    right: -50px;
    width: 480px;
    height: auto;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 10px 25px rgba(92, 64, 51, 0.15));
    animation: floatFlower 6s ease-in-out infinite;
}

@media (min-width: 900px) {
    .hero-flores-deco {
        right: -160px;
        /* Desplazada más a la derecha en PC */
        bottom: -120px;
    }
}

@keyframes floatFlower {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(1.5deg);
    }
}

/* Flor Hero — esquina superior izquierda (oculta en PC, visible en móvil) */
.hero-flores-deco-top {
    position: absolute;
    top: -40px;
    left: -30px;
    width: 300px;
    height: auto;
    z-index: 10;
    pointer-events: none;
    transform: scaleX(-1) rotate(10deg);
    filter: drop-shadow(0 10px 25px rgba(92, 64, 51, 0.15));
    animation: floatFlowerTop 7s ease-in-out infinite;
    display: none;
    /* Oculta en PC */
}

@keyframes floatFlowerTop {

    0%,
    100% {
        transform: scaleX(-1) rotate(10deg) translateY(0);
    }

    50% {
        transform: scaleX(-1) rotate(11.5deg) translateY(-6px);
    }
}

@media (max-width: 767px) {
    .hero-flores-deco-top {
        display: block;
        top: -100px !important;
        left: -30px !important;
        right: auto !important;
        transform: scaleX(-1) rotate(-35deg) !important;
        width: 50% !important;
        max-width: 220px !important;
    }
}
/* FIJO PARA NOMBRES LARGOS */
.nombre-invitado {
    white-space: nowrap !important;
    overflow: hidden !important;
}
