@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&display=swap');


/* tip: reemplaza fuentes y variables según tu identidad */
:root{
  --primary:#006082;
  --dark:#0b1220;
  --muted:#6c757d;
}

body{
  font-family: "Inter", sans-serif;
  color:var(--dark);
  background:#fff;
  padding-top: 80px; 
}

/* HERO */
.hero{
  background:var(--primary);
  padding:0 0;
}

.hero h1{
  color:#fff;
  font-size:1.5rem;
  font-weight:700;
  margin-bottom:1rem;
}


.hero h2{
  color:#fff;
  font-size:1.2rem;
  margin-bottom:1rem;
}

.hero p{
  color:rgba(255,255,255,0.9);
}

/* BANNERS & BLOCKS */
.banner-dark{
  background-color:var(--primary);
  padding:60px 0;
}

.tech-block{
  background:linear-gradient(90deg,#09203f,#537895);
  padding:50px 0;
}

/* GENERAL */
h3,h4{ color:var(--primary) }
section{ overflow:hidden; }
.footer{ font-size:0.9rem; }

/* responsive tweaks */
@media (max-width:767px){
  .hero{ padding:40px 0; }
  .hero img{ margin-top:20px; }
}




/* Carrusel productos */
#productos {
  overflow: hidden;
  position: relative;
}

#productos .slider-container {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

#productos .col-md-3 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

/* Opcional: efecto suave al entrar */
#productos .col-md-3 img {
  border-radius: 8px;
  transition: transform 0.3s ease;
}

#productos .col-md-3:hover img {
  transform: scale(1.05);
}

#productos a {
  text-decoration: none;
  color:var(--dark);
}



/* HEADER */
.nav-item{
  padding: 0 10px;
}


/* FOOTER */
.footer a {
  
  text-decoration:none;
}
.logo-footer{
  width: 130px!important;

}
.social-icons a {
  transition: color 0.3s ease, transform 0.3s ease;
}
.social-icons a:hover {
  color: #00bfff; /* color al pasar el mouse */
  transform: scale(1.15);
}



/* LANDINGS */

.icon-text-list span {
  font-size: 1rem;
  color: #333; 
}

.icon-fixed {
  width: 40px; /* ajustá según tu diseño */
  text-align: center;
  flex-shrink: 0; /* evita que se reduzca el ancho en pantallas chicas */
}



/* FAQS */
#faq .accordion-button:not(.collapsed) {
  background-color: #007bff;
  color: #fff;
}
#faq .accordion-button {
  font-weight: 500;
  font-size: 20px;
}
#faq .accordion-body {
  text-align: justify;
  font-size: 14px;
}


/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-float i {
  font-size: 1.5rem;
  margin-right: 10px;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.05);
}

.whatsapp-text {
  font-size: 15px;
  white-space: nowrap;
}

/* Opcional: versión solo ícono en pantallas chicas */
@media (max-width: 600px) {
  .whatsapp-text {
    display: none;
  }
  .whatsapp-float {
    border-radius: 50%;
    padding: 14px;
  }
  .whatsapp-float i {
    margin: 0;
  }
}



  /* Por defecto el video ocupa todo el ancho del contenedor */
  .video-responsive {
    width: 100%;
    max-width: 100%;
  }

  /* En pantallas de escritorio (>=992px), el video se reduce al 50% */
  @media (min-width: 992px) {
    .video-responsive {
      width: 50%;
    }
  }



 
  .table-container {
    width: 100%;
    overflow-x: auto;
  }

  .price-table {
    width: 100%;
    min-width: 600px; /* asegura ancho mínimo para scroll horizontal */
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
  }

  .price-table th, .price-table td {
    padding: 14px 10px;
    border: 1px solid #eee;
  }

  .price-table th {
    background: #f5f5f5;
    font-weight: bold;
    color: #555;
  }

  .price-table td {
    background: #fafafa;
    color: #333;
  }

  .price-table th.highlight {
    background: #beedff!important;
    /*color: #fff;*/
    font-weight: bold;
  }

  .price-table td.highlight {
    background: #beedff!important;
    /*color: #fff;*/
    font-weight: bold;
  }

  .price-table tr:nth-child(even) td {
    background: #f0f0f0;
  }

  /* Responsive: mantiene la tabla en una fila con scroll */
  @media (max-width: 768px) {
    .table-container {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .price-table {
      min-width: 700px;
    }

    .price-table th, .price-table td {
      white-space: nowrap;
    }
  }