/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #2f3138; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000910; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #b32926; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.65);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #000910; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #b32926; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */



.light-background {
  --background-color: #f2f2f3;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000910;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #000910;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Montserrat", sans-serif;
}

@charset "UTF-8";
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}


.header .cta-btn,
.header .cta-btn:focus {
  color: #fff;
  background: #b32926;
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: #fff;
  background: color-mix(in srgb, #b32926, transparent 25%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color:#000910;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

@media (max-width: 1199px) {
  .hide-mobile {
    display: none !important;
  }
}


/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--background-color);
  color: var(--default-color);
  font-size: 14px;
  position: relative;
}

/* Zona superior del footer */
.footer .footer-top {
  background-color: #fff;
  padding: 50px 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

/* Logo */
.footer .footer-about img {
  max-height: 100px;
  height: auto;
}

/* Redes sociales */
.footer .footer-links h4 {
  color: #b32926;
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 400;
}

.footer .social-links a {
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b32926;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 4px;
  margin: 0 4px;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background: var(--accent-color);
}

/* Derechos de autor */
.footer .copyright {
  padding: 30px 0;
  font-size: 14px;
  background-color: var(--background-color);
  color: var(--default-color);
  text-align: center;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .footer .footer-about {
    margin-bottom: 20px;
  }

  .footer .footer-links h4 {
    font-size: 18px;
  }

  .footer .social-links a {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: #000000;
  --heading-color: var(--contrast-color);
  --default-color: var(--contrast-color);
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}



/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    padding-bottom: 40px;
  }

  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .section-title h2:after {
    width: 40px;
    height: 2.5px;
  }
}

@media (max-width: 480px) {
  .section-title {
    padding-bottom: 30px;
  }

  .section-title h2 {
    font-size: 22px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .section-title h2:after {
    width: 30px;
    height: 2px;
  }

  .section-title p {
    padding: 0 10px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 100px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  font-size: 38px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 70px;
    min-height: 80vh;
  }

  .hero h2 {
    font-size: 22px;
    padding: 0 10px;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about .content h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 20px;
  text-align: justify;
}

.about .content p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .about .content h3 {
    font-size: 16px;
    text-align: left;
  }

  .about .content p {
    font-size: 15px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .about .content h3,
  .about .content p {
    font-size: 16px;
    text-align: justify; /* <- Esto asegura la justificación en móvil también */
  }
}

/*--------------------------------------------------------------
# Visita Section
--------------------------------------------------------------*/
.recent-photos {
  padding-bottom: 120px;
}

.recent-photos .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.recent-photos .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  border: 1px solid #b32926;
  width: 12px;
  height: 12px;
  opacity: 1;
}

.recent-photos .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #b32926;
}

.recent-photos .swiper-slide-active {
  text-align: center;
}

.recent-photos .swiper-wrapper {
  padding: 80px 0;
}

.recent-photos .swiper-slide-active {
  background: var(--background-color);
  border: 4px solid var(--accent-color);
  padding: 2px;
  z-index: 1;
  transform: scale(1.2);
  transition: none;
}

/* Para 4 slides visibles y parte del 5.º */
.recent-photos .swiper-slide {
  width: 22%;
}

/* Ajustes para pantallas medianas */
@media (max-width: 1199px) {
  .recent-photos .swiper-slide {
    width: 30%;
}

/* Para móviles */
@media (max-width: 767px) {
  .recent-photos .swiper-slide {
    width: 60%;
}
}
}

/*--------------------------------------------------------------
# POR QUE HAYBUSTER SECTION
--------------------------------------------------------------*/

.imagen-overlay {
  position: relative;
  width: 100%;
  height: auto; 
  background-image: url('/assets/img/home.jpg');
  background-size: cover;
  background-position: center;
  image-rendering: auto;
}

.imagen-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 9, 16, 0.85); /* Capa negra */
  z-index: 1;

}

.imagen-overlay .contenido {
  top: 50%;
  z-index: 2;
  position: relative;
}

.why-title {
  position: relative;
  margin-top: 50px;
}

.why-title h2 {
  text-align: left;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #fff;
  line-height: 1.6;
}

.why-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px; 
  height: 3px;
  background: #b32926;
  left: 0;
  bottom: 0;
}

.why-title p {
  margin-bottom: 0;
  color: #fff;
  font-size: 25px;
  font-weight: 400;
}


.why .icon-box {
  background-color: #b32826cc;
  padding: 65px 30px;
  border-radius: 15px;
  transition: all 0.3s ease-out 0s;
  text-align: center;
}

.why .icon-box i {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 40px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, white, transparent 80%);
  color: white;
}

.why .icon-box h3 {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  text-align: center;
}


/* ==========================
   RESPONSIVE MEDIA QUERIES
=============================*/

@media (max-width: 991px) {
  .why-title h2 {
    font-size: 22px;
  }

  .why-title p {
    font-size: 16px;
  }

  .why-title {
    margin-top: 20px;
  }

  .imagen-overlay .contenido {
    padding-top: 30px;
  }

  .why .icon-box {
    padding: 40px 20px;
  }

  .why .icon-box i {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }

  .why .icon-box h3 {
    font-size: 14px;
  }
}



/*--------------------------------------------------------------
# Productos cards Section
--------------------------------------------------------------*/
.card-content{
  margin-bottom: 80px;
}

.card {
  border-radius: 15px;
  overflow: hidden;
  padding: 80px 0 80px 0;
  position: relative;
  transition: 0.15s ease-in;
}

.card:hover,
.card:focus-within {
  box-shadow: 0 0 0 1px #f5302d73, 0 10px 60px 0 rgba(0, 0, 0, 0.067);
  transform: translateY(-10px);
}

.card-image img {
  border-radius: 20px;
  overflow: hidden;
  max-width: 80%;
  z-index: 99;

}

.card-text{
  padding: 0 60px 0 0;
  z-index: 99;
}

.card-text-2{
  padding: 0 0 0 50px;
  z-index: 99;
}

.card h2{
  color: #b32926;
  font-size: 33px;
  font-weight: 600;
  text-transform: uppercase;
}


.card h4{
  color: hsl(0, 0%, 59%);
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  word-spacing: 3px;
  
}

.card p {
  font-weight: 500;
  font-size: 16px;
  text-align: justify;
  line-height: 22px;
}


.card-btn,
.card-btn:focus {
  color: #fff;
  background: #b32926;
  font-size: 14px;
  padding: 8px 25px;
  border-radius: 50px;
  transition: 0.3s;
  border: 1px solid #b32926;
}

.card-btn:hover,
.card-btn:focus:hover {
  color: #b32926;
  background: color-mix(in srgb, #fff, transparent 25%);
  border: 1px solid #b32926;
}


/*--------------------------------------------------------------
# Responsive ajustes
--------------------------------------------------------------*/
@media (max-width: 991.98px) {
  .card {
    padding: 30px 0;
  }

  .card-text,
  .card-text-2 {
    padding: 30px 15px;
    text-align: center;
  }

  .card h2 {
    font-size: 28px;
  }

  .card h4 {
    font-size: 16px;
  }

  .card p {
    font-size: 15px;
    text-align: center;
  }

  .card-image img {
    max-width: 90%;
  }
}

@media (max-width: 576.98px) {
  .card {
    padding: 20px 0;
  }

  .card-content {
    margin-bottom: 50px;
  }

  .card h2 {
    font-size: 20px;
  }

  .card h4 {
    font-size: 10px;
  }

  .card p {
    font-size: 12px;
    line-height: 18px;
  }

  .card-btn {
    font-size: 13px;
    padding: 6px 20px;
  }

  .card-text,
  .card-text-2 {
    padding: 20px;
  }

}


/*--------------------------------------------------------------
# Productos Section
--------------------------------------------------------------*/
.schedule .nav-tabs {
  text-align: center;
  margin: auto;
  display: block;
  border-bottom: 0;
  margin-bottom: 30px;
}

.schedule .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
}

.schedule .nav-tabs a {
  border: none;
  border-radius: 50px;
  font-weight: 600;
  background-color: #fff;
  color: #000910;
  border: 1px solid #000910;
  padding: 12px 30px;
  margin: 5px;

}


.schedule .nav-tabs a.active {
  background-color: #b32926;
  color: #fff;
}


.schedule .tab-pane {
  transition: ease-in-out 0.2s;
}

.center-product{
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-content .product-list .product-item {
  display: flex;
}

.product-content{
  margin-top: 80px;
}

.product-content h2{
  font-size: 40px;
  text-transform: uppercase;
  color: #b32926;
}

.product-content p{
  font-size: 18px;
  text-align: justify;
}


.product-details{
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-content h3 {
  font-size: 22px;
  color: #000910db;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 35px;
}

.product-list {
  padding-left: 0;
  margin-bottom: 0;
}

.product-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.product-icon {
  color: #b32926;
  font-size: 1.5rem;
  margin-right: 10px;
  line-height: 1.3;
}

.product-text {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
}

.product-content-center {
  display: flex;
  align-items: center;
  justify-content: center;
}


.main-content{
 margin-top: 60px;
 
}

.main-image {
  margin-bottom: 15px;
  text-align: center;
}

.main-image img {
  max-width: 100%;
  max-height: auto;
  object-fit: contain;
}

.thumbnail-carousel {
  display: flex;
  justify-content: center;
  gap: 5px;
  overflow-x: auto;
}

.thumbnail-carousel img {
  width: 24%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s;
}

.thumbnail-carousel img.active {
  border: 2px solid red;
}


.stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.20);
  padding-bottom: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.stat-item .stat-content {
  flex-grow: 1;
}

.stat-item .stat-content h4 {
  font-size: 16px;
  margin-bottom: 0.25rem;
  font-weight: 500;
}


@media (max-width: 575px) {
  .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# SOPORTE SECTION
--------------------------------------------------------------*/

.soporte{
  padding: 100px 0 100px 0;
  
}

.imagen-overlay {
  position: relative;
  width: 100%;
  height: auto; 
  background-image: url('/assets/img/home.jpg');
  background-size: cover;
  background-position: center;
  image-rendering: auto;
}

.imagen-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 9, 16, 0.85); /* Capa negra */
  z-index: 1;

}

.imagen-overlay .contenido {
  top: 50%;
  z-index: 2;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}

.soporte .section-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #fff;
}


.soporte .icon-box {
  background-color: #b32826cc;
  padding: 65px 30px;
  border-radius: 15px;
  transition: all 0.3s ease-out 0s;
  text-align: center;
}

.soporte .icon-box i {
  width: 100px;
  border-radius: 50%;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 40px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, white, transparent 80%);
  color: white;
}

.soporte .icon-box h3 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  text-align: center;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact .contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.contact .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(
    135deg,
    var(--surface-color),
    color-mix(in srgb, var(--surface-color), var(--accent-color) 3%)
  );
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease;
}

.contact .info-item:hover {
  transform: translateX(10px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .info-item:hover .info-icon {
  background-color: var(--accent-color);
}

.contact .info-item:hover .info-icon i {
  color: var(--contrast-color);
}

.contact .info-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.contact .info-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact .info-content {
  flex: 1;
}

.contact .info-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #b32926;
}

.contact .info-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Map Responsive Wrapper
--------------------------------------------------------------*/
.map-responsive {
  position: relative;
  padding-bottom: 60%; /* Esto lo hace más cuadrado */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .map-responsive {
    padding-bottom: 120%; /* un poco más alto en móvil si lo deseas */
  }
}


.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Responsive Breakpoints
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .contact .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact .info-item {
    padding: 20px;
  }

  .contact .info-item:hover {
    transform: translateY(-5px);
  }

  .map-responsive {
    padding-bottom: 75%; /* Opcional: cambia a 4:3 en móvil si deseas */
  }
}



/*--------------------------------------------------------------
# Hero-productos-01 Section
--------------------------------------------------------------*/
.hero-productos {
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 100px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-productos img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-productos:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 25%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-productos .container {
  position: relative;
  z-index: 3;
}

.hero-productos h2 {

  font-size: 64px;
  font-weight: 400;
}



/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery {
 padding: 0 0 60px 0;
}

.gallery .gallery-item img {
  transition: 0.3s;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #ffffff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.glightbox-clean .gslide-description {
  background: #272727;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/


.features  {
 padding: 80px 0 0 0;
}


.features .features-intro {
  padding-right: 30px;
}

@media (max-width: 991px) {
  .features .features-intro {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
}

.features .features-intro h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .features .features-intro h2 {
    font-size: 32px;
  }
}

.features .features-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 40px;
}

.features .features-intro .highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

@media (max-width: 576px) {
  .features .features-intro .highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.highlight-item {
  text-align: center;
}

.highlight-item .highlight-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.highlight-item .highlight-text {
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.featured-image-container {
  position: relative;
}

.featured-image-container .floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.featured-image-container .floating-badge i {
  font-size: 18px;
}

.features-grid {
  margin: 80px 0;
}

@media (max-width: 991px) {
  .features-grid {
    margin: 60px 0;
  }
}

.feature-box {
  background-color: var(--surface-color);
  padding: 40px 30px;
  border-radius: 20px;
  height: 100%;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(54, 144, 231, 0.1);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
  position: relative;
}

.feature-icon-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.2;
  transform: scale(1.3);
  z-index: -1;
}

.feature-icon-wrapper i {
  font-size: 32px;
  color: var(--contrast-color);
}

.feature-box h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.feature-box p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}

.progress-indicator {
  width: 100%;
  height: 4px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 2px;
  margin-bottom: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #28a745 30%));
  transition: width 1s ease;
}

.progress-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
}


.featured-image-container {
  position: relative;
  border-radius: 20px; /* aplica redondeado al contenedor si lo deseas */
  overflow: hidden; /* oculta los bordes de elementos internos */
}

.featured-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px; /* redondeado para la imagen */
  object-fit: cover;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 20px;
  font-size: 12px;
  margin-bottom: 0;
  text-align: justify;
}

.services .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.services .service-item:hover .details .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}


.services .img {
  width: 100%;
  height: 100%;
}

.services .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .services .details {
    margin: 20px 15px 0 15px;
    padding: 40px 25px;
  }

  .services .details h3 {
    font-size: 20px;
  }

  .services .details p {
    font-size: 13px;
    line-height: 22px;
  }

  .services .details .icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
    top: -32px;
    left: calc(50% - 32px);
  }
}

@media (max-width: 576.98px) {
  .services .details {
    margin: 15px 10px 0 10px;
    padding: 30px 20px;
  }

  .services .details h3 {
    font-size: 18px;
    margin: 8px 0 12px 0;
  }

  .services .details p {
    font-size: 12px;
    line-height: 20px;
  }

  .services .details .icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
    top: -28px;
    left: calc(50% - 28px);
  }

  .services .img img {
    height: auto;
    max-height: 250px;
    object-fit: cover;
  }
}

