@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");

body,
html {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    padding: 0;
    width: 100%
}

header {
    height: 60px;
    position: relative;
    width: 100%
}

#logo {
    float: left;
    height: 60px;
    padding: 6px 20px;
    width: auto
}

#logo a {
    color: #fff;
    display: block;
    font-weight: 700;
    line-height: 44px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase
}

#menu {
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: relative;
    z-index: 1000
}

#menu,
.nav-menu {
    display: flex;
    margin: 0
}

.nav-menu {
    gap: 20px;
    list-style: none
}

.nav-menu li a {
    color: #000;
    font-weight: 500;
    text-decoration: none;
    transition: color .3s ease
}

.nav-menu li a:hover {
    color: #007bff
}

.navegacion {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    position: relative;
    z-index: 1000
}

@media (max-width:767px) {

    .nav-overlay,
    .navegacion #menu {
        display: none
    }

    #logo {
        align-items: center;
        display: flex;
        float: none;
        height: auto;
        justify-content: center;
        margin: 0 auto;
        padding: 0
    }

    #logo a {
        font-size: 1.3rem;
        line-height: normal;
        text-align: center
    }

    .frontPage #menu {
        display: flex;
        justify-content: center;
        margin-top: 2rem
    }

    .frontPage .nav-menu {
        display: grid;
        gap: 1rem 1.5rem;
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        justify-content: center;
        list-style: none;
        padding: 0
    }

    .frontPage .nav-menu li {
        text-align: center
    }

    .frontPage .nav-menu li a {
        backdrop-filter: blur(6px);
        background: hsla(0, 0%, 100%, .1);
        border-radius: 12px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
        color: #fff;
        display: block;
        font-size: 1rem;
        font-weight: 600;
        padding: .8rem 1.2rem;
        text-decoration: none;
        transition: all .3s ease
    }

    .frontPage .nav-menu li a:hover {
        background: hsla(0, 0%, 100%, .2);
        color: #e1d4c9;
        transform: translateY(-2px)
    }
}

@media only screen and (min-width:768px) {
    .frontPage #menu {
        display: none
    }

    #menu {
        background: none;
        float: right;
        position: relative;
        top: 0;
        width: auto
    }

    #menu ul {
        background: transparent;
        display: flex;
        margin: 0;
        padding: 0
    }

    #menu li a {
        color: #fff;
        padding: 0 26px
    }
}

.search-overlay {
    align-items: center;
    backdrop-filter: blur(6px);
    background: hsla(0, 0%, 6%, .92);
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: all .4s ease;
    visibility: hidden;
    width: 100%;
    z-index: 9999
}

.search-overlay.active {
    opacity: 1;
    visibility: visible
}

.search-box {
    animation: fadeInUp .5s ease forwards;
    background: hsla(0, 0%, 100%, .08);
    border: 1px solid hsla(0, 0%, 100%, .25);
    border-radius: 1rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, .3);
    color: #fff;
    max-width: 500px;
    padding: 3rem 2.5rem;
    position: relative;
    text-align: center;
    width: 90%
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.close-search {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 2rem;
    position: absolute;
    right: 15px;
    top: 10px;
    transition: transform .2s ease
}

.close-search:hover {
    transform: scale(1.2)
}

.search-title {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1.5rem
}

.search-form-overlay {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: center
}

.search-form-overlay input {
    background: hsla(0, 0%, 100%, .15);
    border: none;
    border-radius: .8rem;
    color: #fff;
    font-size: 1rem;
    outline: none;
    padding: .8rem 1rem;
    transition: background .3s ease;
    width: 100%
}

.search-form-overlay input::-moz-placeholder {
    color: hsla(0, 0%, 100%, .7)
}

.search-form-overlay input::placeholder {
    color: hsla(0, 0%, 100%, .7)
}

.search-form-overlay input:focus {
    background: hsla(0, 0%, 100%, .25)
}

.search-form-overlay button {
    background: #756e71;
    border: none;
    border-radius: .8rem;
    color: #fff;
    cursor: pointer;
    padding: .8rem 1rem;
    transition: background .3s ease, transform .2s ease
}

.search-form-overlay button:hover {
    background: #ff77b5;
    transform: scale(1.05)
}

.nav-menu li a i.fa-magnifying-glass {
    font-size: 1.1rem;
    transition: color .3s ease, transform .2s ease
}

.footer {
    background-color: #111;
    color: #f5f5f5;
    font-family: Lato, sans-serif;
    padding: 3rem 1.5rem
}

.footer__contenedor {
    margin: 0 auto;
    max-width: 1200px
}

.footer__contenido {
    align-items: center;
    flex-direction: column
}

.footer__contenido,
.footer__nav {
    display: flex;
    gap: 2rem
}

.footer__enlace {
    color: #f5f5f5;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .3s ease, transform .3s ease
}

.footer__enlace:hover {
    color: #e1d4c9;
    transform: translateY(-2px)
}

.footer__copyright-container {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    text-align: center
}

.footer__copyright {
    color: #aaa;
    font-size: .9rem;
    margin: 0
}

.footer__social-icon {
    color: #f5f5f5;
    font-size: 1.3rem;
    transition: color .3s ease, transform .3s ease
}

.footer__social-icon:hover {
    color: #25d366;
    transform: scale(1.1)
}

@media (max-width:600px) {
    .footer__nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center
    }
}

:root {
    --primary: #e1d4c9;
    --negro: #262626;
    --blanco: #fff;
    --fuente-principal: "Inter", sans-serif
}

a {
    color: inherit;
    font-weight: 400;
    text-decoration: none
}

.imagenes {
    height: 300px;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    width: 300px
}

html {
    box-sizing: border-box;
    font-size: 62.5%
}

*,
:after,
:before {
    box-sizing: inherit
}

body {
    flex: 1;
    font-family: var(--fuente-principal);
    font-size: 2rem;
    line-height: 1.5
}

@keyframes shift {
    0% {
        background-position: 0 0, 0 0, 10px 10px, 20px 20px
    }

    to {
        background-position: 50px 50px, -50px -50px, 60px 60px, 80px 80px
    }
}

img {
    max-width: 100%
}

[class*=contenedor] {
    margin: 0 auto;
    max-width: 120rem;
    width: 95%
}

.separator {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0;
    width: 100%
}

.spinner {
    height: 9px;
    left: 50%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 9px
}

.spinner div {
    animation: spinner-fzua35 1s calc(var(--delay)*1s) infinite ease;
    background: #000;
    height: 150%;
    position: absolute;
    transform: rotate(calc(var(--rotation)*1deg)) translateY(calc(var(--translation)*1%));
    width: 50%
}

.spinner div:first-child {
    --delay: 0.1;
    --rotation: 36;
    --translation: 150
}

.spinner div:nth-child(2) {
    --delay: 0.2;
    --rotation: 72;
    --translation: 150
}

.spinner div:nth-child(3) {
    --delay: 0.3;
    --rotation: 108;
    --translation: 150
}

.spinner div:nth-child(4) {
    --delay: 0.4;
    --rotation: 144;
    --translation: 150
}

.spinner div:nth-child(5) {
    --delay: 0.5;
    --rotation: 180;
    --translation: 150
}

.spinner div:nth-child(6) {
    --delay: 0.6;
    --rotation: 216;
    --translation: 150
}

.spinner div:nth-child(7) {
    --delay: 0.7;
    --rotation: 252;
    --translation: 150
}

.spinner div:nth-child(8) {
    --delay: 0.8;
    --rotation: 288;
    --translation: 150
}

.spinner div:nth-child(9) {
    --delay: 0.9;
    --rotation: 324;
    --translation: 150
}

.spinner div:nth-child(10) {
    --delay: 1;
    --rotation: 360;
    --translation: 150
}

@keyframes spinner-fzua35 {

    0%,
    10%,
    20%,
    30%,
    50%,
    60%,
    70%,
    80%,
    90%,
    to {
        transform: rotate(calc(var(--rotation)*1deg)) translateY(calc(var(--translation)*1%))
    }

    50% {
        transform: rotate(calc(var(--rotation)*1deg)) translateY(calc(var(--translation)*1.5%))
    }
}

.n_coleccion-label,
.oferta-label,
.u_unidades-label {
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
    padding: 4px 8px;
    white-space: nowrap;
    z-index: 10
}

.oferta-label {
    background: linear-gradient(135deg, #ff4d4d, #ff1a1a)
}

.u_unidades-label {
    background: linear-gradient(135deg, #ffb347, #fc3)
}

.n_coleccion-label {
    background: linear-gradient(135deg, #333, #000)
}

.precio-tachado {
    color: #aaa;
    font-size: 15px
}

.precio-oferta {
    color: #e63946;
    font-size: 17px
}

.producto__colores {
    display: flex;
    justify-content: center;
    margin-bottom: .6rem
}

.shop-layout {
    align-items: flex-start;
    justify-content: flex-start
}

.producto__imagen-container {
    align-items: center;
    display: flex;
    height: 30rem;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%
}

@media (max-width:767px) {
    .producto__imagen-container {
        height: 30rem
    }
}

@media (max-width:341px) {
    .producto__imagen-container {
        height: 28rem
    }
}

.producto__imagen {
    border-radius: .5rem .5rem 0 0;
    cursor: pointer;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
    transition: transform .3s ease, filter .3s ease;
    width: auto
}

.producto__imagen:hover {
    filter: brightness(1.05);
    transform: scale(1.05)
}

.productos__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(4, 1fr)
}

@media (min-width:768px) {
    .productos__grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media (min-width:341px) and (max-width:767px) {
    .productos__grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:341px) {
    .productos__grid {
        grid-template-columns: 1fr
    }

    .producto__imagen-container {
        height: auto;
        min-height: 22rem
    }
}

.producto {
    align-items: center;
    background: #fff;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    overflow: hidden;
    text-align: center;
    transform: translateY(50px);
    transition: opacity .6s ease-out, transform .6s ease-out
}

.producto.show {
    opacity: 1;
    transform: translateY(0)
}

.producto__contenido {
    padding: 1.4rem 1rem
}

.producto__nombre {
    color: #222;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0
}

.producto__sobre-consulta {
    color: #000;
    font-family: Montserrat, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin: .5rem 0 1rem;
    text-align: center
}

.producto__sobre-consulta b {
    font-weight: 700
}

.labels-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    left: 10px;
    padding: .4rem;
    position: absolute;
    top: 10px;
    z-index: 1
}

.filter-indicators {
    margin: 10px 0
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.filter-indicator {
    background-color: #f3f3f3;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #555;
    font-size: 12px;
    padding: 6px 10px;
    transition: all .2s ease
}

.filter-indicator:hover {
    background-color: #e7e7e7
}

.remove-filter {
    color: #d9534f;
    cursor: pointer;
    font-weight: 400;
    margin-left: 5px
}

.filter-line {
    border: none;
    border-top: 1px solid #ddd
}

.pagination {
    align-items: center;
    display: flex;
    font-family: Inter, sans-serif;
    font-size: 14px;
    gap: 10px;
    justify-content: center;
    margin: 20px 0
}

.pagination a,
.pagination span {
    background-color: transparent;
    color: #0f0e0e;
    cursor: pointer;
    display: inline-block;
    padding: 8px 12px;
    text-decoration: none;
    transition: all .3s ease
}

.pagination .disabled {
    color: #ccc;
    cursor: not-allowed
}

.pagination a {
    border-radius: 8px
}

.pagination .active {
    background-color: #0f0e0e;
    color: #fff;
    font-weight: 600
}

.pagination span {
    font-weight: 700
}

.order-container {
    margin-bottom: 2rem;
    text-align: right
}

.order-form {
    display: flex
}

.order-select {
    background-color: #f0f0f0;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    margin-right: 1rem;
    padding: 1rem 1.5rem;
    transition: background-color .3s, color .3s
}

.order-select:hover {
    background-color: #e0e0e0;
    cursor: pointer
}

.order-select:focus {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    outline: none
}

.filter-title {
    font-size: 1.5rem;
    margin-bottom: 10px
}

.filter-title,
.toggle-icon {
    cursor: pointer;
    font-weight: 700
}

.toggle-icon {
    font-size: 20px
}

.filter-options {
    margin-bottom: 20px;
    padding-left: 10px
}

.filter-container {
    margin-right: 2rem;
    overflow: visible
}

.filter-option {
    align-items: center;
    display: flex;
    margin-bottom: 1rem
}

.filter-option input[type=checkbox] {
    margin-right: 8px
}

.filter-option label {
    color: var(--negro);
    font-size: 1rem
}

.filter-container h3 {
    font-size: 1rem;
    margin-bottom: 1rem
}

.price-range {
    align-items: center;
    display: flex;
    gap: 8px
}

.price-range input[type=number] {
    border: 1px solid #bbb;
    border-radius: 3px;
    font-size: .9rem;
    padding: 6px;
    width: 80px
}

.price-range span {
    font-size: 1rem
}

.filter-buttons {
    display: flex;
    gap: 12px;
    margin-top: 1rem
}

.filter-buttons a,
.filter-buttons button {
    border-radius: 5px;
    color: #fff;
    font-size: .9rem;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s ease, transform .2s
}

.filter-buttons button {
    background-color: #222;
    border: none;
    border-radius: 10rem;
    font-size: 1rem;
    font-weight: 600;
    padding: .6rem 1.5rem;
    transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease
}

.filter-buttons button:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    transform: translateY(-2px)
}

.filter-buttons a {
    background-color: #444;
    border-radius: 10rem;
    color: #fff;
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    padding: .6rem 1.5rem;
    text-decoration: none;
    transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease
}

.filter-buttons a:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    transform: translateY(-2px)
}

.filter-buttons a,
.filter-buttons button {
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1)
}

.sidebar {
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, .3);
    height: 100%;
    left: -100%;
    overflow-y: auto;
    padding: 1rem;
    position: fixed;
    top: 0;
    transition: left .3s ease;
    width: 300px;
    z-index: 1000
}

.sidebar.active {
    left: 0
}

.overlay {
    background: rgba(0, 0, 0, .4);
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999
}

.overlay.active {
    display: block
}

.open-filters-btn {
    background-color: #000;
    border: none;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 500;
    height: 40px;
    line-height: 1.2;
    margin-bottom: 0;
    min-width: 120px;
    padding: 8px 20px;
    transition: transform .2s ease, box-shadow .2s ease
}

.open-filters-btn:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    transform: scale(1.05)
}

.shop-layout {
    display: flex;
    flex-direction: row;
    gap: 20px
}

.products-container {
    flex: 1
}

@media (max-width:1024px) {
    .shop-layout {
        flex-direction: column
    }

    .sidebar {
        width: 80%
    }

    .products-container {
        width: 100%
    }

    .open-filters-btn {
        display: inline-block
    }
}

.product-detail-container {
    color: #222;
    font-family: Poppins, Segoe UI, sans-serif;
    margin: 0 auto;
    max-width: 1200px;
    padding: 2rem
}

.product-detail {
    align-items: center;
    background-color: #fff;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    padding: 2rem;
    text-align: center
}

.product-image {
    border-radius: 1rem;
    height: auto;
    margin-bottom: 2rem;
    max-width: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .4s ease, filter .3s ease;
    width: 100%
}

.product-image:hover {
    filter: brightness(1.05);
    transform: scale(1.03)
}

.product-info {
    max-width: 800px
}

.titulo__detalle {
    color: #111;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 1rem
}

.product-stock {
    color: #4caf50;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .5px
}

.product-stock[data-initial-stock="0"] {
    color: #e53935
}

.product-description {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem
}

.product-prices {
    gap: 1.2rem;
    margin: 1rem 0
}

.precio-tachado {
    color: #888;
    font-size: 1.3rem
}

.precio-oferta {
    font-size: 1.6rem
}

.producto__precio {
    color: #111;
    display: block;
    font-size: 1.5rem;
    margin: 1rem 0
}

.whatsapp-button {
    align-items: center;
    background-color: #25d366;
    border-radius: 1rem;
    color: #fff;
    display: inline-flex;
    font-size: 1.1rem;
    font-weight: 600;
    gap: .6rem;
    justify-content: center;
    padding: .9rem 1.6rem;
    text-decoration: none;
    transition: all .3s ease
}

.whatsapp-button:hover {
    background-color: #1ebe57;
    transform: translateY(-2px)
}

.volver-tienda-link {
    color: #666;
    display: inline-block;
    font-weight: 500;
    margin-top: 1rem;
    text-decoration: none;
    transition: color .3s ease
}

.volver-tienda-link:hover {
    color: #111
}

.related-products {
    background-color: #fafafa;
    border-radius: 1.5rem
}

.related-products__title {
    color: #333;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase
}

.related-products__item {
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
    padding: 1.5rem;
    transition: all .3s ease
}

.related-products__item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, .12)
}

.related-products__image-wrapper {
    background-color: #f3f3f3;
    border-radius: 1rem;
    height: 180px;
    margin-bottom: 1rem
}

.related-products__image {
    -o-object-fit: contain;
    object-fit: contain;
    transition: transform .3s ease;
    width: auto
}

.related-products__name {
    margin-bottom: .4rem
}

.related-products__description {
    color: #666;
    font-size: .95rem;
    line-height: 1.4;
    text-align: center
}

@media (max-width:768px) {
    .titulo__detalle {
        font-size: 2rem
    }

    .related-products__list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))
    }
}

@media (max-width:480px) {
    .titulo__detalle {
        font-size: 1.8rem
    }
}

@media (min-width:769px) {
    .product-detail {
        align-items: flex-start;
        flex-direction: row;
        gap: 4rem;
        margin-bottom: 5rem;
        text-align: left
    }

    .product-image {
        border-radius: 1.5rem;
        margin-bottom: 0;
        max-width: 520px
    }

    .product-info {
        display: flex;
        flex-direction: column;
        gap: 1.8rem;
        max-width: 600px
    }

    .titulo__detalle {
        font-size: 3rem
    }

    .product-description {
        font-size: 1.2rem;
        line-height: 1.8
    }

    .product-prices {
        align-items: baseline;
        display: flex;
        font-size: 1.6rem;
        gap: 1.5rem
    }

    .precio-tachado {
        font-size: 1.4rem
    }

    .precio-oferta {
        font-size: 1.9rem
    }

    .whatsapp-button {
        font-size: 1.1rem;
        padding: 1rem 1.6rem
    }
}

.pr {
    color: red
}

.related-products {
    background-color: #fff;
    border-radius: 0;
    border-top: 1px solid #eee;
    margin-top: 4rem;
    padding: 3rem 1rem;
    text-align: center
}

.related-products__title {
    color: #222;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 2.5rem
}

.related-products__list {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-items: center
}

.related-products__item {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    max-width: 300px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    width: 100%
}

.related-products__item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    transform: translateY(-6px)
}

.related-products__image-wrapper {
    align-items: center;
    background-color: #f7f7f7;
    display: flex;
    height: 240px;
    justify-content: center;
    overflow: hidden;
    width: 100%
}

.related-products__image {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .4s ease;
    width: 100%
}

.related-products__item:hover .related-products__image {
    transform: scale(1.05)
}

.related-products__info {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    padding: 1.5rem;
    text-align: center
}

.related-products__name {
    color: #222;
    font-size: 1.2rem;
    font-weight: 600
}

.product-prices {
    align-items: baseline;
    display: flex;
    font-size: 5rem;
    gap: .8rem;
    justify-content: center
}

.precio-tachado {
    color: #999;
    text-decoration: line-through
}

.precio-oferta {
    color: #e53935;
    font-size: 1.3rem;
    font-weight: 700
}

.producto__precio {
    color: #222;
    font-weight: 600
}

.related-products__link {
    background-color: #222;
    border-radius: .8rem;
    display: inline-block;
    font-weight: 500;
    padding: .7rem 1.3rem;
    transition: background-color .3s ease, transform .2s ease
}

.related-products__link:hover {
    background-color: #000;
    transform: translateY(-2px)
}

@media (max-width:768px) {
    .related-products__title {
        font-size: 1.8rem
    }

    .related-products__item {
        max-width: 100%
    }
}

@media (max-width:480px) {
    .related-products__title {
        font-size: 1.6rem
    }

    .product-prices {
        font-size: 1rem
    }
}

.related-services {
    margin-top: 4rem;
    padding: 4rem 1rem;
    text-align: center
}

.related-services__title {
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem
}

.related-services__list {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    margin: 0 auto;
    max-width: 1400px;
    width: 100%
}

.related-services__item {
    align-items: center;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    transition: all .3s ease;
    width: 100%
}

.related-services__item:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
    transform: translateY(-8px)
}

.related-services__image-wrapper {
    border-radius: 1rem;
    height: 400px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    width: 100%
}

.related-services__image {
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    transition: transform .3s ease;
    width: 100%
}

.related-services__item:hover .related-services__image {
    transform: scale(1.05)
}

.related-services__name {
    color: #222;
    font-size: 1.4rem;
    font-weight: 600;
    margin: .8rem 0 .5rem
}

.related-products__link {
    background-color: #272525;
    border-radius: 8px;
    color: #fff;
    display: block;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: .8rem 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: background-color .3s ease, transform .3s ease
}

@media (max-width:1200px) {
    .related-services__list {
        gap: 2rem;
        grid-template-columns: repeat(3, 1fr)
    }

    .related-services__image-wrapper {
        height: 350px
    }
}

@media (max-width:992px) {
    .related-services__list {
        gap: 1.8rem;
        grid-template-columns: repeat(2, 1fr)
    }

    .related-services__image-wrapper {
        height: 300px
    }
}

@media (max-width:768px) {
    .related-services__list {
        gap: 1.5rem;
        grid-template-columns: 1fr
    }

    .related-services__image-wrapper {
        height: 350px
    }
}

.servicio__imagen-container {
    align-items: center;
    border-radius: 1rem 1rem 0 0;
    display: flex;
    height: 45rem;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%
}

@media (max-width:767px) {
    .servicio__imagen-container {
        height: 45rem
    }
}

@media (max-width:341px) {
    .servicio__imagen-container {
        height: 28rem
    }
}

.servicio__imagen {
    cursor: pointer;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
    transition: transform .35s ease, filter .35s ease;
    width: 100%
}

.servicio__imagen:hover {
    filter: brightness(1.05);
    transform: scale(1.05)
}

.servicios__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
    max-width: 1400px;
    padding: 2rem 1rem;
    width: 100%
}

.servicio-link {
    color: inherit;
    display: block;
    text-decoration: none;
    transition: transform .3s ease
}

.servicio-link:hover {
    transform: translateY(-5px)
}

@media (min-width:768px) {
    .servicios__grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (min-width:341px) and (max-width:767px) {
    .servicios__grid {
        grid-template-columns: repeat(1, 1fr)
    }
}

@media (max-width:341px) {
    .servicios__grid {
        grid-template-columns: 1fr
    }

    .producto__imagen-container {
        height: auto;
        min-height: 22rem
    }
}

.servicio {
    align-items: center;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    text-align: center;
    transition: box-shadow .35s ease, transform .35s ease
}

.servicio:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    transform: translateY(-5px)
}

.servicio__contenido {
    padding: 1.4rem 1rem
}

.servicio__nombre {
    color: #111;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .5rem;
    transition: color .3s ease
}

.servicio:hover .servicio__nombre {
    color: #000
}

.servicio__precioprecio {
    background: #f4f4f4;
    border-radius: .5rem;
    color: #000;
    font-size: 1rem;
    font-weight: 500;
    margin-top: .3rem;
    padding: .3rem .6rem;
    transition: transform .3s ease, box-shadow .3s ease
}

.servicio:hover .servicio__precioprecio {
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    transform: scale(1.05)
}

.servicio {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .6s ease-out, transform .6s ease-out
}

.servicio.show {
    opacity: 1;
    transform: translateY(0)
}

.video-section {
    color: #fff;
    display: flex;
    height: 75vh;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%
}

.video-section .video-bg {
    filter: brightness(.45);
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -2
}

.video-section .overlay,
.video-section .video-bg {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.video-section .overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .55));
    z-index: -1
}

.video-section .frontPage {
    left: 50%;
    max-width: 700px;
    position: absolute;
    text-align: center;
    top: 28%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 5
}

.video-section .address {
    color: #fff;
    font-family: var(--font-02);
    font-size: 1.5rem;
    margin-bottom: 1.2rem
}

.video-section .heading {
    color: #fff;
    font-family: Philosopher, sans-serif;
    font-size: 4.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    text-transform: uppercase
}

.video-section .heading span {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 700;
    letter-spacing: .1em;
    position: relative;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, .3);
    text-transform: uppercase
}

.video-section .para {
    color: #f2f2f2;
    font-family: var(--font-01);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem
}

.video-section .btn {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center
}

.video-section .btn a {
    background: hsla(0, 0%, 100%, .12);
    border: 1px solid hsla(0, 0%, 100%, .25);
    border-radius: 3rem;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    letter-spacing: .5px;
    padding: 1rem 2.3rem;
    text-decoration: none;
    transition: all .3s ease
}

.transform-img {
    bottom: 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 100%;
    z-index: 9
}

.transform-img img {
    bottom: -1px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    transform: rotate(180deg);
    width: 100%
}

.sectionSecond {
    align-items: center;
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
    padding: 6rem 2%
}

.sectionSecond .fourIMG {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr)
}

.sectionSecond .fourIMG img:nth-child(odd) {
    margin-top: 20px;
    transform: rotate(-3deg)
}

.sectionSecond .fourIMG img:nth-child(2n) {
    margin-top: 0;
    transform: rotate(2deg)
}

.sectionSecond .fourIMG img {
    border-radius: 10px;
    height: 420px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all .4s ease;
    width: 100%
}

.sectionSecond .fourIMG img:hover {
    transform: scale(1.1) rotate(0deg)
}

.sectionSecond .textInfo {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    max-width: 500px
}

.sectionSecond .textInfo .greet {
    color: var(--global-color-0);
    font-family: var(--font-02);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase
}

.sectionSecond .textInfo .title {
    color: var(--global-color-1);
    font-family: var(--font-02);
    font-size: 3.5rem;
    font-weight: 800;
    position: relative
}

.sectionSecond .textInfo .title:after {
    background: var(--global-color-1);
    border-radius: 3px;
    content: "";
    display: block;
    height: 5px;
    margin-top: 1rem;
    width: 80px
}

.sectionSecond .textInfo .para {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.8em
}

.sectionSecond .textInfo .btn {
    align-self: flex-start;
    background-color: var(--global-color-1);
    border: none;
    border-radius: 30px;
    color: var(--global-color-4);
    font-weight: 600;
    padding: 15px 50px;
    text-decoration: none;
    transition: all .3s ease
}

.sectionSecond .textInfo .btn:hover {
    background-color: var(--global-color-0);
    transform: translateY(-2px)
}

@media (max-width:992px) {
    .sectionSecond {
        gap: 1.5rem;
        grid-template-columns: 1fr
    }

    .sectionSecond .fourIMG {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem 1rem 10rem
    }

    .sectionSecond .fourIMG img {
        height: 350px
    }

    .sectionSecond .textInfo {
        align-items: center;
        gap: 1.5rem;
        text-align: center
    }

    .sectionSecond .textInfo .title {
        font-size: 2rem
    }

    .sectionSecond .textInfo .greet {
        font-size: 1.3rem
    }

    .sectionSecond .textInfo .btn {
        font-size: 1rem;
        padding: 15px 50px
    }
}

@media (max-width:768px) {
    .sectionSecond .fourIMG {
        gap: 1rem;
        grid-template-columns: 1fr;
        padding: 2rem 0 8rem
    }

    .sectionSecond .fourIMG img {
        height: 180px
    }

    .sectionSecond .textInfo .title {
        font-size: 1.8rem
    }

    .sectionSecond .textInfo .greet {
        font-size: 1.1rem
    }

    .sectionSecond .textInfo .btn {
        font-size: .95rem;
        padding: 12px 40px
    }
}

@media (max-width:480px) {
    .sectionSecond .fourIMG img {
        height: 150px
    }

    .sectionSecond .textInfo .title {
        font-size: 1.5rem
    }

    .sectionSecond .textInfo .greet {
        font-size: 1rem
    }

    .sectionSecond .textInfo .btn {
        font-size: .9rem;
        padding: 10px 30px
    }
}

.services {
    background-color: var(--global-color-5);
    padding: 5rem 3%;
    text-align: center
}

.services .section-title {
    color: var(--global-color-1);
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 3rem
}

.services__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-content: center
}

.service-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease
}

.service-card:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, .15);
    transform: translateY(-8px)
}

.service-card__imagen-container {
    border-radius: 1rem 1rem 0 0;
    height: 45rem;
    overflow: hidden;
    position: relative;
    width: 100%
}

.service-card__imagen {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: transform .3s ease, filter .3s ease;
    width: 100%
}

.service-card__imagen:hover {
    filter: brightness(1.1);
    transform: scale(1.08)
}

.service-card__precio {
    background: rgba(0, 0, 0, .6);
    border-radius: .5rem;
    bottom: 1rem;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 900;
    padding: 1.5rem;
    position: absolute;
    right: 1rem;
    z-index: 2
}

.service-card__contenido {
    flex: 1;
    padding: 1.6rem 1.2rem
}

.service-card__contenido h3 {
    color: #222;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: .8rem
}

.service-card__contenido p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5
}

@media (max-width:992px) {
    .service-card__imagen-container {
        height: 40rem
    }
}

@media (max-width:600px) {
    .service-card__imagen-container {
        height: 40rem
    }

    .services .section-title {
        font-size: 2rem
    }

    .service-card__contenido h3 {
        font-size: 1.1rem
    }

    .service-card__contenido p {
        font-size: .95rem
    }
}

.btn-primary {
    background-color: #222;
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    padding: .8rem 2rem;
    text-decoration: none;
    transition: all .3s ease
}

.btn-primary:hover {
    background-color: #555;
    transform: translateY(-2px)
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 4rem 2%
}

.testimonial-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    max-width: 300px;
    padding: 6rem;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease
}

.testimonial-card:hover {
    box-shadow: 0 18px 30px rgba(0, 0, 0, .12);
    transform: translateY(-8px)
}

.testimonial-card h4 {
    font-weight: 700;
    margin-top: 10px
}

.testimonial-card p {
    color: #555;
    font-style: italic;
    margin-bottom: 1rem
}

.testimonial-card span {
    font-weight: 600
}

@media (max-width:768px) {
    .testimonial-card {
        max-width: 90%
    }
}

@media (max-width:992px) {
    .sectionSecond {
        gap: 1.5rem;
        grid-template-columns: 1fr
    }

    .sectionSecond .fourIMG {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem 1rem 10rem
    }

    .sectionSecond .fourIMG img {
        height: 200px
    }

    .sectionSecond .textInfo {
        align-items: center;
        gap: 1.5rem;
        text-align: center
    }

    .sectionSecond .textInfo .title {
        font-size: 2rem
    }

    .sectionSecond .textInfo .greet {
        font-size: 1.3rem
    }

    .sectionSecond .textInfo .btn {
        font-size: 1rem;
        padding: 15px 50px
    }
}

@media (max-width:768px) {
    .video-section {
        height: auto;
        min-height: 50vh;
        padding: 0
    }

    .video-section .heading {
        font-size: 2.8rem;
        margin-bottom: 1rem
    }

    .video-section .para {
        font-size: 1.05rem
    }
}

@media (max-width:480px) {
    .video-section {
        min-height: 60vh;
        padding: 2rem 1rem
    }

    .video-section .heading {
        font-size: 2rem
    }

    .video-section .para {
        font-size: .95rem
    }
}

.video-section svg,
.video-section video {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

@media (max-width:768px) {
    .video-section .transform-img {
        display: none
    }
}

.custom-slider {
    margin: 0 auto;
    max-width: 80%;
    overflow: hidden;
    position: relative;
    width: 80%
}

.custom-slider-container {
    display: flex;
    transition: transform .5s ease-in-out
}

.custom-slider-item {
    align-items: center;
    display: flex;
    flex: 0 0 25%;
    justify-content: center
}

.custom-slider-item img {
    height: auto;
    max-height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 80%
}

.custom-left-arrow,
.custom-right-arrow {
    background-color: rgba(0, 0, 0, .5);
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10
}

.custom-left-arrow {
    left: 10px
}

.custom-right-arrow {
    right: 10px
}

.slider-container {
    overflow: hidden;
    position: relative;
    width: 100%
}

.product-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 4rem;
    scroll-behavior: smooth;
    width: 100%
}

.product-track::-webkit-scrollbar {
    display: none
}

.product-card {
    backdrop-filter: blur(20px);
    background-color: hsla(0, 0%, 100%, .15);
    border: 1px solid rgba(144, 161, 255, .171);
    border-radius: 16px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
    cursor: pointer;
    flex: 0 0 300px;
    overflow: hidden;
    padding: 1.5rem;
    position: relative;
    text-align: center;
    transition: .4s;
    transition: transform .3s ease, box-shadow .3s ease
}

.product-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, .2);
    transform: scale(1.1)
}

.product-track:hover>.product-card:not(:hover) {
    filter: blur(5px);
    transform: scale(.9)
}

.product-card img {
    border-radius: 16px;
    height: 280px;
    -o-object-fit: contain;
    object-fit: contain;
    transition: transform .3s ease;
    width: 100%
}

.product-card h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1.5rem 0 .5rem
}

.product-card .producto__precio {
    color: #000;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.product-card .producto__btn {
    background-color: #28a745;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    padding: .75rem 1.5rem;
    transition: background-color .3s ease, transform .3s ease
}

.product-card .producto__btn:hover {
    background-color: #218838;
    transform: scale(1.05)
}

.slider-arrow {
    align-items: center;
    background-color: hsla(0, 0%, 100%, .9);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    color: #333;
    cursor: pointer;
    display: flex;
    font-size: 2rem;
    height: 60px;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .3s ease, transform .3s ease;
    width: 60px;
    z-index: 10
}

.slider-arrow:hover {
    opacity: .9;
    transform: translateY(-50%)
}

.left-arrow {
    left: 20px
}

.right-arrow {
    right: 20px
}

.slider-arrow.disabled {
    cursor: not-allowed;
    opacity: .5;
    transform: translateY(-50%) scale(1)
}

@media (max-width:768px) {
    .product-card {
        flex: 0 0 90%;
        margin: 0 5px
    }

    .slider-arrow {
        display: none
    }

    .product-track {
        gap: 1rem
    }

    .product-card .producto__precio,
    .product-card h3 {
        font-size: 1.2rem
    }

    .product-card img {
        height: 220px
    }
}

/*# sourceMappingURL=app.min.css.map */