/* ===== Variables ===== */
:root {
    --color-1: #5a5a5a;
    --color-2: #8a8a8a;
    --color-3: #d68b75;
    --color-4: #faf8f5;
    --color-5: #c47a64;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Open Sans', sans-serif;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-1);
    background-color: var(--color-4);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    transition: all 0.5s 0s ease;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
}

/* ===== Loader ===== */
.preloader-area {
    position: fixed;
    background: var(--color-4);
    z-index: 11000;
    height: 100%;
    width: 100%;
    overflow: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-area.hidden {
    opacity: 0;
    visibility: hidden;
}

.heart-loader {
    animation: heartbeat 1s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.3); }
    30% { transform: scale(1); }
    45% { transform: scale(1.2); }
    60% { transform: scale(1); }
}

/* ===== Botones ===== */
.boton {
    background: var(--color-3);
    color: #fff;
    text-transform: capitalize;
    font-family: var(--font-secondary);
    font-weight: 400;
    border-radius: 50px;
    line-height: 15px;
    font-size: 17px;
    padding: 18px 30px;
    box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.40);
    transition: all 0.5s 0s ease;
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.boton:hover {
    background: var(--color-5);
    text-decoration: none;
    color: #fff;
}

.title {
    width: 100%;
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--color-1);
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 0;
}

.subtitle {
    width: 100%;
    display: inline-block;
    font-family: var(--font-secondary);
    font-weight: 400;
    color: var(--color-3);
    font-size: 20px;
}

/* ===== Modales ===== */
.modal .modal-content {
    text-align: center;
    border: none;
    padding: 10px;
    color: #fff;
    border-radius: 40px;
    box-shadow: 0px 0px 15px 0px #444;
}

.modal .modal-content-2 {
    position: relative;
    border: double 2px transparent;
    background-image: linear-gradient(var(--color-1), var(--color-1)), radial-gradient(circle at bottom left, #c47a64, #d68b75, #e8b4a5);
    background-origin: border-box;
    background-clip: content-box, border-box;
    border-radius: 40px;
}

.modal .modal-content-2 p {
    color: var(--color-1);
    font-family: var(--font-secondary);
    font-weight: 400;
}

.modal .modal-content-2 .close {
    position: absolute;
    top: -15px;
    right: 0;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 37px;
    background-color: var(--color-2);
    opacity: 1;
    outline: none;
    font-size: 34px;
    font-weight: normal;
    box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.50);
    transition: all 0.5s 0s ease;
    border: none;
    text-shadow: none;
    z-index: 1070;
}

.modal .modal-content-2 .close:hover {
    background-color: var(--color-1);
    opacity: 1;
}

.modal .modal-content-2 .boton {
    outline: none;
    margin-bottom: 25px;
}

.modal .modal-content-2 .img-top-modal {
    position: relative;
    height: 70px;
}

/* ===== Modal Música ===== */
#modalMusica .modal-content {
    background: white;
    border: none;
    font-family: var(--font-primary);
    overflow: hidden;
}

#modalMusica .modal-content p {
    text-align: center;
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-weight: 400;
    font-size: 80px;
    line-height: 75px;
    color: var(--color-1);
    display: inline-block;
    width: 100%;
    position: relative;
    margin-bottom: 0;
    background: url('../img/ampersand.svg') center center no-repeat;
    background-size: 120px;
    background-position-y: 95px;
}

#modalMusica .modal-content p span {
    font-size: 30px;
    line-height: 30px;
    font-family: var(--font-secondary);
    color: var(--color-3);
    text-transform: initial;
}

#modalMusica .modal-content span.aclara-musica {
    font-size: 20px;
    color: var(--color-3);
    font-weight: 300;
    margin-top: 10px;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
    font-family: var(--font-secondary);
}

#modalMusica .boton {
    border: 1px solid var(--color-3);
    font-size: 15px;
    display: inline-block;
    text-transform: inherit;
}

#modalMusica .boton:hover {
    border: 1px solid var(--color-3);
    background-color: var(--color-4);
    color: var(--color-3);
}

#modalMusica .adorno {
    width: 340px;
    height: auto;
}

#modalMusica .adorno.adorno-1 {
    border-bottom: 1px solid var(--color-2);
}

#modalMusica .adorno.adorno-2 {
    border-top: 1px solid var(--color-2);
    margin-top: 35px;
}

/* ===== Portada ===== */
section.portada {
    width: 100%;
    padding-bottom: 0;
    background-size: cover;
    color: #fff;
    position: relative;
    z-index: 1;
}

section.portada .portada-picture {
    width: 55%;
    position: relative;
    background: url('../img/imagenPrincipal.jpg') left 1% center/1000px auto no-repeat;
    background-attachment: fixed;
    transition: opacity 0.3s ease;
}

section.portada .portada-container {
    width: 45%;
    background: var(--color-4);
    padding-bottom: 60px;
    position: relative;
}

section.portada .portada-container .portada-container-2 {
    width: 100%;
    max-width: 610px;
    background: var(--color-4);
    padding-bottom: 60px;
    position: relative;
}

section.portada .portada-picture::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 29, 27, 0.1);
    z-index: 0;
    top: 0;
    left: 0;
}

section.portada .portada-picture::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../img/curva_portada_vertical.svg');
    background-repeat: no-repeat;
    background-position: top right;
    z-index: 0;
    top: 0;
    right: -2px;
}

section.portada .adorno {
    position: absolute;
    height: auto;
}

section.portada .adorno-1 {
    position: absolute;
    width: 100%;
    height: auto;
    max-width: 400px;
    top: -50px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

section.portada .adorno-2 {
    position: absolute;
    width: 300px;
    height: auto;
    top: -1px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
}

section.portada .adorno-3 {
    position: absolute;
    width: 310px;
    height: auto;
    top: -10px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
}

section.portada .content-portada {
    width: 100%;
    z-index: 999;
    position: relative;
    padding-top: 120px;
}

section.portada .curva-separador {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
}

section.portada .row {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

section.portada .box-nombres-fecha-portada {
    background: url('../img/ampersand.svg') center center no-repeat;
    background-size: 190px;
    background-position-y: 120px;
    padding-bottom: 20px;
}

section.portada .content-portada span.fecha {
    display: inline-block;
    white-space: nowrap;
    width: auto;
    font-family: var(--font-primary);
    font-size: 29px;
    line-height: 25px;
    color: var(--color-3);
    padding: 5px 30px 10px;
    margin-bottom: 50px;
    margin-top: 40px;
    border: 2px solid;
    border-image-slice: 1;
    border-width: 1px;
    border-image-source: linear-gradient(to right, var(--color-4), var(--color-3), var(--color-4));
}

section.portada .content-portada h1 {
    width: 100%;
    text-align: center;
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-weight: 400;
    font-size: 80px;
    line-height: 85px;
    margin-bottom: 0;
    color: var(--color-1);
}

section.portada .box-nombres-fecha-portada h1:nth-of-type(2) {
    margin-top: -10px;
}

section.portada .box-frase-portada {
    margin-top: 25px;
}

section.portada .box-frase-portada p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 22px;
    text-align: center;
    color: var(--color-2);
}

section.portada .box-frase-portada p img {
    width: 30px;
    margin: 10px 0;
}

/* ===== Cuenta Regresiva ===== */
section.cuenta-regresiva {
    position: relative;
    height: 470px;
    margin-top: -200px;
    padding-top: 200px;
    background-color: transparent;
}

section.cuenta-regresiva::after {
    content: '';
    position: absolute;
    background: url('../img/curva01.svg') bottom center no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

section.cuenta-regresiva .box-aros {
    width: 430px;
    height: 430px;
    background: url('../img/img_circuloContador01.svg') center center no-repeat;
    position: relative;
    z-index: 99;
    top: -200px;
}

section.cuenta-regresiva .adorno {
    position: absolute;
    height: auto;
}

section.cuenta-regresiva .adorno-1 {
    position: absolute;
    width: 300px;
    top: -5px;
    left: 10px;
}

section.cuenta-regresiva .box-aros .box-circulo {
    width: 315px;
    height: 315px;
    padding: 20px;
}

section.cuenta-regresiva .box-aros .box-circulo span.falta {
    width: 100%;
    text-align: center;
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--color-2);
    font-size: 50px;
    line-height: 60px;
    margin-top: 30px;
}

section.cuenta-regresiva .box-aros .box-circulo .corazon-falta {
    width: 18%;
    margin-top: 5px;
    animation: heartbeat 1s ease-in-out infinite;
}

section.cuenta-regresiva .reloj {
    margin-top: 10px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 6px;
}

section.cuenta-regresiva .reloj-col {
    flex: 1;
    border-right: 1px solid var(--color-2);
    padding: 0 8px;
}

section.cuenta-regresiva .reloj .clearfix {
    display: none;
}

section.cuenta-regresiva .reloj-col.no-border {
    border: none;
}

section.cuenta-regresiva .reloj-col span.number {
    display: inline-block;
    width: 100%;
    color: var(--color-1);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 40px;
}

section.cuenta-regresiva .reloj-col span.time {
    display: inline-block;
    width: 100%;
    color: var(--color-2);
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 20px;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* ===== Grupo Invitados ===== */
.bloque-grupo-invitados {
    padding: 0px 0 50px;
    background-color: var(--color-4);
}

.bloque-grupo-invitados .card-grupo-invitados .card-content {
    text-align: center;
}

.bloque-grupo-invitados .pases-total {
    display: inline-block;
    width: 60px;
    height: 60px;
    font-size: 35px;
    line-height: 30px;
    padding: 10px;
    border-radius: 50%;
    background: var(--color-1);
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--font-primary);
    color: var(--color-4);
}

.bloque-grupo-invitados .titulo-grupo {
    margin: 0;
    font-size: 40px;
    font-family: var(--font-primary);
    color: var(--color-3);
}

.bloque-grupo-invitados .mensaje-grupo {
    margin: 0 0 10px 0;
    color: var(--color-1);
    font-family: var(--font-secondary);
    font-size: 20px;
    margin-top: 25px;
}

.bloque-grupo-invitados .lista-invitados {
    list-style: none;
    padding: 0;
    margin: 20px 0 12px 0;
    font-family: var(--font-secondary);
}

.bloque-grupo-invitados .invitado-item {
    display: block;
    font-size: 20px;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.04);
    margin: 6px auto;
    width: fit-content;
}

.bloque-grupo-invitados .acompanantes-info {
    margin-top: 6px;
    font-size: 17px;
    color: var(--color-3);
    font-family: var(--font-secondary);
}

/* ===== Ceremonia - Fiesta ===== */
section.ceremonia-fiesta {
    padding-bottom: 20%;
    position: relative;
    background: url('../img/lineas01.svg') center 0 no-repeat var(--color-4);
}

section.ceremonia-fiesta .adorno {
    position: absolute;
    height: auto;
}

section.ceremonia-fiesta .adorno-1 {
    position: absolute;
    width: 180px;
    top: 230px;
    left: -2px;
}

section.ceremonia-fiesta .adorno-2 {
    position: absolute;
    width: 195px;
    top: 250px;
    left: -1px;
    z-index: 1;
}

section.ceremonia-fiesta .adorno-3 {
    position: absolute;
    width: 190px;
    top: 250px;
    left: -2px;
    z-index: 1;
}

section.ceremonia-fiesta .anim-anillos {
    width: 175px;
    height: 175px;
    margin: 0 auto 20px;
    padding: 20px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0px 0px 15px -1px rgba(0, 0, 0, 0.40);
}

section.ceremonia-fiesta h3 {
    font-family: var(--font-primary);
    color: #FFF;
    font-size: 40px;
    display: inline-block;
    position: relative;
    min-width: 60%;
    padding: 10px 0;
    background-color: #b69579;
}

section.ceremonia-fiesta h3:before {
    background-image: url('../img/img_cinta01.svg');
    position: absolute;
    content: '';
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: right;
    height: 100%;
    width: 16px;
    left: -15px;
    top: 0;
}

section.ceremonia-fiesta h3:after {
    background-image: url('../img/img_cinta02.svg');
    position: absolute;
    content: '';
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: left;
    height: 100%;
    width: 16px;
    right: -15px;
    top: 0;
}

section.ceremonia-fiesta .info-col {
    margin-top: 30px;
}

section.ceremonia-fiesta .info-col .info-box {
    margin-bottom: 55px;
}

section.ceremonia-fiesta .info-col .info-box h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--color-1);
    font-size: 25px;
}

section.ceremonia-fiesta .info-col .info-box p {
    font-family: var(--font-secondary);
    font-weight: 400;
    color: var(--color-2);
    font-size: 20px;
    margin-bottom: 0;
}

section.ceremonia-fiesta .info-col .info-box a.boton {
    margin-top: 15px;
    display: inline-block;
    width: 50%;
}

section.ceremonia-fiesta .info-direccion {
    font-size: 16px;
    color: var(--color-2);
}

section.ceremonia-fiesta::after {
    background-image: url('../img/curva01.svg');
    position: absolute;
    content: '';
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: bottom center;
    height: 100%;
    width: 100%;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

/* ===== Confirmar Asistencia ===== */
section.confirmacion-asistencia {
    padding: 80px 0;
    text-align: center;
    background-color: var(--color-4);
}

section.confirmacion-asistencia .title {
    color: var(--color-1);
    font-family: var(--font-primary);
}

section.confirmacion-asistencia .subtitle {
    color: var(--color-3);
    font-family: var(--font-secondary);
}

section.confirmacion-asistencia .boton {
    display: inline-block;
}

/* ===== Galería ===== */
section.galeria {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    background-color: var(--color-4);
}

section.galeria .content-galeria {
    text-align: center;
}

section.galeria .anim-galeria {
    width: 70px;
    margin: 0 auto;
}

section.galeria .content-fotos {
    margin-top: 40px;
    position: relative;
}

section.galeria .content-fotos img {
    width: 100%;
}

section.galeria .content-fotos .polaroid a {
    outline: none;
}

section.galeria .content-fotos .polaroid {
    padding: 15px;
    padding-bottom: 100px;
    margin: 5px;
    background-color: #fff;
    box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.40);
    transition: all 0.5s 0s ease;
}

section.galeria .slick-slide:focus {
    outline: none !important;
}

section.galeria .slick-center .polaroid {
    background-color: var(--color-5) !important;
}

.content-fotos .shadow-left,
.content-fotos .shadow-right {
    display: none;
}

.slick-dots {
    bottom: -30px;
}

section.galeria .slick-dots li button:before {
    font-size: 45px !important;
    color: var(--color-5) !important;
    opacity: 0.60;
}

section.galeria .slick-dots li.slick-active button:before {
    opacity: 1;
}

/* ===== Fiesta ===== */
section.fiesta {
    background: url('../img/img_ondas03.svg') center top no-repeat;
    background-color: var(--color-4);
    padding-top: 14%;
    position: relative;
    padding-bottom: 17%;
}

section.fiesta .container {
    z-index: 999;
    position: relative;
}

section.fiesta .anim-musica {
    width: 75px;
    margin: 15px auto 40px auto;
}

section.fiesta .anim-vestuario {
    width: 95px;
    margin: 0 auto;
}

section.fiesta .anim-tips {
    width: 55px;
    margin: 0 auto;
}

section.fiesta:after {
    background-image: url('../img/img_ondas02.svg');
    position: absolute;
    content: '';
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: bottom center;
    height: 100%;
    width: 100%;
    bottom: -85px;
    z-index: 99;
}

section.fiesta .item-fiesta {
    margin-top: 60px;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

section.fiesta .item-fiesta h2 {
    color: var(--color-4);
    font-family: var(--font-secondary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 22px;
}

section.fiesta .item-fiesta p {
    color: var(--color-1);
    margin-bottom: 0;
    font-family: var(--font-secondary);
    font-weight: 300;
}

section.fiesta .item-fiesta a.boton {
    width: 85%;
}

section.fiesta .item-fiesta .content-item-fiesta {
    background-color: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    min-height: 400px;
    box-shadow: 0px 0px 15px 0px #ececec;
}

section.fiesta .content-anim-fiesta {
    height: 80px;
}

section.fiesta .item-fiesta .adorno {
    position: absolute;
    height: auto;
}

section.fiesta .item-fiesta .adorno.adorno-1 {
    position: absolute;
    top: -80px;
    left: -20px;
    z-index: 0;
    width: 230px;
}

/* ===== Regalos ===== */
section.regalos {
    padding-top: 14%;
    position: relative;
    padding-bottom: 10%;
    background-color: var(--color-4);
}

/* ===== Vestimenta ===== */
section.vestimenta {
    padding-top: 14%;
    position: relative;
    padding-bottom: 10%;
    background-color: var(--color-4);
}

section.vestimenta .adorno {
    position: absolute;
    height: auto;
}

section.vestimenta .adorno-1 {
    position: absolute;
    width: 180px;
    top: 230px;
    left: -2px;
}

section.vestimenta .adorno-2 {
    position: absolute;
    width: 195px;
    top: 250px;
    left: -1px;
    z-index: 1;
}

section.vestimenta .adorno-3 {
    position: absolute;
    width: 190px;
    top: 250px;
    left: -2px;
    z-index: 1;
}

section.vestimenta .title {
    margin-bottom: 10px;
}

section.vestimenta .anim-vestuario {
    width: 95px;
    margin: 1px auto 40px;
}

section.regalos .adorno {
    position: absolute;
    height: auto;
}

section.regalos .adorno-1 {
    position: absolute;
    width: 180px;
    top: 230px;
    left: -2px;
}

section.regalos .adorno-2 {
    position: absolute;
    width: 195px;
    top: 250px;
    left: -1px;
    z-index: 1;
}

section.regalos .adorno-3 {
    position: absolute;
    width: 190px;
    top: 250px;
    left: -2px;
    z-index: 1;
}

section.regalos .title {
    margin-bottom: 10px;
}

section.regalos .anim-regalos {
    width: 70px;
    margin: 1px auto 40px;
}

/* ===== Instagram ===== */
section.instagram {
    padding-top: 16%;
    padding-bottom: 16%;
    position: relative;
}

section.instagram .container {
    position: relative;
    z-index: 999;
}

section.instagram:before {
    background-image: url('../img/img_ondas05.svg');
    position: absolute;
    content: '';
    background-repeat: no-repeat;
    background-position: top center;
    height: 100%;
    width: 100%;
    top: -1px;
}

 section.instagram .title {
    color: var(--color-3);
    font-size: 45px;
    line-height: 55px;
}

section.instagram .subtitle {
    color: #fff;
}

section.instagram .hashtag {
    color: #fff;
    text-transform: lowercase;
    font-size: 55px;
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: 40px;
    display: inline-block;
}

section.instagram .anim-instagram {
    width: 60px;
    margin: 0 auto 15px;
}

section.instagram:after {
    background-image: url('../img/img_ondas06.svg');
    position: absolute;
    content: '';
    background-repeat: no-repeat;
    background-position: bottom center;
    height: 100%;
    width: 100%;
    bottom: -70px;
    z-index: 99;
}

/* ===== Footer ===== */
section.footer {
    position: relative;
    padding-bottom: 10%;
    padding-top: 12%;
    margin-top: 20px;
    background-color: var(--color-4);
}

section.footer .col-nombres-footer {
    background: url('../img/ampersand.svg') center center no-repeat;
    background-size: 200px;
    padding: 40px 0;
}

section.footer h4 {
    width: 100%;
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--color-1);
    font-size: 85px;
    text-transform: uppercase;
    padding-top: 1px;
}

section.footer .col-acciones-footer ul {
    font-family: var(--font-secondary);
    font-weight: 400;
    text-align: left;
}

section.footer .col-acciones-footer ul li {
    margin-bottom: 20px;
    text-align: right;
}

section.footer .col-acciones-footer ul a {
    color: var(--color-3);
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 20px;
    transition: all 0.5s 0s ease;
}

section.footer .col-acciones-footer ul a:hover {
    color: var(--color-2) !important;
    text-decoration: none;
}

/* ===== Firma ===== */
footer {
    background-color: var(--color-1);
    font-family: var(--font-secondary);
    font-weight: 400;
    padding: 20px 0;
}

footer p {
    width: 100%;
    text-align: center;
    font-size: 15px;
    margin-top: 1rem;
    color: #fff;
    font-family: var(--font-secondary);
    font-weight: 300;
}

footer .heart {
    color: var(--color-3);
}

/* ===== Control Música ===== */
#controlador-musica {
    position: fixed;
    z-index: 999;
    top: 10px;
    right: 0;
}

.music-anim-icon {
    width: 60px;
    height: 60px;
    cursor: pointer;
    background: var(--color-3);
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content:center;
}

/* ===== Sección Principal ===== */
.seccion-principal {
    background-color: var(--color-4);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    section.portada .portada-picture {
        width: 100%;
        height: 50vh;
        min-height: 300px;
        max-height: 460px;
        background-size: cover;
        background-position: top center;
        background-attachment: scroll;
    }

    section.portada .portada-container {
        width: 100%;
        min-height: auto;
    }

    section.portada .adorno-1,
    section.portada .adorno-2,
    section.portada .adorno-3 {
        display: none;
    }

    section.portada .content-portada h1 {
        font-size: 60px;
        line-height: 65px;
    }

    section.ceremonia-fiesta .adorno-1,
    section.vestimenta .adorno-1 {
        width: 85px;
        top: 250px;
    }

    section.ceremonia-fiesta .adorno-2,
    section.vestimenta .adorno-2 {
        width: 90px;
        top: 265px;
    }

    section.ceremonia-fiesta .adorno-3,
    section.vestimenta .adorno-3 {
        width: 88px;
        top: 265px;
    }

    section.regalos .adorno-1 {
        width: 90px;
        top: 240px;
    }

    section.regalos .adorno-2 {
        width: 95px;
        top: 255px;
    }

    section.regalos .adorno-3 {
        width: 92px;
        top: 255px;
    }
    section.instagram .title {
        font-size: 36px;
        line-height: 46px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

    p {
        line-height: 1.5;
    }

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    section.instagram .title {
        font-size: 28px;
        line-height: 38px;
    }
    .title {
        font-size: 40px;
        line-height: 50px;
    }

    .bloque-grupo-invitados .titulo-grupo {
        font-size: 44px;
    }

    .bloque-grupo-invitados .mensaje-grupo {
        font-size: 22px;
        line-height: 1.5;
        padding: 0 10px;
    }

    section.ceremonia-fiesta .anim-anillos {
        width: 200px;
        height: 200px;
    }

    section.ceremonia-fiesta .info-col .info-box p {
        font-size: 22px;
    }

    section.ceremonia-fiesta .info-direccion {
        font-size: 18px;
        margin-bottom: 15px;
    }

    section.ceremonia-fiesta .info-col .info-box a.boton {
        width: auto;
        margin-top: 20px;
        padding: 16px 28px;
    }

    section.galeria .content-fotos .polaroid {
        padding: 8px;
        padding-bottom: 30px;
        margin: 3px;
    }

    section.portada .content-portada h1 {
        font-size: 45px;
        line-height: 50px;
    }

    section.portada .content-portada {
        padding-top: 70px;
    }

    section.portada .box-nombres-fecha-portada {
        background-size: 140px;
    }

    section.portada .box-nombres-fecha-portada {
        background-position-y: 100px;
    }

    section.cuenta-regresiva {
        height: 350px;
        margin-top: -130px;
    }

    section.cuenta-regresiva .box-aros {
        width: 320px;
        height: 320px;
    }

    section.cuenta-regresiva .box-aros .box-circulo {
        width: 240px;
        height: 240px;
    }

    section.cuenta-regresiva .reloj-col span.number {
        font-size: 28px;
    }

    section.cuenta-regresiva .box-aros .box-circulo span.falta {
        font-size: 35px;
        line-height: 45px;
    }

    section.ceremonia-fiesta h3 {
        font-size: 30px;
        min-width: 80%;
    }

    section.footer h4 {
        font-size: 55px;
    }

    section.footer .col-acciones-footer ul {
        text-align: center;
    }

    section.footer .col-acciones-footer ul li {
        text-align: center;
    }

    section.fiesta .item-fiesta {
        padding: 0 15px;
    }
}

@media (max-width: 575px) {
    /*section.ceremonia-fiesta .adorno-1,
    section.vestimenta .adorno-1 {
        width: 70px;
        top: 230px;
    }

    section.ceremonia-fiesta .adorno-2,
    section.vestimenta .adorno-2 {
        width: 75px;
        top: 245px;
    }

    section.ceremonia-fiesta .adorno-3,
    section.vestimenta .adorno-3 {
        width: 72px;
        top: 245px;
    }*/

    section.regalos .adorno-1 {
        width: 85px;
        top: 225px;
    }

    section.regalos .adorno-2 {
        width: 90px;
        top: 240px;
    }

    section.regalos .adorno-3 {
        width: 87px;
        top: 240px;
    }

    section.portada .content-portada h1 {
        font-size: 35px;
        line-height: 40px;
    }

    section.portada .box-nombres-fecha-portada {
        background-size: 110px;
        background-position-y: 65px;
    }

    section.portada .content-portada span.fecha {
        font-size: 22px;
        margin-top: 20px;
        margin-bottom: 25px;
    }

    section.instagram .title {
        font-size: 24px;
        line-height: 34px;
    }
    section.portada .box-frase-portada p {
        font-size: 18px;
    }

    .title {
        font-size: 32px;
        line-height: 40px;
    }

    section.cuenta-regresiva {
        height: 320px;
        margin-top: -130px;
    }

    section.cuenta-regresiva .adorno-1 {
        width: 220px;
        left: 0;
    }

    section.cuenta-regresiva .box-aros {
        width: 300px;
        height: 300px;
    }

    section.cuenta-regresiva .box-aros .box-circulo {
        width: 225px;
        height: 225px;
    }

    section.cuenta-regresiva .reloj-col span.number {
        font-size: 22px;
    }

    section.cuenta-regresiva .reloj-col span.time {
        font-size: 13px;
    }

    section.cuenta-regresiva .box-aros .box-circulo span.falta {
        font-size: 22px;
        line-height: 30px;
        margin-top: 15px;
    }

    section.cuenta-regresiva .corazon-falta svg {
        width: 30px;
        height: 30px;
    }

    section.footer h4 {
        font-size: 50px;
    }

    section.footer {
        padding-bottom: 60px;
    }

    section.instagram .hashtag {
        font-size: 35px;
    }

    #modalMusica .modal-dialog {
        max-width: 320px;
        margin: 1.75rem auto;
    }

    #modalMusica .adorno {
        width: 280px;
    }

    #modalMusica .modal-content p {
        font-size: 42px;
        line-height: 45px;
        background-size: 70px;
        background-position-y: 100px;
    }

    #modalMusica .modal-content p span {
        font-size: 20px;
        line-height: 22px;
    }
}

/* ===== Formulario Confirmar Asistencia ===== */
#modalAsistencia #formAsistencia {
    padding: 0 30px 30px;
}

#modalAsistencia .modal-saludo {
    margin-bottom: 25px;
}

#modalAsistencia .modal-saludo h3 {
    font-family: var(--font-secondary);
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
}

#modalAsistencia .modal-saludo p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

#mensaje-sin-invitacion p {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

#bloque-ya-confirmado p {
    color: #fff;
    margin-bottom: 0;
}

#aviso-importante p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
}

#aviso-importante strong {
    color: #fff;
}

#host-controls {
    margin-bottom: 20px;
}

#host-controls .aviso-host {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

#modalAsistencia #formAsistencia .form-group > label {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#modalAsistencia #formAsistencia .custom-control-label {
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    color: #fff;
    margin-top: 6px;
}

#modalAsistencia .custom-control {
    margin-right: 15px;
    margin-bottom: 8px;
    min-height: 0;
}

#modalAsistencia .custom-control-input:checked ~ .custom-control-label::before {
    border-color: var(--color-3);
    background-color: var(--color-3);
}

#modalAsistencia .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(214, 139, 117, 0.25);
}

#modalAsistencia .opcion-descripcion {
    display: block;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    text-transform: none;
    letter-spacing: 0;
    margin-top: 2px;
}

/* Dentro de los bloques (fondo crema) el texto vuelve a color oscuro */
#modalAsistencia #formAsistencia .bloque-invitado .form-group > label,
#modalAsistencia #formAsistencia .bloque-invitado .custom-control-label {
    color: var(--color-1);
}

#modalAsistencia #formAsistencia .bloque-invitado .opcion-descripcion {
    color: var(--color-2);
}

.bloque-invitado {
    background: var(--color-4);
    border: 1px solid #efe7e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

#modalAsistencia #formAsistencia .bloque-invitado .opcion-salsa {
    display: none;
    margin: 8px 0 8px 26px;
    padding: 6px 0 6px 14px;
    border-left: 2px solid rgba(214, 139, 117, 0.55);
}

#modalAsistencia #formAsistencia .bloque-invitado .opcion-salsa.visible {
    display: block;
}

#modalAsistencia #formAsistencia .bloque-invitado .opcion-salsa-titulo {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-5);
    margin-bottom: 6px;
    display: block;
}

#modalAsistencia #formAsistencia .bloque-invitado .opcion-salsa .custom-control-label {
    font-size: 14px;
    font-weight: 400;
}

#modalAsistencia #formAsistencia .bloque-invitado .opcion-bebida {
    display: none;
    margin: 8px 0 8px 26px;
    padding: 6px 0 6px 14px;
    border-left: 2px solid rgba(214, 139, 117, 0.55);
}

#modalAsistencia #formAsistencia .bloque-invitado .opcion-bebida.visible {
    display: block;
}

#modalAsistencia #formAsistencia .bloque-invitado .opcion-bebida-titulo {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-5);
    margin-bottom: 6px;
    display: block;
}

#modalAsistencia #formAsistencia .bloque-invitado .opcion-bebida .custom-control-label {
    font-size: 14px;
    font-weight: 400;
}

.bloque-invitado-titulo {
    font-family: var(--font-secondary);
    color: var(--color-5);
    text-align: center;
    margin-bottom: 15px;
}
