/* ==========================================
   VARIABLES
========================================== */

:root {

    --verde-atheneas: #172117;
    --verde-suave: #dfe3da;

    --dorado: #b88a35;

    --crema: #f7f7f2;

    --texto: #222722;

    --gris: #777d77;

    --borde: #d9ddd6;

}


/* ==========================================
   GENERAL
========================================== */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family: "Montserrat", Arial, sans-serif;

    color: var(--texto);

    background: #fff;

    font-weight: 300;

}


img {
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


/* ==========================================
   BARRA SUPERIOR
========================================== */

.top-bar {

    height: 30px;

    background: var(--verde-atheneas);

    color: #fff;

    font-size: 12px;

}


.top-bar-content {

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

}


.social-icons {

    position: absolute;

    right: 25px;

    display: flex;

    gap: 17px;

}


.social-icons a {

    color: #fff;

    font-size: 13px;

    transition: opacity 0.3s ease;

}


.social-icons a:hover {
    opacity: 0.65;
}


/* ==========================================
   NAVBAR
========================================== */

.main-navbar {

    background: #fff;

    border-bottom: 1px solid #333;

    padding: 0;

}


.navbar-inner {

    min-height: 52px;

    padding-left: 50px;
    padding-right: 50px;

}


.navbar-brand {

    margin: 0;

    padding: 5px 0;

}


.navbar-brand img {

    width: 145px;

    height: auto;

    display: block;

}


.navbar-nav {

    align-items: center;

    gap: 0;

}


.nav-link {

    font-size: 16px;

    font-weight: 300;

    color: #202520 !important;

    padding: 16px 42px !important;

    transition: opacity 0.3s ease;

}


.nav-link:hover {
    opacity: 0.55;
}


.nav-link.active {
    font-weight: 400;
}


.nav-separator {

    width: 1px;

    height: 30px;

    background: #777;

}


/* ==========================================
   HERO
========================================== */

.hero {

    position: relative;

    width: 100%;

    overflow: hidden;

}


.hero-image {

    width: 100%;

    height: auto;

    display: block;

}


.hero-overlay {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 72%;

    padding: 22px 30px;

    background: rgba(250, 250, 247, 0.82);

    text-align: center;

}


.hero-text {

    margin: 0 0 3px;

    font-size: 19px;

    font-weight: 300;

}


.hero-overlay h1 {

    margin: 0 0 9px;

    font-size: 19px;

    font-weight: 400;

}


/* ==========================================
   BOTONES
========================================== */

.outline-button {

    display: inline-block;

    padding: 8px 27px;

    border: 1px solid #8a8f88;

    background: transparent;

    font-size: 13px;

    font-weight: 300;

    transition:
        background-color 0.3s ease,
        color 0.3s ease;

}


.outline-button:hover {

    background: var(--verde-atheneas);

    color: #fff;

}


/* ==========================================
   SECCIONES
========================================== */

.catalog-section {

    padding: 18px 0 25px;

    border-bottom: 1px solid #9cac96;

}


.section-title {

    margin: 0;

    text-align: center;

    font-size: 39px;

    line-height: 1.2;

    font-weight: 200;

    letter-spacing: -1px;

}


.catalog-section .section-title {

    margin-bottom: 20px;

}


/* ==========================================
   CATEGORÍAS
========================================== */

.category-menu {

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 14px;

}


.category-menu span {

    width: 1px;

    height: 17px;

    background: #d4d7d3;

}


.category-button {

    border: 0;

    background: transparent;

    padding: 5px 30px;

    font-family: inherit;

    font-size: 13px;

    font-weight: 300;

    color: #8a8f8a;

    position: relative;

    transition: color 0.3s ease;

}


.category-button:hover {

    color: #222;

}


.category-button.active {

    color: #222;

}


.category-button.active::after {

    content: "";

    position: absolute;

    left: 30px;

    right: 30px;

    bottom: 0;

    height: 1px;

    background: #222;

}


/* ==========================================
   PRODUCTOS
========================================== */

.products-grid {

    --bs-gutter-x: 26px;

    --bs-gutter-y: 18px;

}


.producto-col {

    margin-bottom: 0;

}


.producto-card {

    background: #fff;

    border: 1px solid #e2e4e1;

    cursor: pointer;

    height: 100%;

    overflow: hidden;

}


.producto-image-wrapper {

    width: 100%;

    aspect-ratio: 1 / 1.12;

    overflow: hidden;

    background: #f5f5f1;

}


.producto-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s cubic-bezier(.2,.6,.3,1);

}


.producto-card:hover .producto-image {

    transform: scale(1.035);

}


/* ==========================================
   INFORMACIÓN PRODUCTO
========================================== */

.producto-info {

    padding: 10px 12px 13px;

}


.producto-info h3 {

    margin: 0 0 3px;

    font-size: 12px;

    font-weight: 500;

}


.producto-material {

    margin: 0;

    font-size: 10px;

    color: #858985;

}


.producto-material span {

    margin: 0 3px;

}


.producto-price {

    margin: 3px 0 0;

    font-size: 12px;

    font-weight: 500;

}


/* ==========================================
   BOTÓN CATÁLOGO
========================================== */

.catalog-button-container {

    text-align: center;

    padding-top: 25px;

}


/* ==========================================
   PÁGINA CATÁLOGO
========================================== */

.catalog-page {

    padding: 25px 0 60px;

}


.catalog-page .section-title {

    margin-bottom: 25px;

}


.catalog-page .products-grid {

    margin-top: 15px;

}


/* ==========================================
   CONTACTO
========================================== */

.contact-section {

    padding-top: 42px;

}


.contact-title {

    margin-bottom: 42px;

}


.contact-box {

    display: flex;

    width: 100%;

}


.contact-image {

    width: 56%;

}


.contact-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


.contact-info {

    width: 44%;

    background: #e5e8df;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 35px 7%;

    gap: 28px;

}


.contact-item {

    display: flex;

    align-items: center;

    gap: 22px;

}


.contact-item > i {

    font-size: 32px;

    color: #222;

}


.contact-item span {

    display: block;

    font-size: 15px;

    font-weight: 300;

}


.contact-item strong {

    display: block;

    font-size: 25px;

    font-weight: 300;

    letter-spacing: 1px;

}


.contact-item p {

    margin: 5px 0 0;

    font-size: 13px;

    color: #626862;

}


.contact-phone {
    display: block;
    color: inherit;
    text-decoration: none;
}

.contact-phone:hover {
    opacity: 0.7;
}

.contact-whatsapp {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.contact-whatsapp i {
    font-size: 32px;
}

.contact-whatsapp:hover {
    opacity: 0.7;
}

/* ==========================================
   FOOTER
========================================== */

footer {

    text-align: center;

}


.footer-social {

    height: 63px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

}


.footer-social a {

    font-size: 17px;

    transition: transform 0.3s ease;

}


.footer-social a:hover {

    transform: translateY(-2px);

}


.footer-location {

    background: var(--verde-atheneas);

    color: #fff;

    padding: 6px;

    font-size: 17px;

    font-weight: 300;

}


.footer-copy {

    padding: 4px;

    font-size: 12px;

}


/* ==========================================
   MODAL
========================================== */

.product-modal {

    border: none;

    border-radius: 0;

    overflow: hidden;

    position: relative;

}


.modal-product-image {

    background: #f6f6f2;

}


.modal-product-image img {

    width: 100%;

    height: auto;

    display: block;

}


.modal-product-info {

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 35px;

}


.modal-product-info h3 {

    font-size: 20px;

    font-weight: 400;

    margin-bottom: 10px;

}


.modal-product-info p {

    font-size: 13px;

    color: #858985;

}


.modal-product-info strong {

    font-size: 18px;

    font-weight: 400;

}


.modal-close {

    position: absolute;

    top: 12px;

    right: 12px;

    z-index: 5;

    width: 32px;

    height: 32px;

    border: 0;

    background: rgba(255,255,255,0.8);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .navbar-inner {

        padding-left: 25px;
        padding-right: 25px;

    }


    .navbar-nav {

        padding: 15px 0;

        align-items: stretch;

    }


    .nav-link {

        padding: 10px 0 !important;

        text-align: center;

    }


    .nav-separator {

        display: none;

    }


    .hero-overlay {

        width: 80%;

    }


    .hero-text {

        font-size: 16px;

    }


    .hero-overlay h1 {

        font-size: 16px;

    }


    .contact-info {

        padding: 25px;

    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 767px) {

    .top-bar {

        height: 28px;

    }


    .top-bar-content {

        height: 28px;

        font-size: 10px;

    }


    .social-icons {

        right: 12px;

        gap: 10px;

    }


    .navbar-brand img {

        width: 125px;

    }


    .section-title {

        font-size: 32px;

    }


    .hero-overlay {

        width: 85%;

        padding: 13px 10px;

    }


    .hero-text {

        font-size: 12px;

    }


    .hero-overlay h1 {

        font-size: 12px;

        margin-bottom: 6px;

    }


    .outline-button {

        padding: 6px 15px;

        font-size: 10px;

    }


    .category-menu {

        overflow-x: auto;

        justify-content: flex-start;

        padding: 0 10px;

        scrollbar-width: none;

    }


    .category-menu::-webkit-scrollbar {

        display: none;

    }


    .category-button {

        padding: 5px 17px;

        white-space: nowrap;

    }


    .category-button.active::after {

        left: 17px;

        right: 17px;

    }


    .products-grid {

        --bs-gutter-x: 12px;

        --bs-gutter-y: 12px;

    }


    .producto-info {

        padding: 8px;

    }


    .producto-info h3 {

        font-size: 11px;

    }


    .producto-material {

        font-size: 9px;

    }


    .producto-price {

        font-size: 11px;

    }


    .contact-box {

        flex-direction: column;

    }


    .contact-image,
    .contact-info {

        width: 100%;

    }


    .contact-image {

        height: auto;

    }


    .contact-info {

        padding: 30px 25px;

    }


    .contact-title {

        margin-bottom: 30px;

    }

}


/* ==========================================
   CELULAR PEQUEÑO
========================================== */

@media (max-width: 480px) {

    .navbar-inner {

        padding-left: 15px;
        padding-right: 15px;

    }


    .hero-overlay {

        width: 90%;

    }


    .hero-text {

        font-size: 10px;

    }


    .hero-overlay h1 {

        font-size: 10px;

    }


    .outline-button {

        padding: 5px 10px;

        font-size: 9px;

    }


    .section-title {

        font-size: 28px;

    }


    .contact-item {

        gap: 15px;

    }


    .contact-item > i {

        font-size: 26px;

    }


    .contact-item strong {

        font-size: 20px;

    }

}