﻿/* =========================================================
   ANA JOYERIA VICTORIA
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    color: #292929;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================================
   TOP BAR
   ========================================================= */

.top-bar {
    background: #242424;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: .5px;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links {
    display: flex;
    gap: 12px;
}

.top-bar a {
    color: #ffffff;
    text-decoration: none;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.header-principal {
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo-marca {
    display: inline-flex;
    align-items: baseline;
    gap: 9px;
    color: #222222;
    text-decoration: none;
    letter-spacing: 2px;
}

.logo-principal {
    font-size: 25px;
    font-weight: 500;
}

.logo-joyeria {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
}

.logo-marca:hover {
    color: #222222;
}


/* =========================================================
   MENU
   ========================================================= */

.menu-principal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding-bottom: 20px;
}

.menu-principal a {
    color: #333333;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    transition: .2s;
}

.menu-principal a:hover {
    color: #92764d;
}


/* =========================================================
   ICONOS
   ========================================================= */

.header-acciones {
    display: flex;
    align-items: center;
}

.header-icon {
    color: #333333;
    font-size: 20px;
    margin-left: 20px;
    text-decoration: none;
    transition: .2s;
}

.header-icon:hover {
    color: #92764d;
}

.btn-menu-mobile {
    display: none;
    border: 0;
    background: transparent;
    font-size: 25px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 650px;

    background:
        linear-gradient(
            rgba(0, 0, 0, .22),
            rgba(0, 0, 0, .22)
        ),
        url('../Fotos/Banner/hero.jpg');

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #ffffff;
}

.hero-contenido {
    max-width: 700px;
    padding: 30px;
}

.hero-etiqueta {
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.btn-hero {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #222222;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    transition: .3s;
}

.btn-hero:hover {
    background: #92764d;
    color: #ffffff;
}


/* =========================================================
   PRESENTACION
   ========================================================= */

.presentacion {
    padding: 90px 0;
    text-align: center;
}

.presentacion-contenido {
    max-width: 650px;
    margin: auto;
}

.pequeno-titulo {
    color: #92764d;
    font-size: 11px;
    letter-spacing: 3px;
}

.presentacion h2 {
    font-size: 34px;
    font-weight: 300;
    margin: 15px 0 20px;
}

.presentacion p {
    color: #777777;
    line-height: 1.8;
    font-size: 16px;
}


/* =========================================================
   SECCIONES
   ========================================================= */

.seccion {
    padding: 80px 0;
}

.encabezado-seccion {
    text-align: center;
    margin-bottom: 50px;
}

.encabezado-seccion > span {
    color: #92764d;
    font-size: 11px;
    letter-spacing: 3px;
}

.encabezado-seccion h2 {
    font-size: 32px;
    font-weight: 300;
    margin: 12px 0;
}

.encabezado-seccion p {
    color: #777777;
}


/* =========================================================
   COLECCIONES
   ========================================================= */

.coleccion-card {
    display: block;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
}

.coleccion-card img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    transition: transform .5s ease;
}

.coleccion-card:hover img {
    transform: scale(1.05);
}

.coleccion-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;

    padding: 35px;

    background:
        linear-gradient(
            transparent 40%,
            rgba(0, 0, 0, .7)
        );
}

.coleccion-overlay h3 {
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.coleccion-overlay span {
    font-size: 11px;
    letter-spacing: 2px;
}


/* =========================================================
   PRODUCTOS
   ========================================================= */

.productos-seccion {
    background: #faf9f7;
}

.producto-card {
    height: 100%;
}

.producto-imagen-contenedor {
    position: relative;
    overflow: hidden;
    background: #eeeeee;
}

.producto-imagen {
    width: 100%;
    height: 390px;
    object-fit: cover;
    transition: transform .4s ease;
}

.producto-card:hover .producto-imagen {
    transform: scale(1.03);
}

.producto-favorito {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 38px;
    height: 38px;

    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,.9);

    font-size: 17px;
}

.producto-informacion {
    padding: 18px 2px;
}

.producto-categoria {
    color: #92764d;
    font-size: 10px;
    letter-spacing: 2px;
}

.producto-informacion h3 {
    font-size: 16px;
    font-weight: 400;
    margin: 7px 0;
}

.producto-precio {
    color: #555555;
    font-size: 15px;
}

.btn-outline-joyeria {
    display: inline-block;
    border: 1px solid #333333;
    color: #333333;
    text-decoration: none;
    padding: 13px 28px;
    font-size: 11px;
    letter-spacing: 1.5px;
    transition: .3s;
}

.btn-outline-joyeria:hover {
    background: #333333;
    color: #ffffff;
}


/* =========================================================
   BANNER PROMOCIONAL
   ========================================================= */

.banner-promocional {
    min-height: 450px;

    background:
        linear-gradient(
            rgba(0,0,0,.25),
            rgba(0,0,0,.25)
        ),
        url('../Fotos/Banner/promocion.jpg');

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #ffffff;
}

.banner-contenido span {
    font-size: 11px;
    letter-spacing: 3px;
}

.banner-contenido h2 {
    font-size: 42px;
    font-weight: 300;
    margin: 18px 0 30px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #242424;
    color: #ffffff;
    padding: 70px 0 25px;
}

.logo-footer {
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    letter-spacing: 2px;
}

.logo-footer small {
    font-size: 11px;
    letter-spacing: 1px;
}

.site-footer p {
    color: #aaaaaa;
    line-height: 1.8;
    margin-top: 20px;
}

.site-footer h5 {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.site-footer > .container a:not(.logo-footer) {
    display: block;
    color: #aaaaaa;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
}

.site-footer a:hover {
    color: #ffffff !important;
}

.footer-social {
    display: flex;
    gap: 18px;
}

.site-footer .footer-social a {
    display: inline-block !important;
    font-size: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: #777777;
    font-size: 12px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .menu-principal {
        gap: 18px;
    }

    .menu-principal a {
        font-size: 11px;
    }

    .hero {
        min-height: 550px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .producto-imagen {
        height: 330px;
    }

}


@media (max-width: 767px) {

    .top-bar-content {
        justify-content: center;
        text-align: center;
    }

    .top-links {
        display: none;
    }

    .header-principal {
        min-height: 80px;
    }

    .btn-menu-mobile {
        display: block;
    }

    .logo-principal {
        font-size: 18px;
    }

    .logo-joyeria {
        font-size: 10px;
    }

    .logo-marca {
        gap: 5px;
        letter-spacing: 1px;
    }

    .header-acciones {
        gap: 8px;
    }

    .header-icon {
        margin-left: 8px;
        font-size: 18px;
    }

    .menu-principal {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-bottom: 15px;
    }

    .menu-principal.menu-abierto {
        display: flex;
    }

    .menu-principal a {
        padding: 12px 0;
        border-top: 1px solid #eeeeee;
    }

    .hero {
        min-height: 500px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
    }

    .presentacion {
        padding: 65px 20px;
    }

    .presentacion h2 {
        font-size: 28px;
    }

    .seccion {
        padding: 60px 0;
    }

    .encabezado-seccion h2 {
        font-size: 27px;
    }

    .coleccion-card img {
        height: 380px;
    }

    .producto-imagen {
        height: 270px;
    }

    .banner-promocional {
        min-height: 380px;
    }

    .banner-contenido h2 {
        font-size: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

}