/* Topografia */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Open Sans",  sans-serif;
}

/* Color Global Web */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #106eea; /* 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. */
}

:root {
  --nav-color: #222222;  /* The default color of the main navmenu links */
  --nav-hover-color: #106eea; /* 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: #222222; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #106eea; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

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

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

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# Estilos Body
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: rgba(16, 110, 234, 0.75);
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Estilos Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: rgba(29, 46, 76, 1);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color:rgba(19, 213, 248,1);
  text-decoration: none;
}

.header .topbar .social-links a {
  color:#FFFFFF;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links .facebook:hover {
  color: #2241F5; /* Color de Facebook */
}

.header .topbar .social-links .linkd:hover {
  color: #1389F7; 
}

.header .topbar .social-links .wsp:hover {
  color: #25D366; /* Color de WhatsApp */
}

.header .branding {
  background-color: var(--background-color);
  min-height: 60px;
  padding: 10px 0;
}

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

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

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Estilos Menu Navegacion
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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 a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 18px 15px;
  font-size: 15px;
  font-family: var(--nav-font);
  font-weight: 700; /* Cambiado a 700 para negrita */
  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;
    transition: 0.3s;
  }

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #54C7F8;
  }

  .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: #1627E3;
  }

  .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;
  }
}

/* Navmenu - Mobile */
@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;
    top: 60px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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: var(--accent-color);
  }

  .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);
    border: 1px solid var(--default-color);
    box-shadow: none;
    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;
  }
}

/*--------------------------------------------------------------
# Estilos Global Pie de Pagina
--------------------------------------------------------------*/
.footer {
  color: #FFFFFF;
  background: rgba(29, 46, 76, 1);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 10px;
}

.footer .footer-about .logo img {
  max-height: 55px;
  margin-right: 6px;
}


.footer .footer-about p {
  font-size: 14px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links .fb:hover {
  color: #2241F5; /* Color de Facebook */
}

 .footer .social-links .linkd:hover {
  color: #1389F7; 
}

 .footer .social-links .wsp:hover {
  color: #25D366; /* Color de WhatsApp */
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #13D5F8;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-contact a {
  color: white;
}

.footer .footer-contact a:hover {
  color: yellow;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.footer-newsletter {
    max-width: 600px; /* Ajusta el ancho máximo según lo que necesites */
}

@media (max-width: 768px) {
    .footer {
        font-size: 12px; /* Reducir el tamaño de fuente general */
    }

    .footer .footer-top {
        padding-top: 20px; /* Reducir padding superior */
        text-align: center; /* Centrar todo el texto */
    }

    .footer .footer-about {
        text-align: center; /* Centrar contenido del div footer-about */
    }

    .footer .footer-about .logo img {
        max-height: 40px; /* Reducir el tamaño del logo */
        margin: 0 auto; /* Centrar el logo */
    }

    .footer .footer-about p {
        font-size: 12px; /* Reducir tamaño del texto */
        margin-bottom: 10px; /* Espaciado entre párrafos */
    }

    .footer .footer-contact p,
    .footer .footer-newsletter p {
        font-size: 12px; /* Reducir tamaño del texto de contacto */
        margin: 5px 0; /* Espaciado uniforme */
    }

    .footer h4 {
        font-size: 14px; /* Reducir tamaño de los encabezados */
        margin-bottom: 10px; /* Espaciado inferior */
    }

    .footer .footer-links {
        text-align: center; /* Centrar el contenido de los enlaces */
    }

    .footer .footer-links h4 {
        margin-bottom: 10px; /* Espaciado inferior del encabezado */
    }

    .footer .footer-links ul {
        padding: 0; /* Quitar padding de la lista */
        list-style: none; /* Quitar puntos de la lista */
        text-align: center; /* Centrar texto en la lista */
    }

    .footer .footer-links ul li {
        padding: 5px 0; /* Espaciado entre los elementos de la lista */
    }

    .footer .footer-links ul li a {
        text-align: center; /* Centrar texto de los enlaces */
        display: inline-block; /* Asegurar que se comporte como bloque en línea */
        width: 100%; /* Asegurar que ocupe el ancho completo */
    }

    .footer .social-links {
        justify-content: center; /* Centrar los íconos de redes sociales */
    }

    .footer .social-links a {
        width: 30px; /* Reducir el tamaño de los íconos */
        height: 30px;
        font-size: 18px; /* Reducir tamaño de íconos */
        margin: 0 5px; /* Ajustar margen entre íconos */
    }	
}

@media (max-width: 768px) {
    .footer-links {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .footer-newsletter {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centra horizontalmente */
        justify-content: center; /* Centra verticalmente si hay espacio */
        margin: 0 auto;
        text-align: center; /* Asegura que el texto esté centrado */
    }
}


/*--------------------------------------------------------------
# Precargador
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

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

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Botón superior de desplazamiento
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

.scroll-top:hover {
  background-color: rgba(19, 213, 248,1);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Desactivar el retraso de la animación de AOS en dispositivos móviles
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Títulos de páginas globales y rutas de navegación
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 600;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  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 70%);
}

/*--------------------------------------------------------------
# Estilos global secciones
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

sect,
.sect {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 50px;
  }
}

/*--------------------------------------------------------------
# Estilos global de secciones titulos
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--heading-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title .description-title2  {
    font-family: var(--heading-font);
    font-size: 18px; /* Tamaño específico para el h2 */
    letter-spacing: 1px;
    line-height: 1.5;
    color: var(--heading-color);
    display: inline-block; /* Cambiar a block para flexbox */
    padding: 8px 20px;
    margin: 10px 0 0 0;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    text-align: center; /* Centrado del texto */
    position: relative; /* Para el posicionamiento */
    font-weight: 400; /* Ajustado para un peso normal */
    text-transform: none;
}

.section-title p .description-title {
  color: var(--accent-color);
}


/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .section-title p {
    font-size: 26px;
  }
}

/* Móviles grandes (≤ 768px) */
@media (max-width: 768px) {
  .section-title p {
    font-size: 22px;
  }
  .section-title .description-title2 {
    font-size: 10px;
    padding: 6px 16px;
    margin: 12px 0 0 0;
  }
}

/* Móviles pequeños (≤ 480px) */
@media (max-width: 480px) {
  .section-title p {
    font-size: 17px;
  }
  .section-title .description-title2 {
    font-size: 8px;
    padding: 4px 12px;
    margin: 10px 0 0 0;
  }
}

/*--------------------------------------------------------------
# Banner pequeño
--------------------------------------------------------------*/

.banner {
    background-image: url('../img/Baner/b3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: left;
    width: 100%;
    min-height: 25vh;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
  .banner {
    background-size: contain; /* Ajusta la imagen para que se contenga dentro del div */
    background-position: center; /* Centra la imagen */
    min-height: 10vh; /* Ajusta la altura mínima si es necesario */
  }
		
}

/*TABLE OF CONTENTS*/
/*=====================
01. Hero Section - Carrousel Principal - Index
02. Chefs Productos - Index
03. Button Presentacion - Index
04. Det Servicios - Index
05. Panel Imagenes - Index
06. Virtudes - Index
07. Productos - Index
08. Certificaciones - Index
09. Clientes - Index
10. Mapa Google - Index
11. Somos - Nosotros
12. Contador - Nosotros
13. Mision / Vision - Nosotros
14. Valores - Nosotros
15. Servicios - Servicios
16. Portafolio General - Portafolio
17. Form cotizacion - Cotizacion
18. Form Casilla Electronica - Casilla
19. Footer Casilla/Contactanos - Casilla/contactanos
20. Form Contactanos
=======================*/

/*--------------------------------------------------------------
# Hero Section - Carrousel Principal - Index
--------------------------------------------------------------*/
.hero {
    margin: 0;
    padding: 0;
}

.hero .carousel {
    width: 100%;
    min-height: 85vh; /* Altura mínima en pantallas grandes */
    padding: 0;
    margin: 0;
    background-color: var(--background-color);
    position: relative;
}

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

.hero .carousel-item {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

.hero .carousel-item .video-container {
    position: relative; 
    width: 100%; 
    max-width: 100%; 
    overflow: hidden; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100%; 
}

.hero .carousel-item .video-container video {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    max-height: none; 
}

.hero .carousel-container {
    position: absolute;
    inset: auto 64px 30px 64px; /* Cambié el valor de bottom a 30px */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;
}

.hero .btn-get-started {
    color: black;
    background: #EDD113;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 8px 32px;
    border-radius: 15px;
    transition: 0.4s;
    margin: 120px; /* Cambié el margin a solo 10px para que esté más cerca de la parte inferior */
    animation: fadeInUp 1s both 0.4s;
}

.hero h2 {
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
    animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero .carousel {
    min-height: 30vh;
  }

  .hero h2 {
    font-size: 30px;
  }

  .hero .carousel-item .video-container {
    height: auto;
  }

  .hero .btn-get-started {
    font-size: 10px;             /* Tamaño de letra legible */
    padding: 6px 24px;           /* Espaciado interno cómodo */
    margin: 10px auto;           /* Centrado y con espacio arriba/abajo */
    width: auto;                 /* Se adapta al texto */
    display: inline-block;       /* Para que no se expanda al 100% */
    text-align: center;
    white-space: nowrap;         /* No permite salto de línea */
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
    font-size: 5px;
  }
}

@media (max-width: 480px) {
  .hero .btn-get-started {
    font-size: 7px;             /* Aún legible en pantallas pequeñas */
    padding: 5px 20px;
    margin: 10px auto;
    width: auto;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {
    
    .hero .carousel {
        min-height: 50vh; /* Ajusta la altura mínima para móviles */
    }

    .hero h2 {
        font-size: 30px; /* Ajuste de tamaño del texto */
    }

    .hero .carousel-item .video-container {
        height: auto; /* Asegúrate de que el contenedor ocupe todo el espacio */
    }

    .hero .btn-get-started {
        width: 20%; /* Ocupará el 90% del ancho del contenedor */
        padding: 10px; /* Ajusta el padding si es necesario */
        margin: 20px 0; /* Espaciado alrededor del botón */
		font-size: 11px; /* Ajusta el tamaño de la letra */
		text-align: center; /* Alinea el texto al centro */
        display: block; /* Asegúrate de que el botón se comporte como un bloque */
    }	
				
}

.hero p {
    animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {
    .hero h2,
    .hero p {
        max-width: 60%;
    }
}

.hero .btn-get-started:hover {
    background: #3DBCF9; /* Color de fondo al pasar el mouse */
    color: white; /* Color de letra en hover */
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    width: 10%;
    transition: 0.3s;
    color: yellow; /* Color de los íconos */
    padding: 10px; /* Espaciado interno para aumentar el tamaño */
    opacity: 0.7; /* Opacidad, ajusta si es necesario */
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 1; /* Totalmente visibles al pasar el ratón */
}


@media (min-width: 1024px) {
    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        width: 5%;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

.hero .carousel-indicators {
    list-style: none;
}

.hero .carousel-indicators li {
    cursor: pointer;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*--------------------------------------------------------------
# chefs Productos - Index
--------------------------------------------------------------*/

.chefs .til {
 color: #1D2E4C;  
}

.chefs .team-member {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

.chefs .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.chefs .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.chefs .team-member .member-img a {
  cursor: pointer; /* Cambia el puntero a mano */
  position: relative; /* Asegúrate de que tenga un contexto de posición */
  z-index: 2; /* Asegúrate de que esté por encima del pseudo-elemento */
}

.chefs .team-member .member-info {
  padding: 10px 15px 20px 15px;
  width: 100%;	
}

.chefs .team-member .member-info img {
  height: 40px; /* Mantiene la proporción del logo */
  width: 31px;
  text-align: center;
}
.chefs .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  font-family: var(--default-font);
  text-align: center;
  color:white;
}

.chefs .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color:white;
}

.chefs .team-member:hover {
  transform: scale(1.15); /* Aumentado para un mayor acercamiento */
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
 .chefs .logo {
    display: none;
  }

 .chefs .member-info h4 {
    font-size: 16px;
  }

 .chefs .member-info span {
    font-size: 12px;
  }
}

/* Media Query para dispositivos móviles */
@media (max-width: 768px) {
  .chefs .team-member {
    width: 80%; /* Ajusta el ancho según necesites */
    max-width: 300px; /* Limita el ancho máximo */
    height: auto; /* Permite que la altura se ajuste automáticamente */
    margin: 10px auto; /* Centra el elemento y ajusta el espaciado */
  }
 
  .chefs .team-member .member-info h4 {
    font-size: 18px; /* Ajusta el tamaño del texto */
  }

  .chefs .team-member .member-info span,
  .chefs .team-member .member-info p {
    font-size: 12px; /* Ajusta el tamaño del texto */
  }
	
  .chefs .text {
        font-size: 14px; /* Tamaño reducido para pantallas pequeñas */
        line-height: 1.4; /* Ajusta la altura de línea si es necesario */
        padding: 6px 15px; /* Opcional: reduce el padding */
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  
  /* Forzar 2 columnas por fila */
  .chefs .col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Ajuste del contenido dentro de cada card */
  .chefs .team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 15px;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background-color: #fff;
    transition: transform 0.3s ease;
  }

  .chefs .team-member:hover {
    transform: translateY(-5px);
  }

  .chefs .team-member img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Ajuste de textos */
  .chefs .team-member h4 {
    font-size: 18px;
    margin: 10px 0 5px;
  }

  .chefs .team-member span {
    font-size: 14px;
    color: #555;
  }

  /* Ajuste del texto principal de la sección */
  .chefs .text {
    font-size: 18px;
    line-height: 1.6;
    padding: 8px 15px;
  }

  /* Si tienes títulos dentro de .section-title */
  .chefs .section-title h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# Button Presentacion - Index
--------------------------------------------------------------*/

.presbtn .container {
    display: flex;
    justify-content: center; /* Centrar el botón horizontalmente */
    align-items: center;    /* Centrar el botón verticalmente si es necesario */
    height: 100%;           /* Ajustar la altura si es necesario */
}

.presbtn .boton-pdf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(29, 46, 76, 1); /* Azul marino */
    color: white;
    padding: 15px 30px; /* Tamaño del botón */
    font-size: 18px; /* Tamaño del texto */
    text-decoration: none;
    border-radius: 8px; /* Suavizar esquinas */
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease; /* Suavizar todas las transiciones */
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra sutil */
}

/* Efecto hover */
.presbtn .boton-pdf:hover {
    background-color: #13D5F8;/* Celeste */
    transform: scale(1.05); /* Suave aumento de tamaño */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada */
}

/* Efecto para el icono */
.presbtn .boton-pdf i {
    margin-right: 15px; /* Espaciado entre el icono y el texto */
    font-size: 24px; /* Tamaño del icono */
    transition: transform 0.3s ease; /* Efecto suave para el icono */
}

.presbtn .boton-pdf:hover i {
    transform: rotate(-10deg); /* Pequeña rotación para el icono en hover */
}

/* Diseño responsivo para móviles */
@media (max-width: 768px) {
    .presbtn .boton-pdf {
        font-size: 16px; /* Ajustar tamaño del texto en móviles */
        padding: 12px 25px; /* Ajustar tamaño del botón en móviles */
    }
    .presbtn.boton-pdf i {
        font-size: 22px; /* Ajustar tamaño del icono en móviles */
    }
}

/*--------------------------------------------------------------
# Det Servicios - Index
--------------------------------------------------------------*/

.det .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.det .features-item+.features-item {
  margin-top: 30px;
}

@media (max-width: 640px) {
  .det .features-item+.features-item {
    margin-top: 40px;
  }
}

.det .features-item h5 {
  font-weight: 700;
  font-size: 15px;
  color: rgba(29, 46, 76, 1);
}

.det .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  color: rgba(19, 213, 248, 1);
}

.det .features-item ul {
  list-style: none;
  padding: 0;
}

.det .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.det .features-item ul li:last-child {
  padding-bottom: 0;
}

.det .features-item img {
  transition: 0.5s all ease;
  transform: scale(1);
  width: 100%;
  height: auto;
}

.det .features-item img:hover {
  transform: scale(1.05); /* Incrementa el valor para más acercamiento */
}
.det .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.det .features-item p:last-child {
  margin-bottom: 0;
}

.det .bot-cus {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: rgba(19, 213, 248, 1);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
	box-shadow: 0 0 0 0.5px #000000; /* Simula un borde delgado */
}

.det .bot-cus:hover {
    background-color:rgba(29, 46, 76, 1); /* Color al pasar el ratón */
    transform: scale(1.05); /* Efecto de aumentar el tamaño */
	color: white;
}

.cent {
    display: flex; /* Usamos flexbox para centrar */
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente si hay más elementos */
    margin-top: 20px; /* Espacio adicional si lo deseas */
}

.det .bot-cus2 {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: rgba(19, 213, 248, 1);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
	box-shadow: 0 0 0 0.5px #000000; /* Simula un borde delgado */
}

.det .bot-cus2:hover {
    background-color:yellow; /* Color al pasar el ratón */
    transform: scale(1.05); /* Efecto de aumentar el tamaño */
	color: black;
}

.det .cent {
    display: flex; /* Usamos flexbox para centrar */
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente si hay más elementos */
    margin-top: 20px; /* Espacio adicional si lo deseas */
}

@media (max-width: 768px) {
  .features-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
  }

  .features-item > div {
    flex: 1 1 50%;
  }
  
  .det .features-item h3 {
    font-size: 18px;
  }

  .det .features-item h5 {
    font-size: 12px;
  }

  .det .features-item .checklist{
    font-size: 13px;
  }

  .det .bot-cus,
  .det .bot-cus2 {
    font-size: 11px;
    padding: 6px 14px;
  }
  
.det .features-item .fst-italic {
  font-size: 12px;
  text-align: justify;
}

}
  
@media (max-width: 480px) {
  .features-item {
    flex-direction: row;
  }

  .features-item > div {
    flex: 1 1 50%;
  }
  
    .det .features-item h3 {
    font-size: 16px;
  }

  .det .features-item h5 {
    font-size: 11px;
  }

  .det .features-item .checklist{
    font-size: 12px;
  }

  .det .bot-cus,
  .det .bot-cus2 {
    font-size: 11px;
    padding: 6px 14px;
  }
  
.det .features-item .fst-italic {
  font-size: 10px;
  text-align: justify;
}
}

/*--------------------------------------------------------------
# Panel Imagenes - Index
--------------------------------------------------------------*/

.call-to {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: auto;
  padding: 0;
  margin: 0 auto;
}

.call-to img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.call-to::before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Mobile: eliminar espacio extra arriba/abajo */
@media (max-width: 768px) {
  .call-to {
    height: auto;
  }

  .call-to img {
    height: auto;
    width: 100vw;
    object-fit: contain;
  }
}


/*--------------------------------------------------------------
# Virtudes - Index
--------------------------------------------------------------*/

.about {
  padding-top: 100px;
}

.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
  margin-right: 20px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

.about .icon-box {
  background-color: rgba(29, 46, 76, 1); 
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box:hover {
  transform: translateY(-15px); /* Efecto de desplazamiento hacia arriba */
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #13D5F8;
}

.about .icon-box p {
  margin-bottom: 0;
  color: white;
}

.about .icon-box:hover {
  margin-bottom: 0;
  background-color: #13D5F8;
}

/* Efecto Hover para los diferentes colores en el borde y fondo del icono */

/* Negro */
.about .icon-boxes .item-black:hover h3 {
  color: rgba(29, 46, 76, 1); 
}

.about .icon-boxes .item-black:hover i {
  background-color:white;
  color:#106eea;
}

.about .icon-boxes .item-black:hover p {
  color:black;
}
/* Color fijo para los iconos */
.about .icon-boxes .item-red i,
.about .icon-boxes .item-yellow i,
.about .icon-boxes .item-black i,
.about .icon-boxes .item-green i {
  background-color: #007bff; /* Fijo azul para todos los iconos */
  color: #fff; /* El icono tiene color blanco */
}

/*--------------------------------------------------------------
# Portafolio - index
--------------------------------------------------------------*/

.port .portfolio-item:hover img {
  transform: scale(0.9); /* Aumenta el tamaño de la imagen al 110% al pasar el puntero */
  transition: transform 0.5s ease; /* Aumenta la duración a 0.5s para un efecto más suave */
}

.port .card-body {
  padding: 0; /* Sin espaciado en la parte superior para alinear el botón */
  text-align: center; /* Centra el texto */
  
}

.port .portfolio-info {
  margin: 10px 0; /* Espacio igual entre el título y el botón */
  font-size: 16px;
  color: #000000; /* Color plomo */
  font-family: Arial, sans-serif; /* Estilo de letra más comercial */
}

.port .cotizar-btn {
  display: block; /* Ocupa todo el ancho disponible */
  width: 100%; /* Asegura que ocupe todo el ancho */
  background-color: #25D366; /* Color de fondo de WhatsApp */
  color: white; /* Color del texto */
  text-align: center; /* Centra el texto */
  padding: 15px; /* Espaciado interno más grande */
  border: none; /* Sin borde */
  border-radius: 0; /* Sin bordes redondeados */
  text-decoration: none; /* Sin subrayado */
  transition: color 0.3s; /* Solo efecto de transición para el color */
}

.port .cotizar-btn:hover {
  background-color: #25D366; /* Mantiene el fondo verde al pasar el mouse */
  color: #1D2E4C ; /* Cambia el texto a azul */
}

.port .cotizar-btn i {
  color: white; /* Color del icono */
  transition: color 0.3s; /* Efecto de transición para el color del icono */
}

.port.cotizar-btn:hover i {
  color: #1D2E4C ; /* Cambia el color del icono a azul al pasar el mouse */
}

.port .button-container {
    display: flex;
    justify-content: center; /* Centra el botón horizontalmente */
    margin: 40px 0 10px 0; /* 40px arriba, 10px abajo */
}

.port .ver-mas-btn {
    display: inline-block; /* Para que el botón respete el ancho */
    padding: 15px 30px; /* Espaciado interno */
    background-color: #1D2E4C; /* Color de fondo */
    color: white; /* Color del texto */
    text-align: center; /* Centra el texto */
    text-decoration: none; /* Sin subrayado */
    border-radius: 5px; /* Bordes redondeados */
    transition: background-color 0.3s, color 0.3s, transform 0.3s; /* Transición suave */
}

.port .ver-mas-btn:hover {
    background-color: #13D5F8; /* Color de fondo al pasar el mouse */
    color: white; /* Color del texto al pasar el mouse */
	transform: translateY(-3px); /* Mueve el botón hacia arriba al pasar el mouse */
}

@media (max-width: 768px) {
    .port .ver-mas-btn {
        padding: 10px 20px; /* Ajustar el tamaño en pantallas más pequeñas */
    }
	
 .port .portfolio-item img {
    transform: scale(0.8); /* Reduce el tamaño de la imagen al 80% */
    transition: transform 0.3s ease; /* Efecto de transición suave */
  }	
	
  .isotope-container {
    margin-left: 15px;  /* Ajusta el margen izquierdo según sea necesario */
    margin-right: 15px; /* Ajusta el margen derecho según sea necesario */
  }

  .portfolio-info {
    font-size: 14px; /* Reducir de 16px a 14px */
  }

  .cotizar-btn {
    font-size: 14px; /* Reducir tamaño del texto del botón */
    padding: 6px 12px; /* Botón un poco más compacto */
  }
}

/* Para pantallas muy pequeñas (hasta 480px) */
@media (max-width: 480px) {
  .portfolio-info {
    font-size: 12px; /* Aún más pequeño para móviles chicos */
  }

  .cotizar-btn {
    font-size: 12px; /* También más pequeño */
    padding: 5px 10px; /* Más compacto para móviles */
  }
}

/*--------------------------------------------------------------
# Certificaciones - Index
--------------------------------------------------------------*/
.certific .swiper {
  box-shadow: 5px 0 0 rgba(0, 0, 0, 0.4); /* Sombra más fuerte solo a la derecha */
  background-color: white;
}

.certific .testimonials-carousel,
.certific .testimonials-slider {
  overflow: hidden;
}

.certific .swiper-wrapper {
  height: auto;
}

.certific .testimonial-item {
  display: flex;
  justify-content: center; /* Centra el contenido dentro del testimonial-item */
  align-items: center;     /* Centra verticalmente */
  text-align: center;      /* Centra el texto */
  flex-direction: column;  /* Alinea el contenido en columna */
}

.certific .swiper-pagination {
  margin-top: 5px;
  margin-bottom: 10px;
  position: relative;
  text-align: center;
  width: 100%;
  overflow: visible; /* Asegúrate de que no haya recortes */
}

.certific .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
  border: none;
}

.certific .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {

.certific .testimonials-carousel,
.certific .testimonials-slider {
    overflow: hidden;
  }

.certific .testimonial-item {
    margin: 15px;
  }
	
.certific .swiper {
    box-shadow: none; /* Elimina la sombra */
    background-color: white; /* Mantiene el fondo blanco */
  }
	
 .certific .images {
  justify-content: center; /* Centra las imágenes horizontalmente solo en móviles */
 }

 .certific .image-container {
        margin-left: 0; /* Elimina el margen izquierdo en móviles */
    }
}

.images {
  display: flex;
  justify-content: flex-start; /* Alinea las imágenes a la izquierda */
  align-items: center; /* Centra verticalmente las imágenes */
  padding: 15px; /* Espaciado interno */
}

.image-container {
  display: flex; /* Alinea las imágenes en una línea */
  flex-direction: row; /* Coloca las imágenes en fila */
  margin-left: 15px; /* Añade margen desde el borde izquierdo del contenedor */
}

.hover-image {
  width: 100%; /* Ajusta al ancho del contenedor */
  max-width: 200px; /* Tamaño máximo de la imagen */
  transition: transform 0.5s ease; /* Suaviza el cambio de escala */
  margin: 0 15px; /* Espaciado lateral entre imágenes */
}

.hover-image:hover {
  transform: scale(1.1); /* Efecto de zoom */
}

.certification-section {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
}

.number {
    color: #13D5F8;
    font-size: 70px;
    font-weight: bold;
    margin-right: 10px;
}

.text-content {
    display: flex;
    flex-direction: column;
}

.title {
    font-size: 15px;
    color:#1d2e4c;
    font-weight: normal;
}

.description {
    font-size: 25px;
    color: black;
    font-weight: normal;
}

@media (min-width: 768px) and (max-width: 1024px) {
    
.certific .testimonials-carousel,
.certific .testimonials-slider {
    overflow: hidden;
  }

.certific .testimonial-item {
    margin: 15px;
  }
	
.certific .swiper {
    box-shadow: none; /* Elimina la sombra */
    background-color: white; /* Mantiene el fondo blanco */
  }
	
 .certific .images {
  justify-content: center; /* Centra las imágenes horizontalmente solo en móviles */
 }

 .certific .image-container {
        margin-left: 0; /* Elimina el margen izquierdo en móviles */
 }
    }

/*--------------------------------------------------------------
# Clientes - Index
--------------------------------------------------------------*/

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
  width: 100%; /* Asegura que las imágenes ocupen el 100% del ancho del slide */
  max-width: 150%; /* Aumenta el tamaño máximo de las imágenes */
  height: auto; /* Mantiene la proporción */
}

.clients .swiper-slide {
  display: flex; /* Asegura que los slides se alineen correctamente */
  justify-content: center; /* Centra las imágenes dentro del slide */
  align-items: center; /* Centra verticalmente las imágenes */
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}    
     
/*--------------------------------------------------------------
# Mapa Google
--------------------------------------------------------------*/
.map iframe,
.map.sect iframe {
  width: 100%;
  height: 250px; /* altura base */
}

/* Teléfonos muy pequeños */
@media (max-width: 480px) {
  .map iframe,
  .map.sect iframe {
    height: 180px;
  }
}

/* Tablets pequeñas y móviles grandes */
@media (min-width: 481px) and (max-width: 768px) {
  .map iframe,
  .map.sect iframe {
    height: 220px;
  }
}

/* Tablets medianas */
@media (min-width: 769px) and (max-width: 1024px) {
  .map iframe,
  .map.sect iframe {
    height: 280px;
  }
}

/* Pantallas grandes */
@media (min-width: 1025px) {
  .map iframe,
  .map.sect iframe {
    height: 350px;
  }
}

/*--------------------------------------------------------------
# Somos - Nosotros
--------------------------------------------------------------*/

.deta .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.deta .features-item+.features-item {
  margin-top: 30px;
}

@media (max-width: 640px) {
  .deta .features-item+.features-item {
    margin-top: 40px;
  }
}

.deta .features-item h5 {
  font-weight: 700;
  font-size: 15px;
  color: rgba(29, 46, 76, 1);
}

.deta .features-item p {
padding-right: 30px; /* Espacio dentro del párrafo, a la derecha */
}

.deta .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  color: rgba(19, 213, 248, 1);
}

.deta .features-item ul {
  list-style: none;
  padding: 0;
}

.deta .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.deta .features-item ul li:last-child {
  padding-bottom: 0;
}

.deta .features-item img {
  transition: 0.5s all ease;
  transform: scale(1);
  width: 100%;
  height: auto;
}

.deta .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.deta .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contador - Nosotros
--------------------------------------------------------------*/

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item i {
  color: var(--accent-color);
  display: block;
  font-size: 44px;
  float: left;
  line-height: 0;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  margin-left: 60px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: var(--heading-font);
  font-size: 15px;
}

/*--------------------------------------------------------------
# Mision / Vision - Nosotros
--------------------------------------------------------------*/

.featservi {
    margin-top: 20px; /* Ajusta el valor según lo que necesites */
    margin-bottom: 20px; /* Ajusta el valor según lo que necesites */
}
.featservi .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 30px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}

.featservi .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.featservi .service-item .icon {
  margin-bottom: 10px;
}

.featservi .service-item .icon i {
  color: var(--accent-color);
  font-size: 40px;
  transition: ease-in-out 0.3s;
}

.featservi .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 25px;
}

.featservi .service-item h4 a {
  color: rgba(19, 213, 248, 1);
  transition: ease-in-out 0.3s;
}

.featservi .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.featservi .service-item:hover h4 a,
.featservi .service-item:hover .icon i,
.featservi .service-item:hover p {
  color: var(--contrast-color);
}

.featservi .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

/*--------------------------------------------------------------
# Valores - Nosotros
--------------------------------------------------------------*/

.valors .service-item {
    display: flex;
    flex-direction: column; /* Asegura que la imagen y texto estén en columna */
    justify-content: center; /* Centra verticalmente */
    align-items: center; /* Centra horizontalmente */
    padding: 10px;
    text-align: center; /* Asegura que el texto esté centrado */
    margin: 0 auto; /* Centra el contenido dentro del contenedor */
    min-height: 180px; /* Ajusta según necesidad */

}

.valors .icon img {
    max-width: 80%; /* Imagen responsiva */
    height: auto; /* Mantiene las proporciones */
    display: block; /* Asegura que no haya espacio por debajo */
    margin: 0 auto; /* Centra la imagen horizontalmente */
    transition: transform 0.3s
}

.valors .icon img:hover {
        transform: scale(1.05); /* Amplía la imagen al 110% */
    }

.valors h4 {
    font-weight: 700;
    font-size: 19px;
    color: rgba(19, 213, 248, 1);
    margin-top: 10px; /* Espaciado entre imagen y texto */
    text-align: center; /* Centra el texto */
    transition: color 0.3s ease-in-out;
}

.valors h4:hover {
    color: rgba(0, 123, 255, 1);
}

/*--------------------------------------------------------------
# Servicios - Servicios
--------------------------------------------------------------*/

.services-2 .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services-2 .features-item + .features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .services-2 .features-item + .features-item {
    margin-top: 40px;
  }
}

.services-2 .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-left: 30px;
}

.services-2 .features-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 30px;
}

.services-2 .features-item ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.services-2 .features-item ul li span {
  display: inline-block;
  max-width: 100%;
  line-height: 1.5;
}

.services-2 .features-item ul li span strong {
  font-weight: bold;
  margin-right: 5px;
}

.services-2 .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accent-color);
}

.services-2 .features-item p:last-child {
  margin-bottom: 0;
}

.services-2 .services-carousel-wrap {
  position: relative;
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.services-2 .swiper-wrapper {
  height: auto;
}

.services-2 .service-item {
  position: relative;
  overflow: hidden;
}

.services-2 .service-item img {
  transition: 0.5s all ease;
  transform: scale(1);
  width: 100%;
  height: auto;
}

.services-2 .service-item-contents {
  z-index: 9;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  transition: 0.3s all ease;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

.services-2 .service-item-contents .service-item-category {
  color: var(--accent-color);
  text-transform: uppercase;
}

.services-2 .service-item-contents .service-item-title {
  color: var(--contrast-color);
  margin-bottom: 0;
  font-size: 1.25rem;
}

.services-2 .service-item:hover .service-item-contents {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

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

.services-2 .navigation-prev,
.services-2 .navigation-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 40px;
  height: 40px;
  background: var(--contrast-color);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all ease;
}

.services-2 .navigation-prev i,
.services-2 .navigation-next i {
  font-size: 1.5rem;
}

.services-2 .navigation-prev:hover,
.services-2 .navigation-next:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services-2 .navigation-prev {
  left: 10px;
}

.services-2 .navigation-next {
  right: 10px;
}

.services-2 .swiper {
  padding-bottom: 50px;
}

.services-2 .swiper-pagination {
  bottom: 0;
}

.services-2 .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 20px;
  height: 4px;
  background-color: color-mix(in srgb, var(--background-color), transparent 80%) !important;
  opacity: 1;
}

.services-2 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color) !important;
}


.services-3 .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services-3 .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .services-3 .features-item+.features-item {
    margin-top: 40px;
  }
}

.services-3 .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  color: rgba(19, 213, 248, 1);
}

.services-3 .features-item p {
  color: white;
}

.services-3 .features-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-right: 30px;
}

.services-3 .features-item ul li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  color: white;
}

.services-3 .features-item ul li:last-child {
  padding-bottom: 0;
}

.services-3 .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: rgba(19, 213, 248, 1);
}

.services-3 .features-item p:last-child {
  margin-bottom: 0;
}

.services-3 .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services-4 .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .services-4 .features-item+.features-item {
    margin-top: 40px;
  }
}

.services-4 .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-left:30px;
}

.services-4 .features-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-4 .features-item ul li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.services-4 .features-item ul li:last-child {
  padding-bottom: 0;
}

.services-4 .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.services-4 .features-item p:last-child {
  margin-bottom: 0;
}

.services-5 .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services-5 .features-item + .features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .services-5 .features-item + .features-item {
    margin-top: 40px;
  }
}

.services-5 .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  color: rgba(19, 213, 248, 1);
}

.services-5 .features-item p {
  color: white;
}

.services-5 .features-item p:last-child {
  margin-bottom: 0;
}

.services-5 .services-carousel-wrap {
  position: relative;
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.services-5 .swiper-wrapper {
  height: auto;
}

.services-5 .service-item {
  position: relative;
  overflow: hidden;
  display: flex; /* Agregado para centrar la imagen */
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
}

.services-5 .service-item img {
  transition: 0.5s all ease;
  width: 100%;
  height: auto;
}

.services-5 .service-item-contents {
  z-index: 9;
  position: absolute;
  top: 20px; /* Ajustado para dar espacio arriba */
  bottom: 20px; /* Ajustado para dar espacio abajo */
  left: 20px;
  right: 20px;
  transition: 0.3s all ease;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

.services-5 .service-item-contents .service-item-category {
  color: var(--accent-color);
  text-transform: uppercase;
}

.services-5 .service-item-contents .service-item-title {
  color: var(--contrast-color);
  margin-bottom: 0;
  font-size: 1.25rem;
}

.services-5 .service-item:hover .service-item-contents {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.services-5 .navigation-prev,
.services-5 .navigation-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 40px;
  height: 40px;
  background: rgba(237, 232, 233, 1.00);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all ease;
}

.services-5 .navigation-prev i,
.services-5 .navigation-next i {
  font-size: 1.5rem;
}

.services-5 .navigation-prev:hover,
.services-5 .navigation-next:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services-5 .navigation-prev {
  left: 10px;
}

.services-5 .navigation-next {
  right: 10px;
}

.services-5 .swiper {
  padding-bottom: 50px;
}

.services-5 .swiper-pagination {
  bottom: 0;
}

.services-5 .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 20px;
  height: 4px;
  background-color: color-mix(in srgb, var(--background-color), transparent 80%) !important;
  opacity: 1;
}

.services-5 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color) !important;
}


.services-6 .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services-6 .features-item + .features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .services-6 .features-item + .features-item {
    margin-top: 40px;
  }
}

.services-6 .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.services-6 .features-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-6 .features-item ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
}

.services-6 .features-item ul li span {
  display: inline-block;
  max-width: 100%;
  line-height: 1.5;
}

.services-5 .features-item ul li span strong {
  font-weight: bold;
  margin-right: 5px;
}

.services-6 .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accent-color);
}

.services-6 .features-item p:last-child {
  margin-bottom: 0;
}

.services-6 .services-carousel-wrap {
  position: relative;
  margin-bottom: 10px;
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.services-6 .swiper-wrapper {
  height: auto;
}

.services-6 .service-item {
  position: relative;
  overflow: hidden;
}

.services-6 .service-item img {
  transition: 0.5s all ease;
  width: 100%;
  height: auto;
}

.services-6 .service-item-contents {
  z-index: 9;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  transition: 0.3s all ease;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

.services-6 .service-item-contents .service-item-category {
  color: var(--accent-color);
  text-transform: uppercase;
}

.services-6 .service-item-contents .service-item-title {
  color: var(--contrast-color);
  margin-bottom: 0;
  font-size: 1.25rem;
}

.services-6 .service-item:hover .service-item-contents {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.services-6 .navigation-prev,
.services-6 .navigation-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 40px;
  height: 40px;
  background: rgba(237,232,233,1.00);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all ease;
}

.services-6 .navigation-prev i,
.services-6 .navigation-next i {
  font-size: 1.5rem;
}

.services-6 .navigation-prev:hover,
.services-6 .navigation-next:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services-6 .navigation-prev {
  left: 10px;
}

.services-6 .navigation-next {
  right: 10px;
}

.services-6 .swiper {
  padding-bottom: 50px;
}

.services-6 .swiper-pagination {
  bottom: 0;
}

.services-6 .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 20px;
  height: 4px;
  background-color: color-mix(in srgb, var(--background-color), transparent 80%) !important;
  opacity: 1;
}

.services-6 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color) !important;
}

.bot-cus {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: rgba(19, 213, 248, 1);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
	box-shadow: 0 0 0 0.5px #000000; /* Simula un borde delgado */
}

.bot-cus:hover {
    background-color:rgba(29, 46, 76, 1); /* Color al pasar el ratón */
    transform: scale(1.05); /* Efecto de aumentar el tamaño */
	color: white;
}

.cent {
    display: flex; /* Usamos flexbox para centrar */
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente si hay más elementos */
    margin-top: 20px; /* Espacio adicional si lo deseas */
}

.bot-cus2 {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: rgba(19, 213, 248, 1);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
	box-shadow: 0 0 0 0.5px #000000; /* Simula un borde delgado */
}

.bot-cus2:hover {
    background-color:yellow; /* Color al pasar el ratón */
    transform: scale(1.05); /* Efecto de aumentar el tamaño */
	color: black;
}

.cent {
    display: flex; /* Usamos flexbox para centrar */
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente si hay más elementos */
    margin-top: 20px; /* Espacio adicional si lo deseas */
}

/*--------------------------------------------------------------
# Portafolio - index
--------------------------------------------------------------*/
.portaf .texto {
    font-size: 16px; /* Tamaño específico para el h2 */
    letter-spacing: 1px;
    line-height: 1.5;
    color: black;
    display: inline-block; /* Cambiar a block para flexbox */
    padding: 8px 20px;
    margin: 0;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    text-align: center; /* Centrado del texto */
    position: relative; /* Para el posicionamiento */
    font-weight: 400; /* Ajustado para un peso normal */
    text-transform: none;
    font-family: var(--heading-font);
    
}
.portaf .portfolio-filters {
  padding: 0;
  margin: 0 auto 50px auto;
  list-style: none;
  text-align: center;
}

.banner {
    background-image: url('../img/Baner/b3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: left;
    width: 100%;
    min-height: 25vh;
    margin: 0;
    padding: 0;
}

.portaf .portfolio-item:hover img {
  transform: scale(0.9); /* Aumenta el tamaño de la imagen al 110% al pasar el puntero */
  transition: transform 0.5s ease; /* Aumenta la duración a 0.5s para un efecto más suave */
}

.portaf .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 30px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portaf .portfolio-filters li:hover,
.portaf .portfolio-filters li.filter-active {
  color: white;
  background-color: rgba(29, 46, 76, 1);
}

.portaf .portfolio-filters li:first-child {
  margin-left: 0;
}

.portaf .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portaf .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portaf .card-body {
  padding: 0; /* Sin espaciado en la parte superior para alinear el botón */
  text-align: center; /* Centra el texto */
  
}

.portaf .portfolio-info {
  margin: 10px 0; /* Espacio igual entre el título y el botón */
  font-size: 16px;
  color: #000000; /* Color plomo */
  font-family: Arial, sans-serif; /* Estilo de letra más comercial */
}

.portaf .cotizar-btn {
  display: block; /* Ocupa todo el ancho disponible */
  width: 100%; /* Asegura que ocupe todo el ancho */
  background-color: #25D366; /* Color de fondo de WhatsApp */
  color: white; /* Color del texto */
  text-align: center; /* Centra el texto */
  padding: 15px; /* Espaciado interno más grande */
  border: none; /* Sin borde */
  border-radius: 0; /* Sin bordes redondeados */
  text-decoration: none; /* Sin subrayado */
  transition: color 0.3s; /* Solo efecto de transición para el color */
}

.portaf .cotizar-btn:hover {
  background-color: #25D366; /* Mantiene el fondo verde al pasar el mouse */
  color: #1D2E4C ; /* Cambia el texto a azul */
}

.portaf .cotizar-btn i {
  color: white; /* Color del icono */
  transition: color 0.3s; /* Efecto de transición para el color del icono */
}

.portaf .cotizar-btn:hover i {
  color: #1D2E4C ; /* Cambia el color del icono a azul al pasar el mouse */
}

.portaf .button-container {
    display: flex;
    justify-content: center; /* Centra el botón horizontalmente */
    margin: 40px 0 10px 0; /* 40px arriba, 10px abajo */
}

.portaf .ver-mas-btn {
    display: inline-block; /* Para que el botón respete el ancho */
    padding: 15px 30px; /* Espaciado interno */
    background-color: #1D2E4C; /* Color de fondo */
    color: white; /* Color del texto */
    text-align: center; /* Centra el texto */
    text-decoration: none; /* Sin subrayado */
    border-radius: 5px; /* Bordes redondeados */
     transition: background-color 0.3s, color 0.3s, transform 0.3s; /* Transición suave */
}

.portaf .ver-mas-btn:hover {
    background-color: #13D5F8; /* Color de fondo al pasar el mouse */
    color: white; /* Color del texto al pasar el mouse */
	transform: translateY(-3px); /* Mueve el botón hacia arriba al pasar el mouse */
}

@media (max-width: 768px) {
    .portaf .ver-mas-btn {
        padding: 10px 20px; /* Ajustar el tamaño en pantallas más pequeñas */
    }
	
 .portaf .portfolio-item img {
    transform: scale(0.8); /* Reduce el tamaño de la imagen al 80% */
    transition: transform 0.3s ease; /* Efecto de transición suave */
  }	

  .banner {
    background-size: contain; /* Ajusta la imagen para que se contenga dentro del div */
    background-position: center; /* Centra la imagen */
    min-height: 10vh; /* Ajusta la altura mínima si es necesario */
  }
	
  .portaf .portfolio-filters {
    font-size: 10px; /* Reducir el tamaño de fuente */
  }

  .portaf .portfolio-filters li {
    padding: 8px 20px; /* Reducir el padding de los elementos */
    margin-bottom: 3px; /* Ajustar el margen inferior */
  }

  .isotope-container {
    margin-left: 15px;  /* Ajusta el margen izquierdo según sea necesario */
    margin-right: 15px; /* Ajusta el margen derecho según sea necesario */
  }

  .banner {
    background-size: contain; /* Ajusta la imagen para que se contenga dentro del div */
    background-position: center; /* Centra la imagen */
    min-height: 10vh; /* Ajusta la altura mínima si es necesario */
  }
	
}

/*--------------------------------------------------------------
# Form cotizacion - Cotizacion
--------------------------------------------------------------*/

.cotizac .info-box {
  color: var(--contrast-color);
  padding: 1rem;
  border-radius: 1rem;
  height: 100%;
}

.cotizac .info-box {
    position: relative;
    text-align: center; /* Centra el contenido si es necesario */
}

.cotizac .info-box-img {
    width: 100%; /* Hace que la imagen ocupe todo el ancho disponible */
    height: auto; /* Mantiene la proporción de la imagen */
    border-radius: 8px; /* Borde redondeado (puedes ajustarlo o eliminarlo si lo prefieres) */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra sutil alrededor de la imagen */
    transition: transform 0.3s ease; /* Transición suave para el efecto de hover */
}

.cotizac .info-box-img:hover {
    transform: scale(1.05); /* Efecto de aumento al pasar el ratón */
}

.cotizac .contact-form {
  background-color: var(--surface-color);
  padding: 20px 30px 10px 30px;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
.cotizac .contact-form {
    padding: 1.5rem;
  }
}

.cotizac .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color:rgba(16, 110, 234, 1);
}

@media (max-width: 768px) {
.cotizac .contact-form h3 {
    font-size: 1.75rem;
  }
}

.cotizac .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

/* Responsividad para pantallas pequeñas */
@media (max-width: 768px) {
    .valors .service-item {
        padding: 5px; /* Reducir padding para móviles */
        flex-direction: column; /* Mantén columna en móviles */
        justify-content: center; /* Centra contenido */
        align-items: center; /* Asegura centrado horizontal */
        margin: 0 auto; /* Centra dentro del contenedor */
    }

    .valors h4 {
        font-size: 18px; /* Ajusta tamaño de texto en pantallas pequeñas */
    }
	
}

/*--------------------------------------------------------------
# Form Casilla Electronica - Casilla
--------------------------------------------------------------*/

.Elect.section {
  padding-bottom: 60px;
}

/* Botón de enviar personalizado */

/* Espacio entre el formulario y el botón Agregar archivo */
.Elect .btn-outline-success {
  margin-bottom: 10px;
}

.Elect .custom-submit-btn {
  display: block;
  width: 100%;
  background-color: rgba(29, 46, 76, 1);
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.Elect .custom-submit-btn:hover {
  background-color: #0b5ed7;
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  cursor: pointer;
}

/* Oculta el div en móviles (menos de 769px) */
@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Footer - Casilla/Contactanos
--------------------------------------------------------------*/

.foo {  
  color: var(--default-color);
  background-color: rgba(29, 46, 76, 1);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.foo h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 20px 0;
}

.foo p {
  font-size: 15px;
  font-style: italic;
  padding: 0;
  margin: 0 0 20px 0;
  color: rgba(19, 213, 248, 1);
}

.foo .social-links {
  margin: 0 0 20px 0;
}

.foo .social-links a {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 46, 76, 1);
  color:white;
  line-height: 1;
  margin: 5px;
  border-radius: 50%;
  text-align: center;
  width:40px;
  height: 40px;
  transition: 0.3s;
}

.foo .social-links a:hover {
  background: #106eea;
  text-decoration: none;
}

.foo .copyright {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.foo .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Form Contactanos - Contactanos
--------------------------------------------------------------*/

.cont {
  margin: 0;  /* Eliminar el margen */
  padding: 0; /* Eliminar el padding */
}

.cont .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.cont .inf2 {
  overflow: hidden;
}

.cont .inf2 h3 {
  font-weight: 600;
  font-size: 24px;
}

.cont .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.cont .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.cont .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.cont .info-item i {
  font-size: 24px;
  transition: 0.3s ease-in-out;  /* Consolidada la propiedad de transición */
  margin: 5px;  /* Unificamos el margin */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 46, 76, 1);
  color: white;
  line-height: 1;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
}

.cont .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.cont .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}


.cont {
  margin: 0;  /* Eliminar el margen */
  padding: 0; /* Eliminar el padding */
}

.cont .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.cont .inf2 {
  overflow: hidden;
}

.cont .inf2 h3 {
  font-weight: 600;
  font-size: 24px;
}

.cont .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.cont .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.cont .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.cont .info-item i {
  font-size: 24px;
  transition: 0.3s ease-in-out;  /* Consolidada la propiedad de transición */
  margin: 5px;  /* Unificamos el margin */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 46, 76, 1);
  color: white;
  line-height: 1;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
}

.cont .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.cont .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}