/**
* Template Name: eNno
* Template URL: https://bootstrapmade.com/enno-free-simple-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/* Urbanist Light (peso 300) */
@font-face {
  font-family: "Urbanist";
  src: url("/assets/fonts/Urbanist-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

/* Urbanist Medium (peso 500) */
@font-face {
  font-family: "Urbanist";
  src: url("/assets/fonts/Urbanist-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

/* Urbanist Bold (peso 700) */
@font-face {
  font-family: "Urbanist";
  src: url("/assets/fonts/Urbanist-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* Ultima Pro Black (peso 900) */
@font-face {
  font-family: "Ultima Pro";
  src: url("/assets/fonts/UltimaProBlack.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

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

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  /* Fuente principal del texto */
  --default-font: "Urbanist", sans-serif;

  /* Fuente para encabezados */
  --heading-font: "Urbanist-Medium", sans-serif;

  /* Fuente para la navegación (puedes escoger peso Medium si quieres diferenciar) */
  --nav-font: "Urbanist", sans-serif;

}

/* 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: #669fcf; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #002892; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0081da; /* 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: #5f687b;  /* The default color of the main navmenu links */
  --nav-hover-color: #10bc69; /* 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: #5f687b; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #10bc69; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  --top-strip-height: 35px;
}

/* 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: #f9f9f9;
  --surface-color: #ffffff;
}

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

.accent-background {
  --background-color: #10bc69;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #14eb83;
  --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: var(--default-font);
}

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);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

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

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

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@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);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* 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: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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: var(--default-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;
  }
}

/* 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;
    inset: 60px 20px 20px 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: 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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
:root{
  --c-footer-bg:#141E3F;   /* azul oscuro */
  --c-footer-txt:#F2F2F2;  /* texto claro */
  --c-footer-accent:#F2F2F2;/* celeste marca */
  --c-footer-gray:#666666;
  --c-footer-hover:var(--c-celeste)
}

.site-footer{
  background: var(--c-footer-bg);
  color: var(--c-footer-txt);
  font-size:.9rem;
  margin-top:40px;
}

/* Quita el fondo gris del newsletter si lo usas */
.footer-newsletter{
  background: var(--c-footer-bg);
  color: var(--c-footer-txt);
  box-shadow:none;
}
.footer-newsletter p{color:var(--c-footer-txt);}
.newsletter-form{
  background:#fff;
}
.newsletter-form button{
  background: var(--c-footer-accent);
}
.newsletter-form button:hover{
  background:#1c6e96;
}

/* Widgets */
.footer-widgets{
  padding:40px 0 10px;
}
.footer-widgets h5{
  color: var(--c-footer-accent);
}
.footer-info .logo-text{
  color: var(--c-footer-accent);
}

.footer-links ul li a{
  color: var(--c-footer-txt);
}
.footer-links ul li a:hover{
  color: var(--c-footer-hover);
}

/* Iconos sociales */
.footer-social .social-icons a{
  color: var(--c-footer-accent);
}
.footer-social .social-icons a:hover{
  background: var(--c-footer-hover);
  color:#fff;
  border-color: var(--c-footer-hover);
}

.footer-social .social-icons a {
  font-size: 1.5rem;   /* de 1rem (16px) a 1.5rem (24px) */
  padding: 0.5rem;     /* un poquito más de espacio alrededor */
}

.footer-social .social-icons a i {
  /* si usas iconos de Bootstrap-icons o Font-Awesome */
  font-size: inherit;  /* hereda de .social-icons a */
}


/* Línea y copyright */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.15);
  background: var(--c-footer-bg);
  color: var(--c-footer-txt);
}



/*--------------------------------------------------------------
# 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: 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: 700;
}

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

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

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  --surface-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding-top: 0;
}

.featured-services .service-item {
  background-color: var(--surface-color);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}

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

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured-services .service-item:hover {
  transform: translateY(-10px);
}

.featured-services .service-item:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/* Estilo “btn-store” por defecto */
.about-pills .nav-link {
  background-color: #fff;     /* mismo azul que TIENDA */
  color: #0081DA;                   /* texto blanco */
  border: 2px solid #0081DA;     /* borde azul */
  border-radius: 50px;           /* igual que rounded-pill */
  padding: 0.5rem 1.5rem;        /* padding parecido */
  font-weight: 600;
  transition: all .2s ease;
  font-family: 'Urbanist', sans-serif;

}

/* Hover cuando está desactivada */
.about-pills .nav-link:hover {
  background-color: #fff;     /* un azul más oscuro */
  color: #006bbf;
  border: 2px solid #0081DA;     /* borde azul */
  font-family: 'Urbanist', sans-serif;

}

/* Estado activa (invertido) */
.about-pills .nav-link.active {
  background-color: #0081DA;        /* fondo blanco */
  color: #fff;                /* texto azul */
  font-family: 'Urbanist', sans-serif;

}

/* Hover cuando está activa */
.about-pills .nav-link.active:hover {
  background-color: #fff;
  color: #0081DA;
  border: 2px solid #0081DA;     /* borde azul */
  font-family: 'Urbanist', sans-serif;

}


.tab-title{
  color:#002892;
  font-weight:700;
  margin-bottom:1rem;
  font-family: 'Urbanist', sans-serif;

}

.valores-list{
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-family: 'Urbanist', sans-serif;

}
.valores-list li{
  margin: .4rem 0;
  position: relative;
  padding-left: 24px;
  font-family: 'Urbanist', sans-serif;

}
.valores-list li::before{
  content: "✔";
  color: #0d6efd;      /* tu azul */
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Urbanist', sans-serif;

}

.section-title-icon{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:1rem;
  color:#003a9b;
  font-weight:700;
  font-family: 'Urbanist', sans-serif;

}
.section-title-icon i{
  font-size:1.6rem;
  color:#0d6efd;   /* o el azul que uses */
  font-family: 'Urbanist', sans-serif;

}

/* Lista de valores (ya la tenías) */
.valores-list{
  list-style:none;
  padding-left:0;
  margin:0;
}
.valores-list li{
  margin:.4rem 0;
  padding-left:24px;
  position:relative;
}
.valores-list li::before{
  content:"✔";
  color:#0d6efd;
  position:absolute;
  left:0; top:0;
}
.tab-pane { display:none; }
.tab-pane.show.active { display:block; }

.tab-btn{
  border:2px solid #003a9b;
  background:#fff;
  color:#003a9b;
  padding:10px 28px;
  border-radius:28px;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:6px;
  transition:.2s;
}
.tab-btn.active,
.tab-btn:hover{
  background:#003a9b;
  color:#fff;
}
.section-title-icon{
  display:flex; align-items:center; gap:8px;
  color:#003a9b; font-weight:700; margin-bottom:1rem;
}
.section-title-icon i{ font-size:1.6rem; color:#0d6efd; }

.about-card{
  border: none;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  margin-bottom: 2rem;
  font-family: 'Urbanist', sans-serif;

}

.section-title-icon{
  display:flex;
  align-items:center;
  gap:10px;
  color:#003a9b;
  font-weight:700;
  margin-bottom:1rem;
}
.section-title-icon i{
  font-size:1.6rem;
  color:#0d6efd;
}

.valores-list{
  list-style:none;
  padding-left:0;
}
.valores-list li{
  position:relative;
  padding-left:24px;
  margin-bottom:.4rem;
}
.valores-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#0d6efd;
  font-weight:700;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding-top: 0;
}

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

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

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

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

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

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

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

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

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

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

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

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

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

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

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About section
--------------------------------------------------------------*/

.about-card {
  transition: transform .3s ease, box-shadow .3s ease;
  border-radius: 16px;
  background: #fff;
  font-family: 'Urbanist', sans-serif;

}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  font-family: 'Urbanist', sans-serif;

}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg,#0081da,#002892);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:1.3rem;
}

.values-list {
  list-style: none;
  padding-left:0;
  margin:0;
}
.values-list li {
  position:relative;
  padding-left:28px;
  margin-bottom:12px;
  line-height:1.3;
}
.values-list li:before {
  content:"\f26e"; /* bootstrap icon check2-circle */
  font-family:"bootstrap-icons";
  position:absolute;
  left:0;
  top:2px;
  color:#0081da;
  font-size:1.1rem;
}

.timeline {
  position:relative;
  padding-left:20px;
}
.timeline:before {
  content:"";
  position:absolute;
  left:8px;
  top:0;
  bottom:0;
  width:2px;
  background:#cfe2ff;
}
.timeline-item {
  position:relative;
  padding:8px 12px 8px 24px;
  margin-bottom:12px;
  background:#f5f9ff;
  border-radius:8px;
  font-size:.95rem;
}
.timeline-item:before {
  content:"";
  position:absolute;
  width:14px; height:14px;
  border-radius:50%;
  background:#0081da;
  left:-1px; top:12px;
  border:3px solid #fff;
  box-shadow:0 0 0 2px #0081da;
}
.timeline-item:last-child { margin-bottom:0; }

/*--------------------------------------------------------------
# Menu card section - Inicio
--------------------------------------------------------------*/

/* Barra azul debajo del carrusel */
.sub-menu{
  background:#b9daec;
  padding:10px 0;
  font-size:14px;
}
.sub-menu .sub-link{
  text-decoration:none;
  color:#003366;
  font-weight:500;
  position:relative;
  padding:4px 0;
}
.sub-menu .sub-link:hover{
  color:#001e40;
}
.btn-tienda{
  background:#fff;
  padding:6px 28px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  color:#003366;
  display:inline-block;
  transition:.2s;
}
.btn-tienda:hover{box-shadow:0 0 0 3px rgba(255,255,255,.5);}

.sub-menu .icon{
  font-size:20px;
  color:#003366;
  text-decoration:none;
}

/* Cards de secciones */
.quick-sections{
  padding:40px 0 10px;
}
.qs-card{
  display:block;
  background:#003366;
  border-radius:24px;
  padding:24px 28px;
  text-decoration:none;
  color:#fff;
  position:relative;
  overflow:hidden;
  transition:.3s;
}
.qs-card:hover{
  background:#1f1f1f;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
}
.qs-card h3{
  font-size:1.4rem;
  margin-bottom:.5rem;
  color:#fff;
}
.qs-card p{
  font-size:.9rem;
  margin-bottom:2.5rem;
  max-width:420px;
}
.qs-btn{
  position:absolute;
  left:24px;
  bottom:20px;
  background:#fff;
  color:#003366;
  padding:8px 28px;
  border-radius:30px;
  font-weight:600;
  font-size:.85rem;
  transition:.2s;
}
.qs-card:hover .qs-btn{
  transform:translateY(-3px);
}
@media (max-width: 991.98px){
  .qs-card{min-height:200px;}
  .qs-card p{margin-bottom:1.5rem;}
}

:root{
  --top-strip-height: 34px;
  --c-celeste:#2E96CD;
  --c-azul:#141E3F;
  --c-negro:#000;
  --c-gris:#666666;
  --c-blanco:#fff;
}

/* ---------------- HEADER ---------------- */
.header{
  background: var(--c-blanco);
  position: sticky;
  top: var(--top-strip-height);
  z-index:1030;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.header .navmenu > ul > li > a{
  color: var(--c-celeste);
  font-weight:500;
}
.header .navmenu > ul > li > a:hover,
.header .navmenu > ul > li > a.active{
  color: var(--c-azul);
}

.header .bi{
  color: var(--c-celeste);
}

/* Si tu logo es claro: */
.logo img{
  filter: none;              /* quita sombra */
  mix-blend-mode: multiply;  /* opcional */
}

/* ---------------- TOP STRIP (redes) ---------------- */
.top-strip{
  top:0;
  z-index:1040;
  height: var(--top-strip-height);
  display:flex;
  align-items:center;
  background: linear-gradient(90deg,
    var(--c-celeste) 0%,
    var(--c-celeste) 70%,
    var(--c-azul) 90%,
    var(--c-negro) 100%);
  color: var(--c-blanco);
  font-size:.75rem;
  padding:0;
}

.top-strip .ts-left{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
}

.top-strip .social-item{
  display:inline-flex;
  align-items:center;
  gap:4px;
  color: var(--c-blanco);
  text-decoration:none;
  font-weight:500;
  transition:.2s;
}
.top-strip .social-item i{
  font-size:1rem;
  line-height:1;
}
.top-strip .social-item:hover{
  opacity:.85;
}

/* Opcional: que el body no quede oculto debajo del sticky header */
body{
  scroll-padding-top: calc(var(--top-strip-height) + 80px); /* 80px ≈ alto del header */
}

/* ---------------- Configuraciones del Header ---------------- */

/* Siempre mismo alto y estilos */
#header { padding: 18px 0; transition:none; }
.header-scrolled { padding: 18px 0 !important; }
.header .bi { font-size:20px !important; color:#0081da; } /* o blanco según topbar/header */
.navmenu > ul > li > a { font-size:16px !important; }

/* Que el container del header tenga ancho completo si hace falta */
#header .container-xl{
  max-width: 100%;
}

/* El UL del menú no debe recortar contenido */
.navmenu > ul{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:nowrap;      /* o wrap si prefieres que baje de línea */
  overflow:visible;
  white-space:nowrap;
}

/* Manda el buscador al extremo derecho para ganar espacio */
.navmenu li.search-box{
  margin-left:auto;
}


/* Evitar que el menú se recorte en páginas internas */
.header .navmenu{
  overflow: visible !important;
}
.header .navmenu > ul{
  white-space: normal !important;   /* que pueda saltar de línea si hace falta */
  text-overflow: initial !important;
  flex-wrap: wrap;                  /* permite que los <li> bajen si no caben */
  gap: 18px;                        /* ajusta el espacio entre items */
}

/* Si el buscador “empuja” demasiado, evita que crezca */
.header .search-box{
  flex: 0 0 auto;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Ajusta según lo que mida tu top-strip + header */
#Mapa{
  scroll-margin-top: calc(var(--top-strip-height, 32px) + 90px);
}


/* Ajustes al navbar */
.navbar {
  padding: 0.75rem 1rem;
  background: var(--contrast-color) /* blanco */;
}

.navbar-nav .nav-link {
  color: var(--accent-color) /* #0081da */;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color .2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--heading-color) /* #002892 */;
}

.navbar-brand img {
  filter: none;
  mix-blend-mode: multiply;
}

.input-group .form-control {
  max-width: 200px;
  border: 1px solid var(--accent-color);
}

.input-group .btn-primary {
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1199px) {
  /* Más espacio entre íconos y links en móvil */
  .navbar-nav .nav-link {
    padding: 0.75rem 0.5rem;
  }
}

/* Asegura que el sticky-top respete tu top-strip */
.top-strip + .navbar {
  top: var(--top-strip-height);
}

.navbar-nav .nav-link i.bi-cart3,
.navbar-nav .nav-link i.bi-geo-alt {
  font-size: 1.5rem;
  padding: 0.25rem;  /* espacio alrededor */
}

/* Top‐strip responsive: solo iconos en móvil y scroll si hay overflow */
@media (max-width: 768px) {
  .top-strip {
    padding: 0.25rem 0;
  }
  .top-strip .ts-left {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .top-strip .social-item {
    flex: 0 0 auto;
  }
  .top-strip .social-item span {
    display: none;    /* ocultamos la etiqueta, sólo queda el icono */
  }
  .top-strip .social-item i {
    font-size: 1.25rem; /* aumentamos un poco el tamaño del icono */
  }
  /* opcional: quita el scrollbar si lo quieres invisible */
  .top-strip .ts-left::-webkit-scrollbar {
    display: none;
  }
}

/* ---------------------------------------------------
   Ajustes responsivos para el Hero Carousel
   --------------------------------------------------- */
@media (max-width: 576px) {
  .carousel-section {
    /* Altura más baja para que no ocupe toda la pantalla */
    height: 50vh !important;
  }

  /* Centrar la caption y quitar desplazamientos */
  .caption-responsive {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    padding: 0 1rem;
    text-align: center;
    max-width: 90%;
  }

  /* Reducir tamaños de texto */
  .caption-responsive .hero-title {
    font-size: 1.6rem !important;
    line-height: 1.2;
  }
  .caption-responsive .hero-sub {
    font-size: 0.95rem !important;
    margin-bottom: 1rem;
  }

  /* Botón más compacto */
  .caption-responsive .btn-hero {
    font-size: 0.9rem !important;
    padding: 0.5rem 1.5rem !important;
  }
}

:root {
  --top-strip-height: 30px; /* suyo: ajusta al tamaño real */
  --header-height: 50px;    /* altura de tu navbar */
}

.top-strip {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--top-strip-height);
  z-index: 1030;           /* debe quedar justo debajo del navbar o incluso por encima si quieres */
}

/* --- 1) Deja el padding-top en main para el resto de secciones --- 
main.main {
  padding-top: calc(var(--top-strip-height) + var(--header-height));
}
*/

/* --- 2) Pero “sube” el carousel para quitar ese espacio en blanco --- */
.carousel-section {
  margin-top: calc(-1 * (var(--top-strip-height) + var(--header-height)));
  position: relative;
  z-index: 1;
}

.footer-bottom {
  /* antes lo tenías con border-top y sin padding extra */
  padding: 15px 0;     /* sube este valor para más altura vertical */
  border-top: 1px solid rgba(255,255,255,.15); /* conserva o ajusta color si quieres */
}

/* Propuesta de Landing Page */

.carousel-section {
  height: calc(100vh - var(--top-strip-height) - 56px); /* resta alto de top-strip + navbar */
  overflow: hidden;
}
.carousel-section .carousel-item {
  height: 100%;
}
.carousel-section .carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.carousel-item.hero-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);  /* más contraste */
  z-index: 1;
}
.carousel-item .carousel-caption {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 10rem;
  color: #eee;
}
.btn-hero {
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: transform .2s;
}
.btn-hero:hover {
  transform: translateY(-3px);
}

.scroll-down a {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.carousel-section {
  position: relative;
  /* Altura total de la ventana menos top-strip y navbar */
  height: calc(100vh - var(--top-strip-height) - var(--navbar-height));
  overflow: hidden;
}
.carousel-section .carousel-item {
  height: 100%;
}
.carousel-section .carousel-item img {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/banner-default.jpg") center/cover no-repeat; /* ruta genérica */
  filter: blur(var(--banner-blur));
  transform: scale(1.05); /* evita bordes negros al difuminar */
  z-index: 0;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-down a {
  display: inline-block;
  text-decoration: none;
}

.btn-hero {
  padding: 3rem 5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  /* margen opcional para todos los hero-btns: */
  margin: -5rem 0;  
}

.carousel-caption .btn-hero:first-of-type {
  margin-right: 1rem; /* separación específica del primer botón */
}

/* contenedor donde posicionamos el botón */
.scroll-down {
  position: absolute;
  bottom: 2rem;            /* separarlo del borde */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;              /* que quede por encima de la imagen */
}

/* el propio “botón” circular */
.scroll-down-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 2px solid #fff;    /* borde blanco de 2px */
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: transform .3s;
}

.scroll-down-link:hover {
  transform: translateX(-50%) translateY(-5%);
}

/* el icono dentro */
.scroll-down-link .bi-chevron-down {
  font-size: 1.5rem;
  color:#0081da;
}

html {
  scroll-behavior: smooth;
}

/* Boton tienda del header */

/* Tamaño más compacto */
.btn-store {
  background-color: var(--accent-color) !important;   /* celeste */
  color: var(--contrast-color) !important;            /* blanco */
  padding: 0.4rem 1rem;                  /* más pequeño */
  font-size: 0.85rem;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
  animation: bounceStore 2s ease-in-out infinite;
}

/* hover: fondo claro + texto celeste */
.btn-store:hover {
  animation: none;                         /* que no “rebote” mientras estás encima */
  background-color: var(--contrast-color);/* blanco */
  color: var(--accent-color);             /* celeste */
  border-color: var(--accent-color);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

/* animación de rebote */
@keyframes bounceStore {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/*Banner general*/
:root {
  /* Asegúrate de que este valor coincide con tu --accent-color */
  --banner-bg: #0081da;
}

.page-banner {
  background-color: var(--banner-bg);
}

.page-banner h1 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--contrast-color);
}

/* Adaptaciones responsivas */
@media (max-width: 576px) {
  .page-banner {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .page-banner h1 {
    font-size: 1.75rem;
  }
}

:root {
  --banner-overlay: #00289266; /* azul semitransparente */
  --banner-blur: 5px;                        /* intensidad del desenfoque */
}

/* Base de todos los banners */
.page-banner {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  color: #fff;
  font-family: 'Urbanist', sans-serif;

}

.page-banner .container {
  position: relative;
  z-index: 2; /* para que el contenido quede por encima del pseudo-fondo */
  font-family: 'Urbanist', sans-serif;
}

/* Fondo + blur */
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/banner-default.jpg") center/cover no-repeat; /* ruta genérica */
  filter: blur(var(--banner-blur));
  transform: scale(1.05); /* evita bordes negros al difuminar */
  z-index: 0;
}

/* Capa de color */
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--banner-overlay);
  z-index: 1;
  font-family: 'Urbanist', sans-serif;  
}

/* --- Acordeón estilo MyISP centrado --- */
/* Quitar bordes en el item y cuerpo */
.page-accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
}
.page-accordion .accordion-body {
  border: none;
  padding: 0.75rem 1.5rem;
}

/* Aplica el estilo “btn-store” a los botones del acordeón */
.page-accordion .accordion-button {
  background-color: #0081DA;      /* mismo azul del btn-store */
  color: #fff;                    /* texto blanco */
  border: none;                   /* sin borde por defecto */
  border-radius: 50px;            /* igual a rounded-pill */
  padding: 0.5rem 1.5rem;         /* mismo padding aproximado */
  box-shadow: none;               /* sin sombra */
  transition: all .2s ease;
  font-family: 'Urbanist', sans-serif;
}

/* Hover cuando está colapsado */
.page-accordion .accordion-button.collapsed:hover {
  background-color: #006bbf;      /* un poco más oscuro */
  color: #fff;
  font-family: 'Urbanist', sans-serif; 
}

/* Estado “activo” (expanded): colores invertidos */
.page-accordion .accordion-button:not(.collapsed) {
  background-color: #fff;         /* fondo blanco */
  color: #0081DA;                 /* texto azul */
  border: 2px solid #0081DA;      /* borde azul */
  font-family: 'Urbanist', sans-serif;
}

/* Hover cuando está expandido */
.page-accordion .accordion-button:not(.collapsed):hover {
  background-color: #0081DA;
  color: #fff;
  font-family: 'Urbanist', sans-serif;
}

/* ————————————————
   Estilos para el acordeón
   ———————————————— */
.accordion .accordion-item {
  margin-bottom: 1.5rem;
  border-radius: 50px;    /* esquinas totalmente redondas */
  overflow: hidden;       /* recorta el contenido al radio */
  border: none;           /* quita bordes separados */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-family: 'Urbanist', sans-serif;

}

.accordion .accordion-button {
  border-radius: 50px;    /* esquinas redondas */
  font-size: 1.2rem;      /* texto un poco más grande */
  padding: 1rem 2rem;     /* más espacio interno */
  transition: all .2s ease;
  font-family: 'Urbanist', sans-serif;

}

/* Botón abierto */
.accordion .accordion-button:not(.collapsed) {
  background-color: #0081DA;
  color: #fff;
  font-family: 'Urbanist', sans-serif;

}

/* Botón cerrado */
.accordion .accordion-button.collapsed {
  background-color: #fff;
  color: #0081DA;
  border: 2px solid #0081DA;
  font-family: 'Urbanist', sans-serif;

}

/* Cuerpo del acordeón */
.accordion .accordion-body {
  padding: 1.5rem;
  font-size: 1rem;
  background-color: #f8f9fa;
  font-family: 'Urbanist', sans-serif;

}

/* ————————————————
   Agrandar pestañas Misión/Visión/Valores
   ———————————————— */
.about-pills .nav-link {
  padding: 0.75rem 2rem;  /* más grande */
  font-size: 1.1rem;      /* texto mayor */
  font-family: 'Urbanist', sans-serif;

}

/* Limpia estilos por defecto */
.accordion,
.accordion-item {
  border: none;
  box-shadow: none;
  margin-bottom: 1rem;
  font-family: 'Urbanist', sans-serif;

}

/* Contenedor redondeado y recorte */
.accordion-item {
  border-radius: 50px;
  overflow: hidden;
  font-family: 'Urbanist', sans-serif;

}

/* Botones 100% redondos */
.accordion-button {
  border-radius: 50px !important;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  transition: all .2s ease;
  font-family: 'Urbanist', sans-serif;

}

/* Estado COLLAPSED (cerrado): fondo azul, texto blanco */
.accordion-button.collapsed {
  background-color: #002892;
  color: #fff;
  border: none;
  box-shadow: none;
  font-family: 'Urbanist', sans-serif;

}

/* Estado EXPANDED (abierto): fondo blanco, texto azul y borde */
.accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #002892;
  border: 2px solid #002892;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-family: 'Urbanist', sans-serif;

}

/* Flecha siempre en azul sobre blanco, blanca sobre azul */
.accordion-button.collapsed::after {
  filter: invert(100%);
  font-family: 'Urbanist', sans-serif;

}
.accordion-button:not(.collapsed)::after {
  filter: none;
  font-family: 'Urbanist', sans-serif;

}

/* Cuerpo del acordeón */
.accordion-body {
  background: #f8f9fa;
  padding: 1.5rem;
  font-size: 1rem;
  font-family: 'Urbanist', sans-serif;

}

/* Estilo del video de fondo*/
.carousel-section {
  position: relative;
}

.hero-item {
  position: relative;
  overflow: hidden;
  height: 70vh; /* o la altura que necesites */
}

.hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;   /* asegurar cobertura horizontal */
  height: 100vh;  /* cobertura vertical */
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: blur(4px) brightness(0.6);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2); /* capa extra para contraste */
  z-index: 1;
}

.carousel-caption.caption-center {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  text-align: center;
}

/* Ajustes responsivos opcionales */
@media (max-width: 768px) {
  .hero-item { height: 50vh; }
  .hero-title { font-size: 1.75rem; }
  .hero-sub   { font-size: 1rem; }
}

/* Cambios para el responsive de celular */
/* ----------------------------
   1) Hero video / fondo 
   ---------------------------- */
.hero-item {
  position: relative;
  overflow: hidden;
  height: 80vh;
  min-height: 400px;
}
.hero-item .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: blur(3px) brightness(0.6);
  z-index: 0;
}
.hero-item .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 90%;
  max-width: 600px;
  text-align: center;
}

/* ============================
   2) Tipografía del Hero
   ============================ */
.hero-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-sub {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

/* ============================
   3) Botones del Hero
   ============================ */
.hero-cta .btn {
  margin: 0.5rem;
  min-width: 140px;
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
}

/* ============================
   4) Ajustes para móviles
   ============================ */
@media (max-width: 768px) {

  /* Reduce la altura y texto del hero */
  .hero-item {
    height: 60vh;
    min-height: 300px;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .hero-cta .btn {
    width: 100%;
    margin: 0.25rem 0;
    font-size: 0.9rem;
  }

  /* Productos: títulos más pequeños y más margen */
  #products .section-title span {
    display: block;
    font-size: 1.25rem;
  }
  #products .section-title h2 {
    font-size: 1.75rem;
  }
  #products .section-title p {
    font-size: 0.95rem;
  }
}

/* ============================
   5) Tipografía en toda la sección
   ============================ */
#products, 
#products * {
  font-family: 'Urbanist', sans-serif !important;
}

/* ============================
   6) Swiper: evita que en móvil quede demasiado estrecho
   ============================ */
.init-swiper .swiper-slide {
  display: flex;
}
.init-swiper .card {
  flex: 1;
}

/* ————————————————
   Ajustes específicos para pantallas muy estrechas
   ———————————————— */
@media (max-width: 576px) {
  /* 1) Baja la altura del hero para que no oculte la CTA */
  .hero-item {
    height: 50vh !important;
    min-height: 250px !important;
  }
  /* 2) Reposiciona el caption un poco más arriba */
  .carousel-caption {
    top: 40% !important;
    bottom: auto !important;
    transform: translate(-50%, -40%) !important;
  }
  /* 3) Asegura que los botones queden fuera de corte */
  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
    margin-top: 1rem;
  }
  .hero-cta .btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.6rem 0;
  }
}

/* ————————————————
   Botón “TIENDA” en el menú móvil
   ———————————————— */
@media (max-width: 991px) {
  /* Dentro del collapse, haz que el botón sea “block” y ocupe todo el ancho */
  .navbar-collapse .btn-store {
    display: block !important;
    position: static !important;
    width: 100% !important;
    margin: 1rem 0 !important;
    text-align: center;
  }
  /* Ajusta también la búsqueda para que quede separada del botón */
  .navbar-collapse #buscador-productos {
    margin-bottom: 1rem;
  }
}

/* Productos: tarjetas estilo MyISP */
.products .product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.products .product-image {
  position: relative;
}
.products .product-image img {
  display: block;
  width: 100%;
  height: auto;
}
.products .product-image .cart-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #fff;
  color: #002892;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background .2s;
}
.products .product-image .cart-btn:hover {
  background: #0081DA;
  color: #fff;
}

.products .product-info {
  padding: 1rem;
}
.products .price {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #002892;
  margin-bottom: .5rem;
}
.products .description {
  font-size: .9rem;
  color: #555;
  margin-bottom: 1rem;
}
.products .btn-primary {
  background-color: #0081DA;
  padding: .3rem 1rem;
  font-weight: 400;
  transition: background .2s;
}
.products .btn-primary:hover {
  background-color: #006bbf;
}

/* Ajustes responsivos */
@media (max-width: 767px) {
  .products .price { font-size: 1rem; }
  .products .description { font-size: .85rem; }
  .products .btn-primary { padding: .4rem 1.2rem; font-size: .9rem; }
}

/* 4) Márgen para que no quede tapado por el header fijo */
.products.section {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #f9f9f9;
}

/* Tarjeta */
.products .product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin: 0 auto;
}
.products .product-image {
  position: relative;
}
.products .product-image img {
  display: block;
  width: 100%;
  height: auto;
}
.products .product-image .cart-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #fff;
  color: #002892;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background .2s, color .2s;
}
.products .product-image .cart-btn:hover {
  background: #0081DA;
  color: #fff;
}

/* Info */
.products .product-info {
  padding: 1rem;
}
.products .price {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #002892;
  margin-bottom: .5rem;
}
.products .description {
  font-size: .9rem;
  color: #555;
  margin-bottom: 1rem;
}
.products .btn-primary {
  background-color: #0081DA;
  padding: .3rem 1rem;
  font-weight: 400;
  transition: background .2s, border-color .2s;
}
.products .btn-primary:hover {
  background-color: #006bbf;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .products .price { font-size: 1rem; }
  .products .description { font-size: .85rem; }
  .products .btn-primary { padding: .4rem 1.2rem; font-size: .9rem; }
}

/* Asegura que el contenedor de tu swiper sea relativo */
.init-swiper {
  position: relative;
}

/* Posiciona los bullets centrados y 20 px por debajo del borde inferior */
.init-swiper .swiper-pagination {
  position: absolute !important;
  bottom: -5px;            /* ↕️ ajusta este valor hasta que quede justo donde quieras */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* Dale un poco de estilo para que destaque sobre el fondo */
.init-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 4px !important;
  background: #0081da;
  opacity: 0.5;
}

.init-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* 1) Aumentar espacio entre items de nav */
.navbar-nav .nav-item + .nav-item {
  margin-left: 0.8rem;  /* más separación */
}

/* 2) Asegurar que el menú —logo+nav— siempre quede alineado */
.navbar .navbar-brand {
  margin-right: 2rem;
}

/* 3) Ajuste de padding para que no queden tan pegados */
.navbar-nav .nav-link {
  padding: 0.75rem 0;   /* links más altos para “click area” */
  font-weight: 500;
}

/* 4) En dispositivos pequeños, mantener el espaciado vertical */
@media (max-width: 991px) {
  .navbar-nav .nav-item + .nav-item {
    margin-left: 0;      /* ya no aplica en colapsado */
  }
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
  }
}

/* 5) Si quieres un “hover” más suave */
.navbar-nav .nav-link:hover {
  color: #002892;
  text-decoration: underline;
}

/* Reducir ligeramente el botón “TIENDA” */
.btn-store {
  padding: 0.4rem 0.9rem;     /* menos alto y estrecho */
  font-size: 0.8rem;          /* texto un poco más pequeño */
}

/* Aumentar tamaño del botón de idioma (bandera) */
#langDropdown {
  padding: 0.25rem;           /* más “click‐area” alrededor */
}
#langDropdown img {
  width: 28px;                /* un poco más grande */
  height: auto;
}

/* ------------------------------------
   1) Compactar nav-links y aumentar gap
   ------------------------------------ */
/* Reduce algo el padding horizontal de cada enlace */
#mainNavbar .navbar-nav .nav-link {
  padding: 0.5rem 0.75rem;
}

/* Espacio entre cada nav-item */
#mainNavbar .navbar-nav .nav-item + .nav-item {
  margin-left: 0.3rem;
}

/* ------------------------------------
   2) Separación extra entre menú y buscador
   ------------------------------------ */
/* Empuja el buscador un poco a la derecha */
#mainNavbar .navbar-nav {
  margin-right: 1.5rem;
}

/* ------------------------------------
   3) Agrandar la barra de búsqueda
   ------------------------------------ */
/* Dale un ancho fijo mayor al input */
#buscador-productos .form-control {
  width: 300px;   /* ajústalo a tu gusto */
  transition: width .3s ease;
}

/* Opcional: en pantallas pequeñas, que se contraiga */
@media (max-width: 576px) {
  #buscador-productos .form-control {
    width: 140px;
  }
}

/* ------------------------------------------------------------------
   Hover estilo “btn-store” para el botón de ubicación
   ------------------------------------------------------------------ */
.location-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1.5rem;     /* redondeado tipo pill */
  transition: background 0.2s ease, color 0.2s ease;
  color: var(--accent-color); /* toma tu color principal (#0081da) */
}

.location-btn i {
  transition: color 0.2s ease;
}

/* Hover */
.location-btn:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.location-btn:hover i {
  color: #fff;
}

html {
  scroll-padding-top: calc(var(--top-strip-height) + var(--header-height));
}

/* 1) Quita cualquier margen/padding extra del section del carrusel */
.carousel-section {
  margin: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  background-color: transparent !important;
}

/* 2) Haz que el vídeo llene TODO el alto de la ventana (menos top strip + navbar) */
:root {
  /* asegúrate de que coincidan con tus variables reales */
  --top-strip-height: 30px;
  --header-height: 56px; /* ajusta al alto real de tu navbar */
}
.carousel-section,
.carousel-section .carousel-inner,
.carousel-section .carousel-item,
.carousel-section .hero-item,
.carousel-section .hero-video {
  height: calc(100vh - var(--top-strip-height) - var(--header-height)) !important;
}

/* 3) Elimina cualquier gap justo antes de la barra de categorías */
.carousel-section + section.category-bar {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 4) Asegura que la barra de categorías no traiga padding extra */
.category-bar {
  margin: 0;
  padding: .5rem 0;
  background: #0081DA;
}

/* Empuja TODO el contenido de <main> (incluyendo los banners) 
   hacia abajo para que no lo tape el header fijo */
.page-banner {
  /* padding-top = top-strip + navbar */
  padding-top: calc(var(--top-strip-height) + var(--header-height) + 20px);
}

/* Fondo celeste suave para Conócenos y pestañas */
#about {
  background-color: rgba(0, 129, 218, 0.02);  /* celeste muy claro */
}
#about-tabs {
  background-color: #fff;  /* un poquito más intenso */
}

/* Para cualquier imagen en about */
#about .ratio img {
  object-fit: cover;      /* recorta y centra la imagen dentro de la caja */
  border-radius: 12px;    /* esquinas redondeadas */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

/* Opcional: efecto hover */
#about .ratio:hover img {
  transform: scale(1.03);
}

/* tarjeta muy ligera para el texto */
.mission-card {
  background-color: rgba(0, 129, 218, 0.05); /* celeste casi blanco */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mission-card:hover {
  transform: scale(1.02);
}
/* sombra ligera para la imagen (sin cambiar su posición) */
.mission-img {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* opcional: un hover muy sutil */
.mission-img:hover {
  transform: scale(1.02);
}

/* tarjeta muy ligera para el texto */
.vission-card {
  background-color: rgba(0, 129, 218, 0.05); /* celeste casi blanco */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vission-card:hover {
  transform: scale(1.02);
}
/* sombra ligera para la imagen (sin cambiar su posición) */
.vission-img {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* opcional: un hover muy sutil */
.vission-img:hover {
  transform: scale(1.02);
}

/* tarjeta muy ligera para el texto */
.Presentation-card {
  background-color: #fff; /* celeste casi blanco */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.Presentation-card:hover {
  transform: scale(1.02);
}

.carousel-caption .btn-outline-light.btn-hero {
  border: none !important;
}

.btn-primary.btn-hero {
  border: none !important;
}

.top-strip,
.navbar.fixed-top {
  padding-right: var(--bs-gutter-x, 15px); /* deja espacio para la barra de scroll */
}

header {
  width: calc(100% - 15px); /* deja espacio para la barra de scroll */
}
