/* ================================
   CONFIGURACIÓN GENERAL
================================ */

:root {
    --rosa-principal: #d9899d;
    --rosa-claro: #f9e7ec;
    --rosa-muy-claro: #fff7f9;
    --rosa-oscuro: #ad5f74;
    --rosa-elegante: #c8738a;

    --crema: #fffaf7;
    --blanco: #ffffff;

    --texto: #4d4044;
    --texto-claro: #796b6f;

    --sombra: 0 15px 45px rgba(131, 80, 94, 0.12);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Montserrat', sans-serif;
    background: var(--blanco);
    color: var(--texto);
    overflow-x: hidden;
}


img {
    max-width: 100%;
    display: block;
}


a {
    text-decoration: none;
}


button {
    font-family: inherit;
}


/* ================================
   ENCABEZADO
================================ */

.header {
    min-height: 100vh;
    position: relative;
}


.navbar {
    height: 90px;
    width: 100%;

    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: absolute;
    top: 0;
    left: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.88);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(217, 137, 157, 0.15);
}


.navbar.scrolled {
    position: fixed;

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);

    animation: navbarAnimacion 0.4s ease;
}


@keyframes navbarAnimacion {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }

}


/* LOGO */

.logo-contenedor {
    display: flex;
    align-items: center;
    gap: 12px;
}


.logo {
    width: 58px;
    height: 58px;

    object-fit: contain;
}


.nombre-marca {
    display: flex;
    align-items: baseline;
    gap: 7px;
}


.nombre-marca span {
    font-family: 'Great Vibes', cursive;
    font-size: 38px;
    color: var(--rosa-oscuro);
}


.nombre-marca small {
    font-size: 14px;
    color: var(--texto-claro);

    text-transform: uppercase;

    letter-spacing: 4px;
}


/* MENU */

.menu {
    list-style: none;

    display: flex;
    align-items: center;

    gap: 32px;
}


.menu a {
    color: var(--texto);

    font-size: 14px;
    font-weight: 500;

    position: relative;

    transition: 0.3s;
}


.menu a::after {
    content: "";

    position: absolute;

    width: 0;
    height: 2px;

    left: 0;
    bottom: -8px;

    background: var(--rosa-principal);

    transition: 0.3s;
}


.menu a:hover {
    color: var(--rosa-oscuro);
}


.menu a:hover::after {
    width: 100%;
}


.menu-btn {
    display: none;

    border: none;
    background: transparent;

    font-size: 25px;

    color: var(--rosa-oscuro);

    cursor: pointer;
}


/* ================================
   PORTADA
================================ */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 130px 8% 70px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            100deg,
            rgba(255, 248, 250, 0.98) 0%,
            rgba(255, 242, 246, 0.92) 45%,
            rgba(249, 220, 228, 0.7) 100%
        );
}


.hero::before {
    content: "";

    width: 500px;
    height: 500px;

    position: absolute;

    top: -200px;
    right: -100px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.5);
}


.hero::after {
    content: "";

    width: 400px;
    height: 400px;

    position: absolute;

    left: -180px;
    bottom: -220px;

    border-radius: 50%;

    background: rgba(217, 137, 157, 0.1);
}


.hero-contenido {
    max-width: 750px;

    position: relative;

    z-index: 2;

    animation: aparecerHero 1s ease;
}


@keyframes aparecerHero {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.hero-mini {
    margin-bottom: 20px;

    font-size: 13px;
    font-weight: 600;

    color: var(--rosa-oscuro);

    letter-spacing: 4px;

    text-transform: uppercase;
}


.hero h1 {
    max-width: 850px;

    font-size: clamp(45px, 7vw, 82px);

    line-height: 1.05;

    font-weight: 500;

    color: #4f3c43;
}


.hero h1 span {
    display: block;

    font-family: 'Great Vibes', cursive;

    font-size: 1.15em;

    font-weight: normal;

    color: var(--rosa-oscuro);

    margin-top: 8px;
}


.hero-texto {
    max-width: 620px;

    margin-top: 30px;

    font-size: 17px;

    line-height: 1.9;

    color: var(--texto-claro);
}


.hero-botones {
    margin-top: 40px;

    display: flex;
    gap: 15px;

    flex-wrap: wrap;
}


.boton {
    min-height: 52px;

    padding: 0 27px;

    border-radius: 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}


.boton-principal {
    background: var(--rosa-oscuro);

    color: white;

    box-shadow:
        0 10px 30px rgba(173, 95, 116, 0.3);
}


.boton-principal:hover {
    transform: translateY(-4px);

    background: #994e63;
}


.boton-secundario {
    background: rgba(255, 255, 255, 0.85);

    color: var(--rosa-oscuro);

    border: 1px solid rgba(173, 95, 116, 0.25);
}


.boton-secundario:hover {
    background: white;

    transform: translateY(-4px);
}


.scroll-indicador {
    position: absolute;

    bottom: 35px;
    right: 8%;

    z-index: 3;

    color: var(--rosa-oscuro);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 8px;

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.scroll-indicador i {
    animation: moverFlecha 1.3s infinite alternate;
}


@keyframes moverFlecha {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(7px);
    }

}


/* ================================
   SECCIONES GENERALES
================================ */

.seccion {
    padding: 110px 8%;
}


.titulo-seccion {
    max-width: 750px;

    margin: 0 auto 65px;

    text-align: center;
}


.titulo-seccion > p {
    margin-bottom: 12px;

    color: var(--rosa-oscuro);

    font-size: 13px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 4px;
}


.titulo-seccion h2 {
    font-family: 'Great Vibes', cursive;

    font-size: clamp(45px, 5vw, 62px);

    font-weight: normal;

    line-height: 1.1;

    color: #544147;
}


.linea-decorativa {
    width: 70px;
    height: 2px;

    margin: 20px auto;

    background: var(--rosa-principal);

    position: relative;
}


.linea-decorativa::before {
    content: "✿";

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    padding: 0 10px;

    background: inherit;

    color: white;

    font-size: 13px;
}


.descripcion-seccion {
    display: block;

    max-width: 620px;

    margin: 20px auto 0;

    line-height: 1.8;

    color: var(--texto-claro);

    font-size: 15px;
}


/* ================================
   NOSOTROS
================================ */

.nosotros {
    background: var(--blanco);
}


.nosotros-contenido {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}


.nosotros-imagen {
    position: relative;

    padding: 20px;
}


.nosotros-imagen::before {
    content: "";

    position: absolute;

    width: 80%;
    height: 80%;

    top: 0;
    left: 0;

    background: var(--rosa-claro);

    border-radius: 50% 50% 10px 50%;

    z-index: 0;
}


.nosotros-imagen img {
    width: 100%;
    height: 560px;

    object-fit: cover;

    border-radius: 250px 250px 20px 20px;

    box-shadow: var(--sombra);

    position: relative;

    z-index: 1;
}


.decoracion-imagen {
    width: 80px;
    height: 80px;

    position: absolute;

    right: -5px;
    bottom: 60px;

    z-index: 3;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--rosa-oscuro);

    color: white;

    font-size: 25px;

    box-shadow: var(--sombra);
}


.etiqueta {
    display: inline-block;

    margin-bottom: 15px;

    padding: 7px 15px;

    border-radius: 20px;

    background: var(--rosa-claro);

    color: var(--rosa-oscuro);

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 2px;
}


.nosotros-texto h3 {
    margin-bottom: 25px;

    font-family: 'Great Vibes', cursive;

    font-size: 52px;

    line-height: 1.1;

    font-weight: normal;

    color: #554148;
}


.nosotros-texto > p {
    margin-bottom: 17px;

    line-height: 1.9;

    color: var(--texto-claro);
}


.caracteristicas {
    margin-top: 35px;

    display: flex;
    flex-direction: column;

    gap: 23px;
}


.caracteristica {
    display: flex;
    align-items: center;

    gap: 17px;
}


.icono-caracteristica {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--rosa-claro);

    color: var(--rosa-oscuro);

    font-size: 18px;
}


.caracteristica h4 {
    margin-bottom: 4px;

    font-size: 15px;
}


.caracteristica p {
    color: var(--texto-claro);

    font-size: 13px;
}


/* ================================
   OCASIONES
================================ */

.ocasiones {
    padding: 100px 8%;

    background: var(--rosa-muy-claro);
}


.ocasiones-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}


.ocasion {
    padding: 40px 25px;

    text-align: center;

    background: white;

    border-radius: 20px;

    box-shadow:
        0 8px 30px rgba(108, 76, 84, 0.06);

    transition: 0.35s;
}


.ocasion:hover {
    transform: translateY(-10px);

    box-shadow: var(--sombra);
}


.ocasion i {
    width: 70px;
    height: 70px;

    margin: 0 auto 23px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--rosa-claro);

    color: var(--rosa-oscuro);

    font-size: 25px;
}


.ocasion h3 {
    margin-bottom: 12px;

    font-size: 17px;
}


.ocasion p {
    font-size: 13px;

    line-height: 1.7;

    color: var(--texto-claro);
}


/* ================================
   GALERÍA
================================ */

.galeria {
    background: white;
}


.galeria-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-auto-rows: 330px;

    gap: 18px;
}


.foto {
    position: relative;

    overflow: hidden;

    border-radius: 18px;

    cursor: pointer;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.05);
}


.foto-alta {
    grid-row: span 2;
}


.foto-ancha {
    grid-column: span 2;
}


.foto img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.foto:hover img {
    transform: scale(1.09);
}


.foto-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 12px;

    color: white;

    background:
        linear-gradient(
            rgba(122, 63, 79, 0.05),
            rgba(122, 63, 79, 0.72)
        );

    opacity: 0;

    transition: 0.4s;
}


.foto:hover .foto-overlay {
    opacity: 1;
}


.foto-overlay i {
    font-size: 27px;
}


.foto-overlay span {
    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 2px;
}


/* ================================
   FRASE
================================ */

.frase {
    min-height: 480px;

    padding: 80px 8%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            rgba(141, 78, 96, 0.88),
            rgba(141, 78, 96, 0.88)
        ),
        url("imagenes/foto5.jpg") center / cover fixed;
}


.frase-contenido {
    max-width: 850px;

    color: white;
}


.frase-contenido i {
    margin-bottom: 20px;

    font-size: 40px;

    opacity: 0.7;
}


.frase-contenido h2 {
    font-family: 'Great Vibes', cursive;

    font-size: clamp(45px, 6vw, 70px);

    line-height: 1.15;

    font-weight: normal;
}


.frase-contenido p {
    margin-top: 20px;

    text-transform: uppercase;

    letter-spacing: 5px;

    font-size: 12px;
}


/* ================================
   VIDEOS
================================ */

.videos {
    background: var(--crema);
}


.videos-grid {
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px;
}


.video-card {
    background: white;

    overflow: hidden;

    border-radius: 22px;

    box-shadow: var(--sombra);
}


.video-card video {
    display: block;

    width: 100%;
    height: 380px;

    object-fit: cover;

    background: #222;
}


.video-info {
    padding: 25px;

    display: flex;
    align-items: center;

    gap: 20px;
}


.video-info > span {
    font-family: 'Great Vibes', cursive;

    font-size: 45px;

    color: var(--rosa-principal);
}


.video-info h3 {
    margin-bottom: 6px;

    font-size: 17px;
}


.video-info p {
    font-size: 13px;

    line-height: 1.6;

    color: var(--texto-claro);
}


/* ================================
   CTA
================================ */

.cta {
    padding: 110px 8%;

    text-align: center;

    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.65),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #f8dce4,
            #f2c8d4
        );
}


.cta-contenido {
    max-width: 800px;

    margin: auto;
}


.cta span {
    font-size: 12px;

    color: var(--rosa-oscuro);

    letter-spacing: 4px;

    text-transform: uppercase;
}


.cta h2 {
    margin: 20px 0;

    font-family: 'Great Vibes', cursive;

    font-size: clamp(48px, 6vw, 70px);

    line-height: 1.1;

    font-weight: normal;

    color: #554147;
}


.cta p {
    max-width: 650px;

    margin: 0 auto 30px;

    line-height: 1.8;

    color: var(--texto-claro);
}


.boton-whatsapp {
    padding: 15px 28px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    border-radius: 30px;

    background: #25d366;

    color: white;

    font-size: 14px;
    font-weight: 600;

    box-shadow:
        0 10px 25px rgba(37, 211, 102, 0.25);

    transition: 0.3s;
}


.boton-whatsapp:hover {
    transform: translateY(-4px);

    background: #1db954;
}


/* ================================
   REDES SOCIALES
================================ */

.contacto {
    background: white;
}


.redes-grid {
    max-width: 1050px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


.red-social {
    min-height: 120px;

    padding: 25px;

    display: flex;
    align-items: center;

    gap: 20px;

    border: 1px solid #f2e6e9;

    border-radius: 18px;

    color: var(--texto);

    background: white;

    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.04);

    transition: 0.35s;
}


.red-social:hover {
    transform: translateY(-7px);

    border-color: var(--rosa-claro);

    box-shadow: var(--sombra);
}


.red-icono {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 23px;
}


.instagram .red-icono {
    background:
        linear-gradient(
            45deg,
            #f9ce34,
            #ee2a7b,
            #6228d7
        );
}


.facebook .red-icono {
    background: #1877f2;
}


.tiktok .red-icono {
    background: #111111;
}


.whatsapp .red-icono {
    background: #25d366;
}


.red-social h3 {
    margin-bottom: 7px;

    font-size: 16px;
}


.red-social p {
    color: var(--texto-claro);

    font-size: 12px;

    line-height: 1.6;
}


.flecha {
    margin-left: auto;

    color: var(--rosa-principal);

    transition: 0.3s;
}


.red-social:hover .flecha {
    transform: translateX(5px);
}


/* ================================
   FOOTER
================================ */

footer {
    padding: 65px 8% 25px;

    background: #49383e;

    color: white;
}


.footer-contenido {
    max-width: 1200px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


.footer-marca {
    display: flex;
    align-items: center;

    gap: 17px;
}


.footer-marca img {
    width: 70px;
    height: 70px;

    object-fit: contain;
}


.footer-marca h3 {
    font-family: 'Great Vibes', cursive;

    font-size: 36px;

    font-weight: normal;
}


.footer-marca p {
    max-width: 350px;

    margin-top: 5px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;

    line-height: 1.6;
}


.footer-enlaces {
    display: flex;

    gap: 20px;

    flex-wrap: wrap;
}


.footer-enlaces a {
    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;

    transition: 0.3s;
}


.footer-enlaces a:hover {
    color: white;
}


.footer-inferior {
    max-width: 1200px;

    margin: 40px auto 0;

    padding-top: 22px;

    border-top:
        1px solid rgba(255, 255, 255, 0.12);

    text-align: center;
}


.footer-inferior p {
    font-size: 11px;

    color: rgba(255, 255, 255, 0.55);
}


/* ================================
   WHATSAPP FLOTANTE
================================ */

.whatsapp-flotante {
    width: 60px;
    height: 60px;

    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 1500;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25d366;

    color: white;

    font-size: 29px;

    box-shadow:
        0 8px 30px rgba(37, 211, 102, 0.4);

    transition: 0.3s;

    animation: pulsoWhatsapp 2s infinite;
}


.whatsapp-flotante:hover {
    transform: scale(1.1);
}


@keyframes pulsoWhatsapp {

    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow:
            0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0);
    }

}


/* ================================
   LIGHTBOX
================================ */

.lightbox {
    position: fixed;

    inset: 0;

    z-index: 3000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background: rgba(35, 25, 28, 0.92);

    visibility: hidden;

    opacity: 0;

    transition: 0.3s;
}


.lightbox.activo {
    visibility: visible;

    opacity: 1;
}


.lightbox img {
    max-width: 900px;
    max-height: 85vh;

    object-fit: contain;

    border-radius: 15px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3);

    transform: scale(0.9);

    transition: 0.3s;
}


.lightbox.activo img {
    transform: scale(1);
}


.cerrar-lightbox {
    position: absolute;

    top: 25px;
    right: 30px;

    width: 45px;
    height: 45px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);

    color: white;

    font-size: 22px;

    cursor: pointer;

    transition: 0.3s;
}


.cerrar-lightbox:hover {
    background: var(--rosa-principal);
}


/* ================================
   ANIMACIÓN AL HACER SCROLL
================================ */

.animar {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.animar.visible {
    opacity: 1;

    transform: translateY(0);
}


/* ================================
   TABLETS
================================ */

@media screen and (max-width: 1000px) {

    .ocasiones-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .nosotros-contenido {
        gap: 45px;
    }


    .nosotros-imagen img {
        height: 500px;
    }


    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .foto-ancha {
        grid-column: span 1;
    }

}


/* ================================
   CELULARES
================================ */

@media screen and (max-width: 768px) {

    /* NAVBAR */

    .navbar {
        height: 78px;

        padding: 0 5%;
    }


    .logo {
        width: 48px;
        height: 48px;
    }


    .nombre-marca span {
        font-size: 30px;
    }


    .nombre-marca small {
        font-size: 9px;

        letter-spacing: 2px;
    }


    .menu-btn {
        display: block;
    }


    .menu {
        width: 100%;

        position: absolute;

        top: 78px;
        left: 0;

        padding: 30px;

        flex-direction: column;

        align-items: center;

        gap: 25px;

        background: rgba(255, 255, 255, 0.98);

        box-shadow:
            0 10px 20px rgba(0, 0, 0, 0.08);

        transform: translateY(-140%);

        opacity: 0;

        pointer-events: none;

        transition: 0.4s;
    }


    .menu.activo {
        transform: translateY(0);

        opacity: 1;

        pointer-events: auto;
    }


    /* PORTADA */

    .hero {
        min-height: 100vh;

        padding:
            130px 6%
            100px;
    }


    .hero h1 {
        font-size: 45px;
    }


    .hero h1 span {
        font-size: 55px;
    }


    .hero-texto {
        font-size: 14px;
    }


    .hero-botones {
        flex-direction: column;

        align-items: flex-start;
    }


    .scroll-indicador {
        display: none;
    }


    /* SECCIONES */

    .seccion {
        padding: 80px 6%;
    }


    .titulo-seccion {
        margin-bottom: 45px;
    }


    .titulo-seccion h2 {
        font-size: 45px;
    }


    /* NOSOTROS */

    .nosotros-contenido {
        grid-template-columns: 1fr;
    }


    .nosotros-imagen {
        max-width: 500px;

        margin: auto;
    }


    .nosotros-imagen img {
        height: 500px;
    }


    .nosotros-texto h3 {
        font-size: 43px;
    }


    /* OCASIONES */

    .ocasiones {
        padding: 80px 6%;
    }


    /* GALERÍA */

    .galeria-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 380px;
    }


    .foto-alta {
        grid-row: span 1;
    }


    /* VIDEOS */

    .videos-grid {
        grid-template-columns: 1fr;
    }


    /* REDES */

    .redes-grid {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    .footer-contenido {
        flex-direction: column;

        text-align: center;
    }


    .footer-marca {
        flex-direction: column;
    }


    .footer-enlaces {
        justify-content: center;
    }

}


/* ================================
   CELULARES PEQUEÑOS
================================ */

@media screen and (max-width: 480px) {

    .nombre-marca small {
        display: none;
    }


    .hero h1 {
        font-size: 38px;
    }


    .hero h1 span {
        font-size: 50px;
    }


    .boton {
        width: 100%;
    }


    .nosotros-imagen img {
        height: 410px;
    }


    .ocasiones-grid {
        grid-template-columns: 1fr;
    }


    .galeria-grid {
        grid-auto-rows: 320px;
    }


    .video-card video {
        height: 280px;
    }


    .red-social {
        padding: 20px 16px;
    }


    .red-icono {
        width: 50px;
        height: 50px;
    }


    .whatsapp-flotante {
        width: 54px;
        height: 54px;

        right: 18px;
        bottom: 18px;

        font-size: 25px;
    }

}