@charset "UTF-8";
@font-face {
  font-family: "Coves-Light";
  src: url("/assets/fonts/Coves-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Coves-Bold";
  src: url("/assets/fonts/Coves-Bold.woff") format("woff");
  font-weight: bold;
  font-style: bold;
}
/* Links */
a, a:visited {
  text-decoration: none;
}

a.text-dark:hover {
  color: var(--primary) !important;
}

/* Links */
/* Accordieon */
.accordion-item {
  border: none !important;
  border-bottom: 1px solid #ccc !important;
}
.accordion-item .accordion-button:focus {
  box-shadow: none !important;
}
.accordion-item .accordion-button:not(.collapsed) {
  color: inherit !important;
  background-color: transparent !important;
}
.accordion-item .accordion-body {
  padding-top: 0 !important;
}
.accordion-item .accordion-body .content {
  padding: 15px !important;
  background-color: #f1f1f1 !important;
  border-radius: 10px !important;
}

/* Accordieon */
/* Badge */
.badge > button {
  background: transparent;
  border: none;
  color: inherit;
  padding-right: 0;
}

/* Badge */
/* Btn */
.btn {
  background-color: transparent;
  border: 2px solid;
  color: var(--black);
  font-weight: 800;
}
.btn-link {
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
}
.btn:hover {
  color: var(--white);
}
.btn:hover i {
  color: var(--white);
}
.btn-primary {
  border-color: var(--primary);
}
.btn-secondary {
  border-color: var(--secondary);
}
.btn-tertiary {
  border-color: var(--tertiary);
}
.btn-gradient {
  background: linear-gradient(90deg, rgb(194, 15, 27) 0%, rgb(97, 8, 14) 100%);
  color: var(--white);
  border-color: transparent;
  border: none;
}
.btn-gradient i {
  color: var(--white);
}

.btn-anim {
  position: relative;
  overflow: hidden;
}
.btn-anim:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 2.5s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -100%;
    transition-property: left;
  }
  100% {
    left: 100%;
    transition-property: left;
  }
}
/* Btn */
/* Input */
.input-group-sm > input {
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
  flex: 0 0 auto !important;
  min-width: 50px !important;
  text-align: center !important;
}
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
}
.input-group-sm > .btn:first-child {
  border-radius: 1rem 0px 0px 1rem;
}
.input-group-sm > .btn:last-child {
  border-radius: 0px 1rem 1rem 0px;
}

/* Input */
/* Select */
.custom-select {
  appearance: button;
  -webkit-appearance: button;
  -moz-appearance: button;
  position: relative;
  cursor: pointer;
}
.custom-select::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 15px;
  pointer-events: none;
  transform: translateY(-50%);
  color: #333;
}

/* General styles for the select2 container */
.select2-container .select2-selection--single {
  height: 38px;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem; /* Borde redondeado */
  background-color: #fff;
  font-size: 1rem;
  color: #495057;
}

/* Adjust the placeholder text color */
.select2-container .select2-selection--single .select2-selection__placeholder {
  color: #adb5bd; /* Color similar al placeholder de la imagen */
}

/* Remove the default select2 arrow */
.select2-container .select2-selection--single .select2-selection__arrow {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 2.25rem; /* Ajuste del espacio a la derecha */
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Styles for the select2 dropdown */
.select2-container .select2-dropdown {
  border-radius: 0.375rem;
  border: 1px solid var(--border-color);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Remove default focus outline */
.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single:hover {
  outline: none;
  border-color: var(--border-color); /* Mantener el borde del mismo color en focus/hover */
}

/* Ensure the text is vertically centered */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.5;
  padding-left: 0.5rem;
  color: #495057;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--primary);
  color: var(--primary-contrast);
}

/* Select */
/* Field to input */
.info-to-field {
  position: relative;
}

.info-to-field > button {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  font-size: 0.8rem;
}

.info-to-field[aria-editing=true] > button,
.info-to-field[aria-editing=true] > span {
  display: none;
}

/* Field to input */
/* Colored icons */
.fa-whatsapp.colored {
  color: #25D366 !important;
}

/* Colored icons */
/* Bgs */
.bg-dark {
  background-color: var(--darkBlue) !important;
}
.bg-subfooter {
  background-color: var(--tertiary);
}
.bg-gradient-acse {
  background: linear-gradient(132deg, rgb(194, 15, 27) 25%, rgb(97, 8, 14) 100%);
}

/* Bgs */
.text-white {
  color: var(--white);
}
.text-black {
  color: var(--black);
}

.fw-800 {
  font-weight: 800;
}

/* Box */
.box-icon {
  padding-top: 25px;
  padding-bottom: 25px;
}
.box-icon i {
  font-size: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}
.box-icon img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
  margin: 30px auto;
}
.box-icon h4 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 25px;
}
.box-icon p {
  font-size: 0.9rem;
}
.box-image img {
  width: 80%;
  height: 250px;
  object-fit: contain;
  margin: 0 auto;
}

a.box-icon:hover {
  transform: scale(120%);
}

/* Box */
.display-1,
.display-2,
.display-3,
.display-4,
.display-5 {
  font-weight: 800;
}

/* Modal */
.modal .modal-content {
  border-radius: 15px;
  overflow: hidden;
}
.modal .modal-content .modal-header {
  background-color: var(--primary);
  color: var(--primary-contrast);
}
.modal .modal-content .modal-header .btn-close {
  color: var(--primary-contrast);
}
.modal .modal-content .modal-body .btn-close {
  position: absolute;
  top: -2px;
  right: 12px;
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}
.modal .modal-content img.logo {
  max-height: 75px;
  margin-bottom: 30px !important;
}
.modal-left .modal-dialog {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  margin: 0;
  width: 100%;
  max-width: 400px;
  transform: translateX(-100%) !important;
  transition: transform 0.3s ease-out !important;
}
.modal-left#modalMobileMenu .modal-dialog {
  max-width: 300px;
}
.modal-left .modal-content {
  height: 100%;
  border-radius: 0px 15px 15px 0px;
}
.modal-left .modal-header {
  border-top-left-radius: 0px;
}
.modal-left.show .modal-dialog {
  transform: translateX(0) !important;
}
.modal-right .modal-dialog {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  margin: 0;
  width: 100%;
  max-width: 400px;
  transform: translateX(100%) !important;
  transition: transform 0.3s ease-out !important;
}
.modal-right .modal-content {
  height: 100%;
  border-radius: 15px 0px 0px 15px;
}
.modal-right .modal-header {
  border-top-right-radius: 0px;
}
.modal-right.show .modal-dialog {
  transform: translateX(0) !important;
}

/* Modal */
/* Orders */
.order-6 {
  order: 6;
}

/* Orders */
/* Card */
.card {
  border-radius: 15px;
  overflow: hidden;
}
.card.card-colored {
  border-color: var(--primary);
}

/* Card */
/* Steps */
.steps .step-progress-bar .step-bar {
  --gap: 5px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.steps .step-progress-bar .step-bar > li {
  font-size: 0.8rem;
  color: #6C757E;
}
.steps .step-progress-bar .step-bar > li.active {
  color: #222;
  font-weight: 500;
}
.steps .step-progress-bar .step-bar > li:after {
  content: "·";
  display: inline-block;
  color: var(--primary);
  margin-left: var(--gap);
}
.steps .step-progress-bar .step-bar > li:last-child:after {
  content: "";
}
.steps .step {
  display: none;
}
.steps .step.active {
  display: block;
}

/* Steps */
/* Check inputs */
.no-grow {
  flex-grow: 0;
  flex-shrink: 0; /* Esto asegura que el elemento tampoco se reduzca si hay poco espacio */
  flex-basis: auto; /* Mantiene el tamaño automático del contenido */
}

.btn-input > input {
  display: none;
}
.btn-input > input + label {
  border: var(--primary) 1px solid;
  border-radius: 8px;
  padding-left: 15px !important;
  padding-right: 15px !important;
  padding-top: 8px;
  padding-bottom: 8px;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  color: var(--primary);
  transition: ease-in-out 0.3s all;
}
.btn-input > input + label.light {
  border-color: var(--bs-border-color);
  color: var(--bs-gray);
}
.btn-input > input + label.light.dark {
  color: #222;
}
.btn-input > input + label:before, .btn-input > input + label:after {
  display: none;
}
.btn-input > input:hover + label, .btn-input > input:checked + label {
  background: var(--primary);
  color: var(--primary-contrast);
}
.btn-input > input:hover + label:before, .btn-input > input:hover + label:after, .btn-input > input:checked + label:before, .btn-input > input:checked + label:after {
  display: none;
}
.btn-input > label {
  display: flex;
}

.grid-buttons {
  --gap: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: var(--gap);
}
.grid-buttons-c2 > .btn-input {
  width: calc(50% - var(--gap));
  max-width: calc(50% - var(--gap));
}
.grid-buttons-c3 > .btn-input {
  width: calc(33.3% - var(--gap));
}
@media (max-width: 767px) {
  .grid-buttons-c3 > .btn-input {
    width: calc(50% - var(--gap));
  }
}
.grid-buttons-c4 > .btn-input {
  width: calc(25% - (var(--gap)));
}
@media (max-width: 767px) {
  .grid-buttons-c4 > .btn-input {
    width: calc(50% - (var(--gap)));
  }
}
.grid-buttons-c5 > .btn-input {
  width: calc(20% - var(--gap));
}
@media (max-width: 767px) {
  .grid-buttons-c5 > .btn-input {
    width: calc(50% - var(--gap));
  }
}

/* Check inputs */
/* Form loader */
form .loader.full {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  gap: 10px;
}
form .loader.full > i {
  color: var(--primary);
  font-size: 1.3rem;
}
form .loader.show {
  display: flex;
}

.form-group {
  margin-bottom: 14px;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.form-step h5 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Form loader */
/* Empty */
.empty-msg:empty:after {
  content: attr(data-empty);
  text-align: center;
  width: 100%;
  display: block;
  color: #99abb4 !important;
  font-style: italic;
}

/* Empty */
.img-thumbnail {
  border-radius: 0.75rem;
  border: 2px solid var(--gray);
}

.img-full {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* Search */
.fsticky {
  position: sticky;
  top: 85px;
}

.search > .filters-applied {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.search > .filters-applied:empty {
  display: none;
}

/* Search */
/* Product Card */
.product-card {
  position: relative;
  display: block;
  border-radius: 10px;
  /* HTML:  clip-path: polygon(0 45%, 45% 0, 100% 0, 0 100%); */
}
.product-card:hover {
  color: #222;
}
.product-card img.brand {
  height: 50px;
  margin: 0px auto;
  margin-bottom: 8px;
  max-width: 100%;
  object-fit: contain;
}
.product-card img.img-fluid,
.product-card img.img-thumbnail {
  object-fit: contain;
}
.product-card .img-thumbnail {
  height: 350px;
  width: 100%;
}
.product-card .info {
  display: flex;
  flex-direction: column;
}
.product-card .info .name {
  flex: 1;
}
.product-card .info .desc {
  font-size: 1.02rem;
  font-weight: bold;
}
.product-card .info .price {
  font-weight: 800;
  font-size: 1.2rem;
}
.product-card .info .price > small {
  text-decoration: line-through;
}
.product-card .ribbon {
  background-color: var(--blue);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg) translate(-25%, -35%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
}

/* Product Card */
/* Product view */
#product .descrip {
  font-size: 0.9rem;
  margin: 2rem 0;
}
#product .category {
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 800;
}
#product .sku {
  color: var(--grayDark);
  font-weight: 800;
}
#product .price {
  color: var(--secondary);
}
#product form .vProductCounter [data-action=sub] {
  border-right: 0;
}
#product form .vProductCounter [data-action=add] {
  border-left: 0;
}
#product form .vProductCounter input {
  border-top: 2px solid var(--secondary);
  border-bottom: 2px solid var(--secondary);
  border-left: 0;
  border-right: 0;
}
#product .gallery {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}
#product .gallery .item {
  flex: 0 0 34%;
  scroll-snap-align: start;
}
#product .gallery .item img {
  object-fit: cover;
  width: 200px;
}

/* Product view */
/* Cart */
.cartIcon {
  position: relative;
}
.cartIcon > span {
  position: absolute;
  top: 0;
  right: 6px;
  background-color: #222;
  color: var(--primary-contrast);
  padding: 1px 4px;
  border-radius: 7.5px;
  font-size: 10px;
  min-width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-view, .cart-checkout {
  position: relative;
}
.cart-view .cart-loader, .cart-checkout .cart-loader {
  display: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  gap: 10px;
  transition: ease-in-out 0.2s all;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 9999;
}
.cart-view .cart-loader.show, .cart-checkout .cart-loader.show {
  opacity: 1;
  display: flex;
}
.cart-view .cart-content .header, .cart-checkout .cart-content .header {
  font-size: 0.8rem;
}
.cart-view .cart-content .item, .cart-checkout .cart-content .item {
  gap: 5px;
  border-bottom: 1px solid var(--bs-border-color);
}
.cart-view .cart-content .item:last-child, .cart-checkout .cart-content .item:last-child {
  border-bottom: none;
}
.cart-view .cart-content .item .image, .cart-checkout .cart-content .item .image {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cart-view .cart-content .item .name, .cart-checkout .cart-content .item .name {
  font-size: 0.9rem;
}
.cart-view .cart-content .item .price, .cart-checkout .cart-content .item .price {
  font-size: 0.8rem;
}
.cart-view .cart-resume, .cart-checkout .cart-resume {
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid var(--bs-border-color);
}
.cart-view .cart-resume > div:last-child, .cart-checkout .cart-resume > div:last-child {
  font-weight: bold;
}
.cart-view .cart-actions, .cart-checkout .cart-actions {
  padding-top: 5px;
  display: flex;
  justify-content: space-between;
}

/* Cart */
/* Header */
header {
  background-color: transparent;
  color: var(--white);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  font-size: 0.95rem;
}
header a, header a:visited, header .nav-link {
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}
header a:hover, header a:visited:hover, header .nav-link:hover {
  color: var(--primary);
}
header.scrolled {
  background-color: var(--header-bg);
  box-shadow: 0 0 20px var(--dark);
}
header.scrolled a, header.scrolled a:visited, header.scrolled .nav-link {
  color: var(--black);
}
header.scrolled a:hover, header.scrolled a:visited:hover, header.scrolled .nav-link:hover {
  color: var(--primary);
}
header.scrolled .mobile .btn-menu i {
  color: var(--dark);
}
header .nav-item img {
  max-width: 25px;
}
header .nav-item .btn-account {
  display: flex;
  align-items: center;
}
header .nav-item .btn-account img {
  margin-right: 0.5rem;
  max-width: 16px;
}
header .main {
  display: none;
}
header .main .navbar-brand > img {
  height: 60px;
}
@media (min-width: 1024px) {
  header .main {
    display: flex;
  }
}
header .mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .mobile i {
  font-size: 1.3rem;
  color: var(--white);
}
header .mobile .btn-menu {
  background: transparent;
  color: #222;
  border: none;
}
header .mobile .navbar-brand > img {
  height: 60px;
}
header .mobile .nav-link {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 1024px) {
  header .mobile {
    display: none;
  }
}

.menu a, .menu a:visited, .menu .nav-link {
  color: var(--dark);
}

.nav-contact {
  gap: 15px;
}
.nav-contact .wa-link, .nav-contact .fb-link, .nav-contact .ig-link, .nav-contact .tt-link {
  border-radius: 50%;
  padding: 0.5rem;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  background-color: var(--primary);
}
.nav-contact .wa-link i, .nav-contact .fb-link i, .nav-contact .ig-link i, .nav-contact .tt-link i {
  color: var(--white);
  font-size: 1rem;
}
.nav-contact .email {
  background-color: var(--senary);
}

#modalMobileMenu .modal-content .btn-close {
  color: var(--white);
  font-size: 1.5rem;
  opacity: 1;
}
#modalMobileMenu .modal-content .nav-item img {
  max-width: 25px;
}
#modalMobileMenu .modal-content .nav-item .btn-account {
  display: flex;
  align-items: center;
}
#modalMobileMenu .modal-content .nav-item .btn-account img {
  margin-right: 0.5rem;
  max-width: 16px;
}
#modalMobileMenu .modal-content .socials {
  padding-left: 1%;
}
#modalMobileMenu .modal-content .socials .wa-link, #modalMobileMenu .modal-content .socials .fb-link, #modalMobileMenu .modal-content .socials .ig-link, #modalMobileMenu .modal-content .socials .tt-link {
  border-radius: 50%;
  padding: 0.5rem;
  height: 30px;
  width: 30px;
  display: inline-flex;
  align-items: center;
  background-color: var(--primary);
}
#modalMobileMenu .modal-content .socials .wa-link i, #modalMobileMenu .modal-content .socials .fb-link i, #modalMobileMenu .modal-content .socials .ig-link i, #modalMobileMenu .modal-content .socials .tt-link i {
  color: var(--white);
  font-size: 1rem;
}

/* Header */
.subfooter .banner .container-banner {
  height: 350px;
}
.subfooter .banner .container-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.subfooter .f-item img {
  max-width: 170px;
}
@media (min-width: 1024px) {
  .subfooter .f-item img {
    max-width: 200px;
  }
}
.subfooter .menu {
  display: grid;
  gap: 10px;
  justify-content: center;
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  color: var(--white);
}
@media (min-width: 1024px) {
  .subfooter .menu {
    display: flex;
  }
  .subfooter .menu li:not(:last-child)::after {
    content: "|";
    margin: 0 0 0 10px; /* Espaciado a los lados de la línea */
    color: #ffffff; /* Color de la línea (blanco como en la imagen) */
    font-weight: 300; /* Grosor fino */
  }
}

/* Footer */
footer {
  font-size: 0.9rem;
  color: var(--white);
}
footer a, footer a:visited {
  color: var(--white);
}
footer p {
  margin-bottom: 0;
}
footer .logo {
  height: auto;
  width: auto;
  max-height: 90px;
  max-width: 100%;
  display: block;
}

/* Footer */
/* Body */
html, body {
  min-height: 100%;
}
html main, body main {
  min-height: 100%;
}

* {
  font-family: "Coves-Light", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  font-family: "Coves-Bold", sans-serif;
}

p, li {
  font-size: 1.3rem;
}
@media (max-width: 767px) {
  p, li {
    font-size: 1rem;
  }
}

section {
  background-position: center;
  background-size: cover;
  padding: 100px 0;
  /* Error */
  /* Error */
}
@media (max-width: 767px) {
  section {
    padding: 50px 0;
  }
}
section:first-child {
  margin-top: 86px;
}
@media (max-width: 767px) {
  section:first-child {
    margin-top: 56.3px;
  }
}
section.fullheight {
  height: 100dvh;
}
section#main img {
  border-radius: 0;
  clip-path: polygon(0% 10%, 100% 0%, 100% calc(100% - 2rem), 0% 100%);
  margin-bottom: -10rem;
  margin-right: 2rem;
  object-fit: cover;
  height: 450px;
}
@media (min-width: 1200px) {
  section#main img {
    height: 650px;
    margin-bottom: -14rem;
    margin-right: 3rem;
  }
}
section#main h1 {
  color: var(--white);
}
@media (min-width: 1024px) {
  section#main h1 {
    margin-bottom: 5rem;
  }
}
section .content-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 45px;
}
section .content-title img {
  max-width: 48px;
  border-radius: 0;
}
section .content-title .title {
  margin-bottom: 0;
  font-size: 3rem;
}
@media (max-width: 767px) {
  section .content-title .title {
    font-size: 2.2rem;
  }
}
section .content-title .title > h1 {
  position: relative;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 8px;
  display: inline-block;
}
section .content-title .title > h1::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 3px;
  bottom: -3px;
  left: 0;
  background-color: #222;
}
section.error {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.error.error404 {
  background-color: #f7f7f7;
  background-image: url(/assets/img/error404.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Body */
/* Home */
.index section {
  width: 100%;
}
@media (max-width: 767px) {
  .index section {
    background-position: center;
  }
}
@media (max-width: 767px) {
  .index section#main {
    height: 100dvh;
  }
}
.index section#main > .position-absolute::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: 1;
  background: linear-gradient(0deg, rgb(0, 0, 0) 15%, rgba(255, 255, 255, 0) 35%);
}
.index section#main iframe {
  transform: scale(1.25);
}
@media (min-width: 1024px) {
  .index section#main iframe {
    transform: scale(1.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .index section#main iframe {
    transform: scale(2.5);
  }
}
@media (max-width: 767px) {
  .index section#main iframe {
    transform: scale(4);
  }
}
.index section#main > .container {
  position: relative;
  z-index: 2;
}
.index section#main > .container .scroll-down-arrow {
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 2rem;
  padding: 10px 20px;
  border-radius: 50px 50px 0 0;
  transition: background-color 0.3s;
}
.index section#main > .container .scroll-down-arrow i {
  color: white;
}
.index section#main h1 {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .index section#artist {
    background: linear-gradient(180deg, rgb(0, 0, 0) 15%, rgba(255, 255, 255, 0) 35%);
  }
}
.index section#artist .container-fluid {
  display: none;
}
.index section#artist .container-fluid .img-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  clip-path: polygon(0% 10%, 100% 0%, 100% calc(100% - 2rem), 0% 100%);
}
@media (min-width: 1200px) {
  .index section#artist .container-fluid {
    display: block;
  }
}
.index section#artist .mySwiper {
  width: 100%;
  padding-bottom: 50px;
}
.index section#artist .mySwiper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 300px;
}
.index section#artist .mySwiper .swiper-slide img {
  display: block;
  width: 100%;
  border-radius: 0;
}
@media (min-width: 1200px) {
  .index section#artist .mySwiper {
    display: none;
  }
}
.index section#nosotros img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.index section#services .services-container {
  display: flex;
  flex-direction: column;
  height: 650px;
  cursor: pointer;
  overflow: hidden;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .index section#services .services-container {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .index section#services .services-container {
    flex-direction: row;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .index section#services .services-container {
    height: 40vh;
  }
}
@media (min-width: 1024px) {
  .index section#services .services-container {
    height: 55vh;
  }
}
@media (min-width: 1200px) {
  .index section#services .services-container {
    height: 75vh;
  }
}
.index section#services .services-container .element {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  flex: 1;
  overflow: hidden;
  position: relative;
  transition: flex 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 15px;
  cursor: pointer;
}
.index section#services .services-container .element::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgb(0, 0, 0) 15%, rgba(255, 255, 255, 0) 35%);
  z-index: 0;
}
.index section#services .services-container .element .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 2;
}
.index section#services .services-container .element .icon img {
  width: auto;
  height: 65px;
  border-radius: 0;
}
@media (max-width: 767px) {
  .index section#services .services-container .element .icon img {
    height: 35px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .index section#services .services-container .element .icon img {
    height: 35px;
  }
}
.index section#services .services-container .element .info {
  color: var(--white);
  padding: 2rem;
  margin-top: auto;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  position: relative;
  will-change: transform, opacity;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}
.index section#services .services-container .element .info h3, .index section#services .services-container .element .info p {
  color: var(--white);
}
.index section#services .services-container .element .info a,
.index section#services .services-container .element .info a:visited {
  color: var(--white);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}
.index section#services .services-container .element .info a i,
.index section#services .services-container .element .info a:visited i {
  color: inherit;
  font-size: 1.2rem;
  margin-left: 0.5rem;
}
.index section#services .services-container .element.active {
  flex: 2;
}
@media (max-width: 767px) {
  .index section#services .services-container .element.active {
    flex: 3;
  }
}
.index section#services .services-container .element.active .icon {
  left: 30px;
  top: 30px;
  transform: translate(0, 0);
}
@media (max-width: 767px) {
  .index section#services .services-container .element.active .icon {
    left: 20px;
    top: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .index section#services .services-container .element.active .icon {
    left: 20px;
    top: 15px;
  }
}
.index section#services .services-container .element.active .info {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.index section#bannerVideo {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}
.index section#bannerVideo .video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100%; /* Proporción 16:9  56.25vw */
  min-height: 100vh;
  min-width: 177.77vh; /* Proporción 16:9 */
  transform: translate(-50%, -50%);
  z-index: 1;
}
.index section#bannerVideo .video-background iframe {
  width: 100%;
  height: 100%;
}
.index section#bannerVideo .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  pointer-events: none;
}
.index section#bannerVideo .content {
  position: absolute;
  z-index: 3;
  height: 20%;
  display: flex;
  bottom: -60px;
  align-items: flex-end;
  padding: 90px 35px;
}
.index section#bannerVideo .content .text-container {
  max-width: 500px;
  color: var(--white);
  font-family: sans-serif;
}
.index section#bannerVideo .content .text-container h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: var(--white);
}
.index section#bannerVideo .content .text-container p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 25px;
  color: var(--white);
}
.index section#gallery .gallery .grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 12px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .index section#gallery .gallery .grid-container {
    grid-auto-rows: 200px;
  }
}
.index section#gallery .gallery .grid-container .big {
  grid-column: span 2;
  grid-row: span 2;
}
.index section#gallery .gallery .grid-container .wide {
  grid-column: span 2;
}
.index section#gallery .gallery .grid-container .tall {
  grid-row: span 2;
}
.index section#gallery .gallery .grid-container .grid-item {
  position: relative;
  overflow: hidden;
}
.index section#gallery .gallery .grid-container .grid-item img {
  width: 100%;
  height: 100%;
  /* Asegura que la imagen cubra el contenedor y mantenga su relación de aspecto (recortando si es necesario) */
  object-fit: cover;
  display: block;
  border-radius: 1rem;
}
.index section#gallery .swiper {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
.index section#gallery .swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index section#gallery .swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

/* Home */
/* Contacto */
@media (min-width: 768px) and (max-width: 1023px) {
  #contact .row {
    overflow: hidden;
  }
}
@media (min-width: 1024px) {
  #contact .row {
    overflow: hidden;
  }
}
#contact .container-img img {
  border-radius: 0;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  margin-top: 50px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  #contact .container-img img {
    display: none;
  }
}
#contact .contact-info {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  padding: 1rem;
}
@media (max-width: 767px) {
  #contact .contact-info {
    padding: 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #contact .contact-info {
    padding: 0.5rem;
  }
}
#contact .contact-info .icon img {
  height: auto;
  width: 30px;
}
#contact .contact-info .info a {
  color: #000;
  font-weight: 700;
}

/* Contacto */
/* Nosotros */
body.nosotros img {
  border-radius: 1rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  body.nosotros #intro {
    padding-bottom: 7rem;
  }
}
@media (min-width: 1024px) {
  body.nosotros #intro {
    padding-bottom: 14rem;
  }
}
@media (min-width: 1200px) {
  body.nosotros #intro {
    padding-bottom: 20rem;
  }
}
body.nosotros #intro img {
  object-fit: cover;
  height: 200px;
  width: 100%;
}
@media (min-width: 1024px) {
  body.nosotros #intro img {
    height: 350px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  body.nosotros #last .m-negative {
    margin-top: -10rem;
  }
}
@media (min-width: 1024px) {
  body.nosotros #last .m-negative {
    margin-top: -14rem;
  }
}
@media (min-width: 1200px) {
  body.nosotros #last .m-negative {
    margin-top: -19rem;
  }
}
body.nosotros #last .light {
  font-family: "Coves-Light";
  font-weight: 500;
}

/* Nosotros */
/* Servicios */
body.servicios #main {
  background-image: url("https://placehold.co/600x400");
}
body.servicios #service img {
  border-radius: 1rem;
}
@media (min-width: 1200px) {
  body.servicios #background {
    height: 300px;
  }
}
body.servicios #benefits {
  margin-top: -10rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  body.servicios #benefits {
    margin-top: -17rem;
  }
}
@media (min-width: 1024px) {
  body.servicios #benefits {
    margin-top: -17rem;
  }
}
@media (min-width: 1200px) {
  body.servicios #benefits {
    margin-top: -20rem;
  }
}
body.servicios #benefits p {
  color: var(--white);
}
body.servicios #benefits img {
  border-radius: 1rem;
}
body.servicios #benefits .offer .bullets ul {
  list-style: none;
}
body.servicios #benefits .offer .bullets ul li {
  margin-top: 20px;
}
body.servicios #benefits .offer .bullets ul li::before {
  content: "✓";
  color: var(--primary);
  margin-right: 5px;
}
body.servicios #gallery {
  margin-top: -3rem;
}
body.servicios #gallery .gallery .grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 12px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  body.servicios #gallery .gallery .grid-container {
    grid-auto-rows: 200px;
  }
}
body.servicios #gallery .gallery .grid-container .big {
  grid-column: span 2;
  grid-row: span 2;
}
body.servicios #gallery .gallery .grid-container .wide {
  grid-column: span 2;
}
body.servicios #gallery .gallery .grid-container .tall {
  grid-row: span 2;
}
body.servicios #gallery .gallery .grid-container .grid-item {
  position: relative;
  overflow: hidden;
}
body.servicios #gallery .gallery .grid-container .grid-item img {
  width: 100%;
  height: 100%;
  /* Asegura que la imagen cubra el contenedor y mantenga su relación de aspecto (recortando si es necesario) */
  object-fit: cover;
  display: block;
  border-radius: 1rem;
}
body.servicios #gallery .swiper {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
body.servicios #gallery .swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.servicios #gallery .swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

/* Servicios */
/* Aviso */
body.privacidad header a, body.privacidad header a:visited, body.privacidad header .nav-link {
  color: var(--black);
}
body.privacidad header a:hover, body.privacidad header a:visited:hover, body.privacidad header .nav-link:hover {
  color: var(--primary);
}

/* Aviso */
/* Account prtfile */
.account_profile .rounded-circle {
  width: 150px;
  height: 150px;
}

/* Account profile */
/* Specials */
.crossedout {
  display: inline-block;
  position: relative;
  text-decoration: line-through;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 2.5px;
}

.title {
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .title {
    font-size: 1.6rem;
  }
}
.title::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 45%;
  transform: translateY(-50%);
  width: 86px;
  height: 99px;
  background-image: url("/assets/img/c.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
@media (max-width: 767px) {
  .title::before {
    left: 10px;
    top: 50%;
    width: 52px;
    height: 59px;
    font-size: 1.6rem;
  }
}

.title-second {
  color: var(--white);
  position: relative;
  display: inline-block;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .title-second {
    font-size: 1.6rem;
  }
}
.title-second::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 45%;
  transform: translateY(-50%);
  width: 86px;
  height: 99px;
  background-image: url("/assets/img/c_blanco.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}
@media (max-width: 767px) {
  .title-second::before {
    left: 10px;
    top: 50%;
    width: 52px;
    height: 59px;
    font-size: 1.6rem;
  }
}

/* Specials */

/*# sourceMappingURL=main.css.map */
