* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'MontserratLight';
    src: url(../fonts/Montserrat-Light.ttf);
}

@font-face {
    font-family: 'Lora';
    src: url(../fonts/Lora.ttf);
}

@font-face {
    font-family: 'MontserratRegular';
    src: url(../fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: 'PTSerif';
    src: url(../fonts/PTSerif-Regular.ttf);
}

@font-face {
    font-family: 'PlayFair';
    src: url(../fonts/Playfair.ttf);
}

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

:root {
    --marron-pastel: rgba(238, 226, 216, 0.7);
    --fuente-principal: rgb(229, 229, 229);
    --fondo-web: rgb(235, 230, 230);
    --color-titles: rgb(43, 41, 41);
}

body {
    margin: auto;
    font-family: 'MontserratLight';
    animation: fadeIn .6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

header {
    width: 100%;
    margin: 0;
    position: relative;
    z-index: 999;
}



.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 50px 90px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(255, 255, 255, 1);
    transition: 
        padding 0.4s ease,
        background-color 0.4s ease,
        backdrop-filter 0.4s ease;
}

.navbar-scrolled {
    padding: 20px 90px;
    background-color: rgba(177, 160, 145,0.7);
    backdrop-filter: blur(4px);
}


.ul_link {
    display: flex;
    gap: 30px;
}

.link {
    position: relative;
    display: inline-block;
}

.link a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s ease-in-out;
    display: inline-block;
}

.link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: rgb(177, 160, 145);
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

.link:hover::after {
    width: 100%;
}

.link a:hover {
    color: #b1a091;
}

.hero-banner {
    width: 100%;
    height: auto;
    animation: slideInLeft 0.8s ease-out;
    padding-top: 180px;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.flex-column-title {
    margin-top: 100px;
    margin-left: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.h2-title-column h2 {
    font-size: 28px;
    font-weight: 550;
}

.h1-title-column {
    font-size: 70px;
    max-width: 600px;
    color: rgb(43, 41, 41);
    font-family: 'Lora';
}


.site-text p {
    max-width: 310px;
    font-size: 22px;
    font-weight: 400;
}

.site-text-photo {
    display: flex;
    justify-content: space-between;
    margin: 0px 220px 0px 90px;
}


.img-photo img {
    max-width: 900px;
    position: relative;
    z-index: 1;
    height: auto;
    margin-bottom: -90px;
    border-radius: 5px;
    box-shadow: 2px 5px 39px 0px rgba(0,0,0,0.41);
    transition: transform 0.4s ease;
    overflow: hidden;
    transition: transform 0.5s ease;
    object-fit: cover;
    transform-origin: center center;
}


@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.button-confirm {
    padding: 25px; 
    margin-top: 30px;
    background-color: var(--marron-pastel);
    border: 1px solid rgb(156, 143, 130);
    border-radius: 30px;
    color: var(--color-titles);
    font-size: 16px;
    font-weight: 700;
    font-family: 'MontserratLight';
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.button-confirm:hover {
    transform: scale(1.05);
    transition: all .3s ease-in-out;
}

.nuestra-historia {
    width: 100%;
    background-color: var(--marron-pastel);
    padding: 20px;
    transform: translateX(-80px);
    transition: all .5s ease-out;

}

.nuestra-historia.show {
    opacity: 1;
    transform: translateX(0);
}

.flex-historia-amor {
    display: flex;
    gap: 50px;
}

.title-sections {
    font-size: 26px;
    color: var(--color-titles);
    margin-top: 250px;
    letter-spacing: .5px;
}

.title-sections h2 {
    font-size: 40px;
    text-align: left;
    margin-top: -130px;
    max-width: 800px;
}

.title-sections span {
    font-size: 19px;
    font-weight: 450;
    letter-spacing: .5px;
}

.row-photos {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-wrap: wrap;
}

.text-section-historia-amor p {
    max-width: 900px;
    margin-top: 200px;
    letter-spacing: .5px;
    margin-bottom: 90px;
}

.flex-img-historia-amor {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.flex-img-historia-amor img {
    border-radius: 5px;
    box-shadow: 2px 5px 39px 0px rgba(0,0,0,0.41);
    max-width: 330px;
    margin-top: 0px;
}


.lightbox .lb-close {
    top: 10px !important;
    right: 350px !important;
    bottom: auto !important;
    left: auto !important;
    position: absolute !important;
}

.como-llegar {
    padding: 120px;
}

.como-llegar h1 {
    color: var(--color-titles);
    font-weight: 550;
    font-size: 45px;
    margin-bottom: 80px;
    max-width: 1200px;
}

.ceremonia-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
}

.img-ceremonia img:first-child {
    max-width: 530px;
    border-radius: 5px;
    box-shadow: 2px 5px 39px 0px rgba(0,0,0,0.41);
}

.flex-como-llegar {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.flex-icon-iglesia {
    display: flex;
    align-items: center;
    gap: 5px;
}

.flex-column-icons {
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
    gap: 5px;
}

.ceremonia-flex-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
    margin-left: 60px;
}

.text-ceremonia {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease-out;
    position: relative;
}

.ceremonia-flex {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease-out;
    position: relative;
}

.ceremonia-flex.show {
    opacity: 1;
    transform: translateX(0);
}

.text-ceremonia-2 {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1.5s ease-out;
    position: relative;
}

.text-ceremonia-2.show {
    opacity: 1;
    transform: translateX(0);
}

.text-ceremonia.show {
    opacity: 1;
    transform: translateX(0);
}

.text-ceremonia h2 {
    font-size: 33px;
    color: var(--color-titles);
}

.text-ceremonia h2 span {
    font-size: 47px;
    letter-spacing: .5px;
    color:#a39588;
}

.text-ceremonia-2 h2 span {
    font-size: 47px;
    letter-spacing: .5px;
    color:#a39588;
}

.text-iglesia a {
    text-decoration: none;
    color: black;
}

.text-iglesia span {
    text-decoration: underline;
}

.footer-web {
    background-color: var(--marron-pastel);
    padding: 50px;
}

.flex-footer {
    display: flex;
    justify-content: space-between;
}

.contactanos {
    margin-top: 30px;
}

.contactanos h2 {
    font-size: 35px;
}

.contactanos p {
    font-size: 20px;
    margin: 20px 0px;
}

.contactanos p span {
    font-size: 23px;
}

.ul_link_footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link_footer {
    position: relative;
    display: inline-block;
}

.link_footer a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s ease-in-out;
    display: inline-block;
}

.link_footer::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: #b1a091;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

.link_footer:hover::after {
    width: 100%;
}

.link_footer a:hover {
    color: #b1a091;
}

.flex-icon-anillo-text {

    display: flex;
    align-items: center;
    gap: 5px;
}

.creador-web-footer p {
    font-size: 16px;
    padding-top: 110px;
}

.creador-web-footer p a {
    text-decoration: none;
    color: black;

}

.faq-container {
    max-width: 800px;
    margin: 120px auto;
    padding: 20px;
    font-family: 'MontserratLight';
  }
  
  .faq-container h1 {
    text-align: center;
    font-size: 36px;
    color: var(--color-titles);
    margin-bottom: 40px;
  }
  
  .faq-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  
  .faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 20px;
    padding: 25px;
    letter-spacing: .5px;
    color: var(--color-titles);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
  }
  
  .faq-question:hover {
    background-color: rgba(226, 204, 184, 0.2);
    border-radius: 5px;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 18px;
    padding: 0 25px;
    color: #444;
    transition: max-height 0.5s ease, padding 0.4s ease;
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px;
  }
  
  .arrow {
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .arrow {
    transform: rotate(180deg);
  }

  .faq-container h4 {
    color: rgb(124, 113, 103);
    margin-bottom: 10px;
  }
  

/* Mantenimiento web */

.img-Mantenimiento img {
    width: 600px;
}

.flexPrincipalMantenimiento {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 150px;
    margin-top: 190px;
}

.containerPrincipal {
    display: flex;
    justify-content: center;
    align-items: center;
}

.textoPrincipal h1 {
    font-weight: 700;
    font-family: 'MontserratRegular';
    color: rgb(63, 61, 61);
    font-size: 70px;
    max-width: 800px;
    margin-bottom: 30px;
}

.textoPrincipal h1 span {
    color: rgb(63, 61, 61);
    font-size: 150px;
}

.textoPrincipal p{
    max-width: 600px;
    font-size: 35px;
    letter-spacing: 1px;
    color: rgb(73, 70, 70);
}

.flexRRSS {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 100px;
}

.titulo-contador {
    margin: 0 auto;
}

.titulo-contador h2 {
    text-align: center;
}

.contador {
    font-family: 'MontserratRegular';
    font-size: 3rem;
    color: #fff;
    background-color:#a39588;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    justify-content: center;
    display: flex;
    max-width: 600px;
    justify-content: center;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  

  .contador-boda {
    position: absolute;
    top: 450px;
    left: 1230px;
    transform: translateX(-50%);
    font-family: 'MontserratRegular';
    font-size: 2rem;
    color: #fff;
    background-color:rgba(180, 166, 153, 0.6);
    padding: 10px 50px;
    border-radius: 10px;
    display: inline-block;
    max-width: 600px;
    text-align: center;    
}

.contador-boda h2 {
    font-size: 1.8rem;
    text-align: center;
    padding: 10px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 10px; 
    cursor: pointer;
    z-index: 1000;
    position: absolute;
    top: 30px;
    right: 30px;
    transition: all 0.3s ease-in-out;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: black;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.hamburger span:first-child {
    display: block;
    width: 70%; 
    height: 2px;
    background-color: black;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}


.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 0px;
}

.hamburger.active span:nth-child(2) {
    transform: rotate(-45deg);
    width: 70%;
    position: relative;
    top: -8px;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: 40px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'MontserratLight';
    margin-bottom: 150px;
}

form h2 {
    font-weight: normal;
    font-size: 30px;
    margin-bottom: 1.5rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgb(194, 178, 162);
    border-radius: 0;
    font-size: 14px;
    margin-top: 0.5rem;
    box-sizing: border-box;
}

select[name="ninos"],
textarea {
    width: 10%;
    padding: 0.75rem;
    border: 1px solid rgb(194, 178, 162);
    border-radius: 0;
    font-size: 14px;
    margin-top: 0.5rem;
    box-sizing: border-box;
}



input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #968a7f;
  color: #333;
  border: 2px solid #a3968a;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

input[type="checkbox"],
input[type="radio"] {
    margin-right: 0.5rem;

}

input[type="radio"],
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #968a7f;
  border-radius: 50%;
  margin-right: 0.5rem;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
}

input[type="checkbox"] {
    border-radius: 4px;
  }

  
input[type="radio"]::before,
input[type="checkbox"]::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color:#968a7f;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

input[type="checkbox"]::before {
    border-radius: 2px;
}

input[type="radio"]:checked::before,
input[type="checkbox"]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}

label {
    font-size: 16px;
    line-height: 1.6;
    display: inline-block;
    vertical-align: middle;
  }

#acompananteCampos {
    margin-top: 1rem;
    margin-bottom: 20px;
}

#mensajeConfirmacion {
    display: none;
    margin-top: 2rem;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #5a4e45;
    opacity: 0;
    transition: opacity 1s ease;
}

#mensajeConfirmacion.visible {
    display: block;
    opacity: 1;
}


.nombreLabel label:first-child {
    margin-top: 20px;
}

.transporteUtilizaras label:first-child {
    margin-bottom: 10px;
}

.llevoAcompañante {
    margin: 25px 0px;
}

button[type="submit"] {
    display: block;
    margin: 2rem auto 0;
    padding: 0.75rem 2rem;
    font-size: 16px;
    border: 1px solid #968a7f;
    background: transparent;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'MontserratLight';
}

button[type="submit"]:hover {
    background-color: #b3a69b;
    color: #fff;
    font-family: 'MontserratLight';
}

    #audio-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #968a7f;
        border: none;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 9999;

        transition: transform 0.2s ease;
    }

    #audio-button:hover {
        transform: scale(1.08);
    }

    /* Estilo de los iconos */
    #audio-button svg {
        width: 28px;
        height: 28px;
        fill: white;
    }


.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .gallery a {
    display: block;
    width: 530px;
  }

  .gallery img {
    width: 100%;
    height: auto;
    cursor: pointer;
  }

  .fancybox-button {
    color: #968677 !important;
  }

@media (max-width: 1024px) {
    .navbar {
        padding: 30px 20px;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
    }

    select[name="ninos"],
        textarea {
            width: 20%;
            padding: 0.75rem;
            border: 1px solid rgb(194, 178, 162);
            border-radius: 0;
            font-size: 14px;
            margin-top: 0.5rem;
            box-sizing: border-box;
}
    
    form {
        padding: 0px 20px;
    }

    .hamburger {
        top: 28px;
        display: flex;
        right: 20px;
    }

    .ul_link {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: white;
        text-align: center;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        padding: 20px 0;
    }

    .ul_link.active {
        display: flex;
    }

    .flex-column-title {
        margin: 50px 40px 0;
    }

    .site-text-photo {
        flex-direction: column;
        margin: 0 40px;
        gap: 80px;
    }

    .img-photo img {
        max-width: 100%;
    }

    .flex-historia-amor {
        flex-direction: column;
        gap: 60px;
    }

    .text-section-historia-amor p {
        margin-top: 0;
    }

    .flex-img-historia-amor {
        flex-direction: column;
        gap: 30px;
    }

    .ceremonia-flex,
    .ceremonia-flex-2 {
        flex-direction: column;
        gap: 30px;
        margin-left: 0;
    }

    .como-llegar {
        padding: 60px 30px;
    }

    .footer-web {
        padding: 40px 30px;
    }

    .flex-footer {
        flex-direction: column;
        gap: 40px;
    }

    .contador-boda {
        left: 50%;
        top: auto;
        bottom: 20px;
        transform: translateX(-50%);
        font-size: 2rem;
        padding: 10px 20px;
        max-width: 90%;
    }

    .contador-boda h2 {
        font-size: 22px;
    }
}


/* Móviles (hasta 550px) */
@media (max-width: 550px) {
    .navbar {
        padding: 20px 20px;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
    }

    .faq-container {
        margin-top: 20px;
    }
    
    #audio-button {
        width: 60px;
        height: 60px;
    }

      #audio-button svg {
        width: 32px;
        height: 32px;
    }

    .hamburger {
        top: 30px;
        display: flex;
        right: 20px;
    }

    .ul_link {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color:white;
        text-align: center;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        padding: 20px 0;
    }

    .ul_link.active {
        display: flex;
    }

    .flex-column-title {
        margin: auto;
        margin-top: -90px;
        text-align: left;
        padding: 10px;
        max-width: 400px;
    }

    .flex-column-title img {
        display: none;
    }

    .button-confirm {
        margin: 0 auto;
        display: flex;
        margin-top: 30px;
    }

    .h2-title-column h2 {
        font-size: 20px;
    }

    .h1-title-column {
        font-size: 40px;
        color:#2e2a26;
        padding: 20px 0px;
        font-family: 'Lora';
    }

    .site-text p {
        font-size: 16px;
        padding: 0px;
        text-align: left;
    }

    .button-confirm {
        padding: 15px 20px;
        font-size: 14px;
    }

    .img-photo img {
        max-width: 100%
    }

    .flex-historia-amor {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .title-sections {
        font-size: 20px;
        margin-top: 250px;
    }

    .lb-close {
        display: none !important;
    }

    .title-sections h2 {
        font-size: 1.8rem;
    }

    .title-sections span {
        font-size: 1.1rem;
    }

    .text-section-historia-amor p {
        margin-top: -50px;
        font-size: 16px;
    }

    .row-photos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 1rem;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
      }
      
      .row-photos img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: cover;
        border-radius: 8px;
      } 
    
      .modal img {
        width: 90vw;
        height: auto;
        max-height: 80vh;
        object-fit: contain;
    }
    
      .modal .close,
      .modal .prev,
      .modal .next {
        font-size: 2rem;
        top: 10px;
    }
    
      .modal .close {
        right: 20px;
    }
    
      .modal .prev {
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    
      .modal .next {
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    
      .modal-content {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .flex-historia-amor img {
        max-width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }
    

    .como-llegar {
        padding: 40px 20px;
    }

    .como-llegar h1 {
        font-size: 24px;
    }

    .ceremonia-flex,
    .ceremonia-flex-2 {
        flex-direction: column;
        gap: 20px;
        margin: 0;
    }

    .img-ceremonia img:first-child {
        max-width: 100%;
    }

    .text-ceremonia h2,
    .text-ceremonia-2 h2 {
        font-size: 24px;
    }

    .text-ceremonia h2 span,
    .text-ceremonia-2 h2 span {
        font-size: 30px;
    }

    .footer-web {
        padding: 30px 20px;
    }

    .flex-footer {
        flex-direction: column;
        gap: 20px;
    }

    .contactanos h2 {
        font-size: 24px;
    }

    .contactanos p,
    .contactanos p span {
        font-size: 16px;
    }

    .ul_link_footer {
        align-items: center;
    }

    .link_footer a {
        font-size: 14px;
    }

    .contador-boda {
        left: 50%;
        top: auto;
        bottom: 20px;
        font-size: 2rem;
        padding: 10px 25px;
        max-width: 450px;
        margin-bottom: 80px;
        position: relative;
    }

    .contador-boda h2 {
        font-size: 25px;
    }

    .creador-web-footer {
        margin-top: -120px;
    }

    .creador-web-footer p {
        font-size: 13px;
        text-align: center;
    }

    form {
        padding: 0px 20px;
        margin-top: -30px;
    }

    button[type="submit"] {
        display: block;
        margin: 2rem auto 0;
        padding: 0.75rem 2rem;
        font-size: 16px;
        border: 1px solid #968a7f;
        background: transparent;
        border-radius: 9999px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'MontserratLight';
    }
    
    button[type="submit"]:hover {
        background-color: #b3a69b;
        color: #fff;
        font-family: 'MontserratLight';
    }

    /* Pagina mantenimiento */
    .flexPrincipalMantenimiento {
        flex-direction: column;
        margin: 30px 20px;
        margin-top: 120px;
        text-align: center;
      }
    
      .containerPrincipal {
        flex-direction: column;
        align-items: center;
      }
    
      .img-Mantenimiento img {
        width: 100%;
        max-width: 300px;
        height: auto;
      }
    
      .textoPrincipal h1 {
        font-size: 28px;
        margin: 20px 0;
      }
    
      .textoPrincipal h1 span {
        font-size: 60px;
      }
    
      .textoPrincipal p {
        font-size: 16px;
        max-width: 100%;
      }
    
      .titulo-contador {
        margin: 20px auto;
        padding: 0 20px;
      }
    
      .titulo-contador h2 {
        font-size: 18px;
        text-align: center;
      }
    
      .contador {
        font-size: 1.5rem;
        padding: 10px;
        max-width: 90%;
        margin: 20px auto;
      }
    
      .flexRRSS {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin: 30px auto;
      }
    
      .icons-rrss img {
        width: 30px;
        height: 30px;
      }

        .ul_link.white-bg {
        background-color: white !important;
        }

        .ul_link.brown-bg {
            background-color: rgba(180, 163, 125, 0.6) !important;
        }

}

.timeline-scroll {
  padding: 80px 20px;
  background-color: var(--marron-pastel);
  text-align: center;
}

.timeline-title {
  font-size: 40px;
  color: var(--color-titles);
  margin-bottom: 50px;
}

.timeline-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  font-family: 'MontserratLight';
  color: #5a4e45;
  font-size: 18px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 5px;
  transition: transform 0.3s ease;
  text-align: center;
}


.timeline-card h3 {
  font-size: 25px;
  margin-bottom: 10px;
  color: #a39588;
}


.timeline-card p {
  font-size: 16px;
  margin: 0;
  line-height: 1.4;
}

.timeline-card p strong {
    font-size: 22px;
}

.timeline-card:hover {
  transform: scale(1.05);
  background-color: #f9f5f1;
}

.swiper {
  max-width: 1400px;
  margin: 0 auto; 
  padding: 0 20px;
  overflow: hidden;
}

.swiper-slide {
  max-width: 300px; 
  flex-shrink: 0;
  scroll-snap-align: center; 
}

.swiper-slide {
  transition: transform 0.3s ease;
}

.swiper-slide.active-slide {
  transform: scale(1.05);
}

.desliza-text {
    margin-top: 40px;
    color: grey;
}

.fa-map-marker-alt {
  margin-right: 6px;
}

.toggle-section {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.toggle-section.show {
  max-height: 500px; 
  opacity: 1;
}

.loader {
  border: 4px solid #f3f3f3; 
  border-top: 4px solid #a69888; 
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.formulario-asistencia {
    margin-top: 160px;
    min-height: 50vh; 
    display: flex; 
    justify-content: center;
    align-items: center; 
    flex-direction: column; 
    padding: 80px 20px; 
}

.hidden {
    display: none !important; 
}


.visible {
    display: block !important;
}


#loading-spinner {
    margin-top: -140px !important; 
    text-align: center;
}


#loading-spinner p {
    font-weight: 600; 
    color: #5a4e45; 
    margin-top: 0px;
}


#mensajeConfirmacion h2 {
    font-size: 32px;
}

#mensajeConfirmacion p {
    font-size: 18px;
}


@media (max-width: 600px) {
    
   
    #mensajeConfirmacion {
        padding: 50px 10px !important; 
    }

    #mensajeConfirmacion h2 {
        font-size: 24px !important;
    }

   
    #mensajeConfirmacion p {
        font-size: 16px !important; 
        line-height: 1.5; 
        margin-top: 10px !important;
    }
    
    
    #mensajeConfirmacion a {
        padding: 8px 15px !important;
        font-size: 14px;
        margin-top: 20px !important;
    }

    .navbar-footer {
        display: none;
    }

    .contactanos h2 {
        text-align: center;
        font-size: 25px;
    }
}

.confirm-btn {
    padding: 10px 15px;
    background-color: #5a4e45; 
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: 'MontserratRegular', sans-serif;
    text-transform: uppercase;
}

.confirm-btn:hover {
    background-color: #7b6d63; 
}

#codigoConfirmacion {
    height: 40px; 
    line-height: 40px;
}

#codigoSection label {
    display: block !important;
    margin: 10px 0px; 
}

.ceremonia-flex.slide-right-banquete {
    transform: translateX(100px) !important; 
    transition: all 1.5s ease-out !important; 
}

.ceremonia-flex.slide-right-banquete.show {
    transform: translateX(0) !important;
}