/* Generales */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --color-primario: #bf0915;
    --color-secundario: #bf0915;
    --color-terciario: #bf0915;
    --color-cuarto: #bf0915;
    --color-quinto: #bf0915;
    --color-sexto: #bf0915;
}

.text-uppercase-desktop{
    text-transform: uppercase;
}

.container {
    max-width: 85vw;
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 19px;
}

h4 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 400;
}

.show-desktop {
    display: block;
}

.show-mobile {
    display: none  !important;
}

.btn {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 20px;
  color: white;
    background-color: var(--color-sexto);
    border-radius: 30px;
    padding: 10px 40px;
    border: 1px solid var(--color-sexto);
}

.btn:hover {
    color: white;
    background-color: var(--color-sexto);
    border: 1px solid white;
}

.btn:focus {
    box-shadow: none;
}

.btn-alt {
    font-family: 'Montserrat';
    color: black;
    background-color: var(--color-primario);
    border: 1px solid var(--color-primario);
    padding: 10px 40px;
}

.btn-alt:hover {
    color: white;
    background-color: var(--color-primario);
    border: 1px solid white;
}

.btn-white {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 20px;
    color: black;
    background-color: white;
    border-radius: 30px;
    padding: 10px 40px;
    border: 1px solid var(--color-secundario);
}

.btn-white:hover {
    color: black;
    background-color: var(--color-secundario);
    border: 1px solid black;
}

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

a:hover {
    text-decoration: none;
}

header {
    padding: 20px 0 20px 0;
    box-shadow: 3px 5px 20px 6px rgba(0, 0, 0, 0.2);
}

.col-logo {
    padding: 0 !important;
}

.titulo {
    font-family: "Playfair Display", regular;
    font-size: 50px;
    letter-spacing: 0.035em;
    font-weight: 600;
    margin-bottom: 2rem;
}

.subtitulo {
    font-family: 'Montserrat', "Ultra ligth";
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-sexto);
    margin-bottom: 20px;
}

#boton-menu-mobile {
    display: none;
}

header .col-logo {
    text-align: center;
}

header ul.menu {
    list-style: none;
    float: right;
    margin: 0;
    padding: 0;
    height: 100%;
}

header ul.menu li {
    margin-left: 30px;
}

header ul.menu li a {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 14px;
    color: #999;
    -webkit-transition: all 0.5s 0s ease;
    -moz-transition: all 0.5s 0s ease;
    -o-transition: all 0.5s 0s ease;
    transition: all 0.5s 0s ease;
}

header ul.menu li a:hover {
    text-decoration: none;
    color: var(--color-verde);
}

header .submenu-invitaciones .dropdown-menu.show .dropdown-item {
    font-size: 13px;
}

header .submenu-invitaciones .dropdown-menu.show {
    top: 10px !important;
}

header.fixed-top {
    background: #fff;
}

header.fixed-top > .container {
    max-width: 100vw;
    padding-right: 7vw;
}

/* Portada */
section.portada {
    margin-top: 100px;
    height: calc(100vh - 90px);
}

section.portada .contenedor-celular {
    aspect-ratio: 350 / 700;
    max-width: 350px;
    margin: 12px;
}

section.portada .pantalla-interna {
    top: 2%;
    left: 5%;
    right: 5%;
    bottom: 2%;
    border-radius: 10%;
}

section.portada .titulo-portada {
  font-family: "Lato", sans-serif;
    color: white;
    font-size: 54px;
    letter-spacing: 0.045em;
    font-weight: 900;
    margin-bottom: 2rem;


 

}

section.portada .subtitulo-portada {
 font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 28px;
    color: white;
    margin-bottom: 3rem;
}

section.portada .box-celu {
    padding-left: 15px;
}

.wrapper-rebote {
    display: inline-flex;
    align-items: center;
    animation: bounce 2s infinite;
    cursor: default;
}

/* El círculo blanco con la flecha */
.icon-circle {
    position: absolute;
    top: -20px;
    left: -26px;
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-right: -15px; /* Esto hace que se superponga al globo */
}

.globo-texto {
    font-family: "Montserrat", "Ultra ligth";
    background-color: #ffffff;
    color: black;
    padding: 12px 20px 12px 25px; /* Más padding a la izquierda por el círculo */
    border-radius: 10px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.2;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.globo-texto::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 22px;
    border-left: 16px solid transparent;
    border-right: 0px solid transparent;
    border-top: 8px solid #ffffff;
}

.ubi-goblo {
    position: absolute;
    z-index: 3;
    left: -20%;
    top: 44%;
}
/* Animación de rebote suave */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ---------- */

/* funcionalidad */

section.funcionalidad .item-funcionalidad {
    width: 25%;
    max-width: 25%;
    padding-right: 2rem;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

section.funcionalidad .item-funcionalidad p {
    max-width: 70%;
}

section.funcionalidad .titulo {
        font-family:  "Lato", sans-serif;
    font-size: 35px;
    font-weight: 00;
    margin-bottom: 2rem;
}

section.funcionalidad .title {
    font-family:  "Lato", sans-serif;
    font-size: 30px;
    margin-bottom: 1rem;
        font-weight: 600;
}


 




section.funcionalidad .descripcion {
    font-family: "Montserrat", Serif;
    font-size: 21px;
    font-weight: 300;
}

section.funcionalidad .logo-funcionalidad {
    width: 110px;
    position: relative;
    left: -22px;
    margin-bottom: 1rem;
}

/* ---------- */

/* Diseño y ejemplos */
section.personalizacion {
    padding-bottom: 5rem;
    background-color: #f4f4f4;
}

section.personalizacion .titulo {
    font-size: 42px;
    font-weight: 400;
}

section.personalizacion .titulo-ejemplo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    text-align: center;
}

section.personalizacion .descripcion-titulo {
    font-size: 20px;
}

section.personalizacion strong {
    font-weight: 600;
}

section.personalizacion .descripcion {
    font-size: 22px;
}

section.personalizacion .iconos {
    width: 110px;
    margin-bottom: 1rem;
}
section.personalizacion .contenedor-celular {
    margin: 0px auto;
}

section.personalizacion .icon-circle {
    width: 34px;
    height: 34px;
    top: -15px;
    left: -15px;
    border: 2px solid  var(--color-sexto) !important;
}

section.personalizacion .globo-texto {
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
}

section.personalizacion .globo-texto::after {
    bottom: -8px;
    right: 80%;
    left: 10%;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 10px solid var(--color-sexto);
}
/* Contenedor principal para centrar el celular en la pantalla */
.contenedor-celular {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 350 / 600;
    margin: 30px auto;
}

/* La imagen del marco del celular (debe ser un PNG transparente) */
.marco-celular {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

/* El área interna donde ocurre el scroll */
.pantalla-interna {
    position: absolute;
    top: 2%;
    left: 9%;
    right: 9%;
    bottom: 2%;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 1;
    background-color: #f0f0f0;
    border-radius: 7%;
}

/* La imagen larga que se va a scrollear */
.imagen-larga {
    width: 100%;
    display: block;
}

/* Estética opcional: oculta la barra de scroll para que se vea más limpio */
.pantalla-interna::-webkit-scrollbar {
    width: 0px;
}

/* ---------- */

/* Catalogo */

section.catalogo {
    background-color: #0a3161;
    height: 80vh;
    color: white;
}

section.catalogo .titulo {
    font-family: "Playfair Display", regular;
    color: white;
    font-size: 45px;
    font-weight: 600;
}

section.catalogo .subtitulo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: white;
    font-size: 20px;
    margin-bottom: 30px;
}

section.catalogo .descripcion {
    color: white;
    font-size: 23px;
    margin-bottom: 30px;
}

section.catalogo .box-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    
  section.album  {
    background-color: #08325e;
    }

/* --------- */

/* Preguntas Frecuentes */
section.faq {
    padding: 6rem 0rem;
 background-color: #b71642;
    /*background: linear-gradient(to left, var(--color-secundario), var(--color-terciario));*/
    box-shadow: inset 3px 5px 20px 6px rgb(0 0 0 / 12%);
    color: white;
}

section.faq strong {
    font-weight: 600;
      color: white;
}

.btn-faq {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 25px;
    color: black;
    background-color: white;
    border-radius: 12px;
    padding: 10px 40px;
    border: 1px solid var(--color-secundario);
}

.btn-faq:hover {
    border: 1px solid var(--color-terciario);
}

.btn-faq:focus {
    box-shadow: none;
}

/* Título superior */
section.faq .titulo {
    font-size: 35px;
}

/* Estilo de las tarjetas (preguntas) */
.faq-card {
    background-color: transparent;
    border: none;
    margin-bottom: 15px;
}

.faq-card .card-header {
    background-color: white;
    border-radius: 12px !important; /* Bordes redondeados */
    border: none;
    padding: 0;
}

/* Estilo del botón (la pregunta) */
.faq-card .btn-link {
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    padding: 1.2rem 1.5rem;
    font-size: 20px;
}

.faq-card .btn-link:focus,
.faq-card .btn-link:hover {
    text-decoration: none;
    box-shadow: none;
}

/* Icono del símbolo + */
.plus-icon {
    font-size: 1.5rem;
    font-weight: 300;
}

/* Estilo del texto de respuesta */
.faq-card .card-body {
    font-family: 'Montserrat', sans-serif;
    color: #444;
    font-size: 17px;
    line-height: 1.6;
    padding: 1rem 1.5rem;
    background: transparent;
      color: white;
}

.link-whatsapp {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}



/* Quitar bordes por defecto de Bootstrap accordion */
.accordion > .card:not(:last-of-type) {
    border-bottom: 0;
}
/* Cuando el botón NO tiene la clase .collapsed (está abierto) */
.btn-faq:not(.collapsed) .plus-icon {
    transform: rotate(0deg); /* Opcional: para asegurar posición */
}

/* Cambiamos el contenido de + a - usando el pseudo-elemento ::before o directamente */
.btn-faq:not(.collapsed) .plus-icon::before {
    content: "−"; /* Signo menos */
}

/* Estado inicial (cerrado) */
.btn-faq.collapsed .plus-icon::before {
    content: "+";
}

/* Ajuste opcional para que se vea más fluido */
.plus-icon {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    transition: all 0.3s ease;
}

/* ---------- */
/* Album */
section.album {
    box-shadow: 3px 5px 20px 6px rgba(0, 0, 0, 0.21);
    background-color: #f4f4f4;
}

section.album .descripcion {
    color: black;
    font-size: 18px;
    margin-bottom: 30px;
}

section.album picture{
    max-width: 60%;
}


/* ---------- */

/* Pasos */

section.pasos {
    background: white;
    height: 98vh;
}

section.pasos .titulo {
    font-size: 42px;
}

.paso-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 70px 25px 30px;
    box-shadow: 3px 5px 20px 6px rgb(0 0 0 / 12%);
    position: relative;
    height: 100%;
}

.paso-numero {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.paso-card .titulo-card {

    font-family: "Playfair Display", regular;
    margin-bottom: 15px;
    font-size: 28px;
}

.paso-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Colores de los círculos */
.bg-verde {
    background: var(--color-primario);
}

.bg-amarillo {
    background: var(--color-secundario);
}

.bg-rosa {
    background: var(--color-terciario);
}

.bg-gris {
    background: #327c0a;
}

/* ---------- */

/* INSTAGRAM */

section.instagram {
    background-color: #cfcfcf;
    padding: 20px;
    text-align: center;
    border-radius: 20px 20px 0px 0px;
    min-height: 40vh;
}
section.instagram h2 {
    font-size: 25px;
}


/* ---------- */

/* FOOTER */

section.menu-footer {
    background: #e6e6e6;
    padding: 30px 0;
}

section.menu-footer ul li {
    margin: 0 20px;
}

section.menu-footer ul a {
    text-decoration: underline;
    color: #999;
    font-size: 13px;
}

section.menu-footer ul a:hover {
    color: var(--color-primario);
}

section.footer {
    text-align: center;
    padding: 20px 0;
    background-color: #666;
}

section.footer p {
    text-align: center;
    color: white;
    font-size: 12px;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

section.footer a {
    color: white;
}

/* ---------- */

/* CONTACTO */

section.contacto {
    padding: 100px 0;
    position: relative;
}

.logo-wsp {
    position: fixed;
    bottom: 29px;
    right: 47px;
    z-index: 2;
    width: 75px;
}

section.contacto .icon {
    width: 120px; /* tamaño del svg */
    height: auto;
}

section.contacto .titulo {
    font-weight: 400;
    font-size: 30px;
}

section.contacto .descripcion {
    font-weight: 300;
    font-size: 20px;
}

section.contacto .subtitulo {
    font-size: 20px;
    color: var(--color-sexto);
    letter-spacing: normal;
    font-weight: normal;
}

.border-contacto-left {
    border-left: 2px var(--color-sexto) solid;
}

section.contacto p {
    color: black;
    font-size: 18px;
    margin-bottom: 0px;
}

section.contacto a {
    color: black;
    text-decoration: underline;
    font-size: 18px;
}

section.contacto a:hover {
    color: #676767;
}

section.contacto .fab {
    color: var(--color-terciario);
    font-size: 20px;
    margin-right: 4px;
}

section.contacto ul li {
    margin-bottom: 10px;
}

/* ---------- */
    
  section.album  {
    background-color: #08325e;
    }
    
  section.album .titulo {
   color: white;
    }

 section.album .subtitulo {
   color: white;
    }

     section.album .descripcion{
   color: white;
    }

/* Responsive */

@media (max-width: 768px) {
    .text-uppercase-desktop{
        text-transform: lowercase;
    }
    header img {
        width: 180px;
    }

    header ul.menu {
        width: 100%;
        display: none;
    }

    header ul.menu li {
        margin-left: 0;
        margin-bottom: 5px;
    }

    header .col-logo {
        text-align: center;
    }

    #boton-menu-mobile {
        display: inline-block;
    }

    .col-menu {
        display: none;
    }

    .col-menu.open {
        display: block;
    }

    .show-desktop {
        display: none !important;
    }

    .show-mobile {
        display: block !important;
    }

    .btn {
        font-size: 13px;
        font-weight: 600;
        padding: 10px 30px;
    }

    .container {
        padding: 0px;
        margin: 0px;
        max-width: 85vw;
    }

    .contenedor-celular {
        max-width: 240px;
        margin: 20px auto;
    }

    .titulo {
        font-size: 25px;
        letter-spacing: 0.035em;
        font-weight: 600;
        margin-bottom: 2rem;
    }

    .subtitulo {
        font-weight: 500;
        font-size: 13px;
        letter-spacing: 0.35em;
        margin-bottom: 20px;
    }

    section.menu-footer ul li {
        margin-top: 10px;
    }

    nav.menu-categorias a {
        margin-bottom: 5px;
        margin-left: 0;
    }

    /* PORTADA */
    section.portada {
        margin-top: 85px;
        height: 100%;
        padding: 5rem 0px 3rem 0px;
    }

    section.portada .contenedor-celular {
        max-width: 200px;
        margin: 12px;
        margin-left: 25px;
    }

    section.portada .box-titulo {
        padding: 0px;
    }

    section.portada .box-celu {
        padding-left: 0px;
    }

    section.portada .titulo-portada {
        font-size: 30px;
    }

    section.portada .subtitulo-portada {
        font-size: 18px;
        margin-bottom: 2rem;
        margin-bottom: 2rem;
    }


    .globo-texto {
        font-weight: 600;
        font-size: 0.7rem;
        padding: 5px 12px 5px 14px;
    }
    /* Triángulo del globo */
    .globo-texto::after {
        bottom: -8px;
        right: 75%;
        left: 15%;
        border-left: 8px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #ffffff;
    }

    /* Círculo del icono superior */
    .icon-circle {
        width: 30px;
        height: 30px;
        border: 2px solid  #ffffff;
        top: -17px;
        left: -16px;
    }

    .ubi-goblo {
        left: 20%;
        top: 5%;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
        40% { transform: translateY(-5px); }
        60% { transform: translateY(-2px); }
    }

    /* -------------------- */
    /* FUNCIONALIDAD */
    section.funcionalidad .titulo {
        font-size: 23px;
        font-weight: 400;
        margin-bottom: 1rem;
    }

    section.funcionalidad .title {
        font-size: 20px;
        text-align: center;
    }

    section.funcionalidad .descripcion {
        font-size: 13px;
    }

    section.funcionalidad .item-funcionalidad {
        width: 50%;
        max-width: 50%;
        height: 11rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    section.funcionalidad .item-funcionalidad p {
        max-width: 100%;
        text-align: center;
    }

    section.funcionalidad .logo-funcionalidad {
        width: 50px;
        position: static;
        margin-bottom: 5px;
    }

    /* -------------------- */
    /* PERSONALIZACION */
    section.personalizacion .titulo {
        font-size: 25px;
    }

    section.personalizacion .titulo-ejemplo {
        font-size: 18px;
    }


    section.personalizacion .descripcion-titulo {
        font-size: 14px;
    }

    section.personalizacion .descripcion {
        font-size: 14px;
    }

    section.personalizacion .iconos {
        width: 75px;
    }

    section.personalizacion .contenedor-celular {
        margin: 5px auto;
        max-width: 215px;
    }
    section.personalizacion {
        padding-bottom: 3rem;
        }
    /* -------------------- */
    /* CATALOGO */
    section.catalogo {
        background: none;
        background-image: url("../img/Mock-up-celus.png");
        background-color: var(--color-terciario);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        height: 100%;
    }

    section.catalogo .titulo {
        font-size: 23px;
        font-weight: 600;
        font-family:  "Lato", sans-serif;
    }

     section.catalogo .h2 {
        font-size: 23px;
        font-weight: 900;
          font-family: "Lato", sans-serif;
    }
    section.catalogo .subtitulo {
        font-weight: 600;
        color: var(--color-sexto);
                font-family:  "Lato", sans-serif;

        font-size: 13px;
        margin-bottom: 15px;
    }

    section.catalogo .descripcion {
        color: white;
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 0px;
    }

    section.catalogo .box-mobile {
        padding: 30px;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.82);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* -------------------- */
    /* PASOS */
    section.pasos {
        height: 100%;
    }

    section.pasos .titulo {
        font-size: 23px;
        text-align: center;
    }

    .paso-card {
        border-radius: 10px;
        padding: 35px 5px 5px;
        box-shadow: 3px 5px 10px 6px rgb(0 0 0 / 12%);
        position: relative;
        height: 100%;
    }

    .paso-numero {
        width: 55px;
        height: 55px;
        font-size: 30px;
        top: -27.5px;
    }

    .paso-card .titulo-card {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .paso-card p {
        font-size: 13px;
        color: black;
    }

    /* ---------- */
    /* ALBUM */
    section.album .titulo {
        font-weight: 400;
        font-size: 22px;
        letter-spacing: 0.035em;
        margin-bottom: 5px;
        text-align: center;
          font-family: "Lato", sans-serif;
    }






    section.album .subtitulo {
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 0.2em;
        margin-bottom: 15px;
        text-align: center;
          font-family: "Lato", sans-serif;
    }

    section.album .descripcion {
        font-size: 15px;
        font-weight: 500;
        text-align: center;
    }

    section.album .img-fluid {
        max-width: 210px;
    }

    section.album .box-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* ---------- */
    /* Preguntas Frecuentes */
    section.faq {
        display: flex;
        justify-content: center;
    }

    section.faq .titulo {
        font-size: 25px;
        text-align: center;
    }

    .faq-card .btn-link {
        padding: 1rem 1.2rem;
        font-size: 16px;
    }

    .faq-card .card-body {
        font-size: 14px;
    }

    .faq-card .card-body p {
        font-size: 14px;
        margin-bottom: 0px;
    }

    /* ---------------- */

    /* CONTACTO */

    section.contacto {
        display: flex;
        justify-content: center;
        text-align: center;
        padding: 50px 0;
    }

    section.contacto .icon {
        width: 75px;
    }

    section.contacto .titulo {
        font-size: 25px;
    }

    section.contacto .descripcion {
        font-size: 15px;
    }

    section.contacto .subtitulo {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .border-contacto-left {
        border-left: 0px;
    }

    section.contacto p {
        font-size: 14px;
    }

    section.contacto a {
        font-size: 14px;
    }

    section.contacto .fab {
        font-size: 18px;
    }

    section.contacto ul li {
        margin-bottom: 5px;
    }

    /* ---------------- */
    .logo-wsp {
        width: 60px;
        bottom: 20px;
        right: 16px;
    }
}
