/* ==========================================
   CREACIONES LUAM
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #ffffff;
    line-height: 1.6;
}


/* ==========================================
   NAVEGACIÓN
========================================== */

header {
    width: 100%;
    padding: 20px 8%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: white;

    border-bottom: 1px solid #eeeeee;

    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 170px;
    height: auto;
    display: block;
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;

    transition: 0.3s;
}

nav a:hover {
    color: #d86b9c;
}


/* ==========================================
   PORTADA
========================================== */

.hero {
    min-height: 650px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 80px 20px;

    background: linear-gradient(
        135deg,
        #fff0f6,
        #f5edff
    );
}

.hero-contenido {
    max-width: 850px;
}

.texto-pequeno {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 70px;
    margin-bottom: 20px;
}

.subtitulo {
    font-size: 21px;
    color: #555;

    max-width: 650px;

    margin: 0 auto 35px;
}

.hero-botones {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}


/* ==========================================
   BOTONES
========================================== */

.boton {
    display: inline-block;

    padding: 14px 30px;

    border-radius: 30px;

    background: #d86b9c;

    color: white;

    text-decoration: none;

    font-weight: bold;

    transition: 0.3s;
}

.boton:hover {
    transform: translateY(-3px);
}

.boton-secundario {
    background: white;
    color: #333;
}


/* ==========================================
   PRODUCTOS
========================================== */

.productos {
    padding: 100px 8%;

    text-align: center;
}

.seccion-pequena {
    font-size: 13px;

    letter-spacing: 3px;

    font-weight: bold;

    margin-bottom: 10px;
}

.productos h2,
.personaliza h2 {
    font-size: 42px;

    margin-bottom: 15px;
}

.productos-descripcion {
    color: #666;

    max-width: 650px;

    margin: 0 auto 55px;
}


/* ==========================================
   TARJETAS
========================================== */

.productos-grid {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.producto {
    padding: 40px 30px;

    border-radius: 20px;

    background: white;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);

    transition: 0.3s;
}

.producto:hover {
    transform: translateY(-8px);
}

.producto-icono {
    font-size: 65px;

    margin-bottom: 15px;
}

.producto h3 {
    font-size: 22px;

    margin-bottom: 10px;
}

.producto p {
    color: #666;

    margin-bottom: 20px;
}

.producto a {
    text-decoration: none;

    color: #d86b9c;

    font-weight: bold;
}


/* ==========================================
   PERSONALIZACIÓN
========================================== */

.personaliza {
    padding: 100px 20px;

    text-align: center;

    background: #f9f4f8;
}

.personaliza > div {
    max-width: 700px;

    margin: auto;
}

.personaliza p:not(.seccion-pequena) {
    color: #555;

    margin-bottom: 30px;
}


/* ==========================================
   PIE DE PÁGINA
========================================== */

footer {
    padding: 50px 20px;

    text-align: center;

    background: #222;

    color: white;
}

footer h2 {
    margin-bottom: 10px;
}

footer p {
    margin: 5px;
}


/* ==========================================
   MÓVILES
========================================== */

@media (max-width: 768px) {

    header {
        flex-direction: column;

        gap: 15px;
    }

    nav {
        gap: 15px;

        flex-wrap: wrap;

        justify-content: center;
    }

    nav a {
        font-size: 14px;
    }

    .hero {
        min-height: 550px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .subtitulo {
        font-size: 18px;
    }

    .productos {
        padding: 70px 20px;
    }

    .productos h2,
    .personaliza h2 {
        font-size: 34px;
    }

    .productos-grid {
        grid-template-columns: 1fr;
    }

}
.producto-imagen {
    width: 100%;
    height: 230px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

.producto-imagen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: 0.4s;
}

.producto:hover .producto-imagen img {
    transform: scale(1.05);
}
