body {
  font-family: "Montserrat", sans-serif;
  color: #212529;
  background-color: #f8f9fa;
}

/* — Logo — */
.navbar-logo {
  max-height: 60px;
  width: auto;
  margin: 0;
  /* Escalado visual sin afectar la altura del navbar */
  transform: scale(2.1);
  transform-origin: left center;
}

/* — Barra flexible y centrada — */
.navbar {
  display: flex; /* ya lo hace Bootstrap, pero nos aseguramos */
  align-items: center; /* centra verticalmente */
  justify-content: space-between;
  padding: 0.75rem 1rem !important; /* espacio cómodo en desktop */
}

.navbar-nav .nav-link {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #e0e0e0 !important;
  padding-left: 1rem;
  padding-right: 1rem;
}

.navbar-nav .nav-link:hover {
  color: #ffffff !important;
}

/* Estilo personalizado para navbar */
.custom-navbar {
  background-color: #003366 !important; /* Azul profundo por ejemplo */
}

.custom-navbar .nav-link {
  color: #e0e0e0 !important;
}

.custom-navbar .nav-link:hover {
  color: #ffffff !important;
}

/* Estilo personalizado para el footer */
.custom-footer {
  background-color: #003061; /* Otro azul, más oscuro si querés */
  color: white;
  text-align: center;
  padding: 2.5rem 1rem;
}

.custom-footer a img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.custom-footer a:hover img {
  filter: none;
}


/* Cada slide ocupa 80vh manteniendo display por defecto de Bootstrap */
.carousel-item {
  position: relative;
  height: 80vh;
  
}

/* La imagen cubre todo el slide */
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
 
}

/* Contenido centrado sin interferir con display de los items */
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 1rem;
  pointer-events: none;
}


h1{
  font-weight: 700;
}

.titulo {
  font-size: 4rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.subtitulo {
  font-size: 1.75rem;
  font-weight: 500;
  margin: 0.5rem 0 0;
}

.carousel-image-wrapper {
  position: relative;
  height: 100%;
}

.carousel-image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Ajusta la opacidad aquí */
  z-index: 1;
}

.slide-content {
  z-index: 2; /* Asegura que el texto esté por encima de la capa oscura */
}


.container .sobre-chutrau-index {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.2rem;
  text-align: center;
  color: #555;
}

.info-card {
  background-color: #ffffff;
  padding: 5rem 1rem;
  margin-bottom: 3rem;
}

.info-card .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-card img {
  max-width: 150px;
  margin-bottom: 20px;
}

.info-card h3 {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-card p {
  max-width: 800px;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.card {
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.5rem;
  color: #004080;
}

.card-title-main {
  color: #003366;
}

.cont-main {
  padding-top: 2rem;
  padding-bottom: 12rem;
}
/* — Título pequeño (sub-heading) — */
.card-body h5.card-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem; /* aprox. 14px */
  text-transform: uppercase;
  color: #2b2c2c; /* gris suave */
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem !important;
}

/* — Título principal (main title) — */
.card-body h3.card-main-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.35rem; /* aprox. 28px, ajústalo si quieres más grande */
  text-transform: uppercase;
  color: #0c2b77; /* azul oscuro */
  margin: 0.5rem 0 1rem !important;
  position: relative;
}



.card-text {
  font-size: 1rem;
  color: #2b2c2c;
}

.section-title-hover a.hover-link {
   font-family: 'Montserrat', sans-serif;
   text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0c2b77;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.section-title-hover a.hover-link:hover {
  color: #003a92;
  transform: scale(1.05);
  text-decoration-thickness: 10;
} 


.btn-outline-primary,
.btn-outline-dark,
.grid-content .btn {
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 500;
  color: #ffffff;
  background-color: #212529;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-outline-primary:hover,
.btn-outline-dark:hover,
.grid-content .btn:hover {
  background-color: #343a40;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.grid-section {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 2rem;
}

.grid-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.grid-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
}

.grid-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.grid-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

main {
  flex: 1;
}

.product-card-section {
  margin-bottom: 8rem;
}

#productTable {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

#productTable thead {
  background-color: #003366;
  color: #fff;
  font-weight: 600;
}

#productTable td,
#productTable th {
  padding: 1rem;
}

.form-select,
.form-control {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.pagination .page-link {
  color: #003366;
  border-radius: 6px;
  margin: 0 4px;
}

.pagination .active .page-link {
  background-color: #003366;
  border-color: #003366;
  color: white;
}

.section h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #003366;
  margin-top: 4rem;
  margin-bottom: 4.5rem;
  padding-top: 1rem;
  padding-bottom: 2rem;

  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

/*--- PAGINA PRODUCTO --- */



.product-card-section {
  padding-bottom: 80px;
  padding-top: 60px;
  background-color: #f8f9fa;
  position: relative;
  z-index: 1;
}

.product-card {
  border: 1.5px solid #dee2e6;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  background-color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card .card-img-top {
  object-fit: cover;
  height: 220px;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.product-card .card-body {
  padding: 1.25rem;
  text-align: left;
  line-height: 1.5;
  color: #333; /* ← mejora la lectura */
}

.product-card .card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #212529;
}

.product-card .card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  letter-spacing: 0.1px;
  max-height: 180px;
  overflow: auto;
  padding-right: 5px;
}

.product-card.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.product-card.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.product-card.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.product-card.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}
.product-card.fade-in:nth-child(4) {
  animation-delay: 0.4s;
}
.product-card.fade-in:nth-child(5) {
  animation-delay: 0.5s;
}
.product-card.fade-in:nth-child(6) {
  animation-delay: 0.6s;
}
.product-card.fade-in:nth-child(7) {
  animation-delay: 0.7s;
}
.product-card.fade-in:nth-child(8) {
  animation-delay: 0.8s;
}
.product-card.fade-in:nth-child(9) {
  animation-delay: 0.9s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

footer {
  background-color: #003061;
  color: white;
  text-align: center;
  padding: 2.5rem 1rem;
  margin-top: auto;
}

.footer-content a img {
  width: 40px;
  height: 40px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.footer-content a:hover img {
  filter: none;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* === Responsive Design Enhancements === */




/* ==============================
         ESTILOS PARA contacto.html
         ============================== */

      /* 1. html y body con clases propias */
      .contacto-html {
        height: 100%;
        margin: 0;
      }
      .contacto-body {
        display: flex;
        flex-direction: column;
        font-family: 'Montserrat', sans-serif;
        background-color: #ffffff;
        color: #000;
        min-height: 100vh;
      }

      /* 2. Sección de contacto */
      .contacto-section {
        flex: 1;
        margin-top: 7rem;  
        margin-bottom: 4rem;
      }

      /* 3. Inputs y textarea */
      .contacto-section input:focus,
      .contacto-section textarea:focus {
        border-color: #495057;
        box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
      }

      /* 4. Tarjeta del formulario */
      .contacto-section .card {
        border-radius: 1rem;
      }
      .contacto-section .form-control {
        border-radius: 0.75rem;
        transition: box-shadow 0.3s ease;
      }

   



/*--- PAGINA SERVICIOS ---*/ 

/* ==============================
         1. VARIABLES GLOBALES
         ============================== */
      :root {
        /* Paleta de colores */
        --color-bg: #f8f9fa;
        --color-text: #212529;
        --color-muted: #6c757d;
        --color-primary: #3a3f5f;
        --color-accent: #0d6efd;
        --section-bg: #ffffff;
      }

      /* ==============================
         2. CLASES DE COLOR GENÉRICAS
         ============================== */
      .servicios-color-fondo {
        background-color: var(--color-bg);
      }
      .servicios-texto-principal {
        color: var(--color-text);
      }

      /* ==============================
         3. RESET, TIPOGRAFÍA Y LAYOUT
         ============================== */
      .body-servicios {
        font-family: 'Montserrat', sans-serif;
        padding-top: 95px;
        line-height: 1.6;
        background-color: var(--color-bg);
        color: var(--color-text);
      }

      

      /* ==============================
         5. SECCIÓN TIMELINE
         ============================== */
      .timeline-section {
        background-color: var(--section-bg);
        padding: 4rem 0;
      }
      .timeline-line {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: var(--color-primary);
        transform: translateY(-50%);
      }
      .timeline-item {
        background: var(--section-bg);
        padding: 1.5rem;
        border-radius: 0.75rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
      }
      .timeline-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
      }
      .timeline-icon {
        width: 48px;
        height: 48px;
        background-color: var(--color-primary);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 1.25rem;
        margin: 0 auto 1rem;
      }

      /* ==============================
         6. SECCIONES EVO
         ============================== */
      .evo-section .evo-header {
        background-color: var(--color-primary);
        padding: 1.5rem 2rem;
        border-top-left-radius: 0.75rem;
        border-top-right-radius: 0.75rem;
      }
      .evo-section .evo-body {
        background: var(--section-bg);
        padding: 2rem;
        border: 1px solid #e9ecef;
        border-top: none;
        border-bottom-left-radius: 0.75rem;
        border-bottom-right-radius: 0.75rem;
      }
      .evo-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.5rem;
      }
      .evo-icon {
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        background-color: var(--color-primary);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        margin-top: 0.25rem;
      }
      .evo-content h5 {
        margin: 0 0 0.25rem;
        font-weight: 600;
        color: var(--color-text);
      }
      .evo-content p {
        margin: 0;
        color: var(--color-muted);
        font-size: 0.95rem;
      }
      .evo-item.highlight .evo-content {
        background-color: #f1f3f5;
        padding: 0.75rem;
        border-radius: 0.5rem;
      }

      /* ==============================
         7. CLASES ESPECÍFICAS DE servicios.html
         ============================== */
      .servicios-titulo-seccion {
        color: #ffffff;
        font-size: 2rem;
        font-weight: 700;
      }
      .servicios-subtitulo-servicio {
        font-weight: 600;
        color: var(--color-primary);
        font-size: 1.2rem;
      }
      .servicios-parrafo-servicio {
        font-size: 1rem;
        color: var(--color-muted);
        line-height: 1.6;
      }

/*-------------------------------------------
-------------------------------------------
-------------------------------------------*/

/* PAGINA QUIENES SOMOS*/


/* ==============================
       ESTILOS PARA quienes_somos.html
       ============================== */

    /* 1. BODY */
    .quienes-body {
      font-family: 'Montserrat', sans-serif;
      color: #333;
      line-height: 1.6;
    }

    /* 2. TÍTULO PRINCIPAL */
    .quienes-titulo-principal {
      font-family: 'Montserrat', sans-serif;;
      color: #09306b;
      font-size: 2.75rem;
      text-align: center;
      margin: 4rem 0 3rem;
      font-weight: 700;
      
    }

    /* 3. PÁRRAFO DE INTRODUCCIÓN */
    .quienes-parrafo-intro {
      max-width: 700px;
      margin: 0 auto 2.5rem;
      font-size: 1.2rem;
      text-align: center;
      color: #555;
    }

    /* 4. SECCIÓN GENERAL */
    .quienes-seccion {
      padding: 7rem 0;
    }

    /* 5. ESPACIADO ENTRE FILAS */
    .quienes-row {
      margin-bottom: 8rem;
    }

    /* 6. SUBTÍTULO DE SECCIÓN (Misión/Visión) */
    .quienes-subtitulo-seccion {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 1.75rem;
      color: #003366;
      letter-spacing: 0.05em;
      margin-bottom: 1rem;
      text-align: center;
    }

    /* 7. PÁRRAFO GRANDE (Misión/Visión) */
    .quienes-parrafo-grande {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.125rem;
      line-height: 1.8;
      color: #555;
      text-align: center;
    }

    /* 8. TÍTULOS INTERNOS (h3, h4) */
    .quienes-titulo {
      font-family: 'Montserrat', sans-serif;
      color: #09306b;
      margin-bottom: 1.25rem;
    }

    /* 9. PÁRRAFOS GENERALES */
    .quienes-parrafo {
      margin-bottom: 1.5rem;
      color: #333;
    }

    /* 10. LISTAS DESTACADAS */
    .quienes-list-highlight {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .quienes-list-highlight li {
      background: #f5f9fc;
      border-left: 4px solid #09306b;
      padding: 1rem 1.25rem;
      margin-bottom: 1.25rem;
      border-radius: 0.5rem;
      font-size: 1rem;
      color: #444;
    }

    .quienes-list-highlight li strong {
      color: #09306b;
    }


 



/*-------------------------------------------
-------------------------------------------
-------------------------------------------*/


/* ————— ACADEMIA.HTML ————— */

 .academia-html {
      height: 100%;
      margin: 0;
    }
    .academia-body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      padding-top: 60px;           /* desplaza bajo la navbar fija */
      font-family: 'Montserrat', sans-serif;
      background-color: #f8f9fa;
      color: #000;
    }
    .academia-section {
      padding: 2rem 0;
    }
    .academia-section-header {
      text-align: center;
      padding: 60px 20px 30px;
    }
    .academia-titulo-principal {
      font-weight: 700;
      color: #003366;
      font-size: 2.5rem;
      margin: 0;
    }
    .academia-parrafo {
      font-size: 1rem;
      color: #6c757d;
      margin: 1rem auto 0;
      max-width: 700px;
    }
    .academia-list-highlight {
      list-style: none;
      padding: 0;
      margin: 1rem 0;
    }
    .academia-list-highlight li {
      background: #f5f9fc;
      border-left: 4px solid #003366;
      padding: 1rem;
      margin-bottom: 1rem;
      border-radius: 0.5rem;
      color: #444;
    }
    .academia-list-highlight li strong {
      color: #003366;
    }
    /* Mantengo las reglas de video-card sin cambios de prefijo */
    .video-card {
      border: 1px solid #dee2e6;
      border-radius: 12px;
      overflow: hidden;
      background-color: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .video-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .video-frame-container {
      flex: 0 0 350px;
      height: 100%;
    }

    .video-card iframe {
      width: 100%;
      height: 100%;
      border: none;
      border-top-left-radius: 12px;
      border-bottom-left-radius: 12px;
    }

    .video-info {
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .video-title {
      font-size: 1.2rem;
      font-weight: 600;
      color: #333;
    }

    .video-desc {
      font-size: 0.95rem;
      color: #555;
      margin-top: 5px;
    }

    @media (max-width: 768px) {
      .video-card {
        flex-direction: column !important;
      }
      .video-card iframe {
        border-radius: 12px 12px 0 0;
      }
    }

    /* ------------------------------*/
    /* ------------------------------*/

.info-card .container {
  flex-direction: column;
  text-align: center;
}

.info-card img {
  margin-bottom: 1rem;
}

/*.container-grid,
  .row.g-4 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  } */

.grid-section {
  height: auto;
  padding: 2rem 1rem;
}

.grid-content h2 {
  font-size: 1.5rem;
}

.grid-content p {
  font-size: 1rem;
}

footer {
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}


/* ==============================
   AJUSTES MOBILE (<576px)
   ============================== */
@media (max-width: 576px) {
  /* Reducir altura del carousel para que no “coma” todo el viewport */
  .carousel-item {
    height: 60vh; /* en lugar de 80vh */
  }

  /* Texto del slider más pequeño */
  .titulo {
    font-size: 2rem !important;
  }
  .subtitulo {
    font-size: 1rem !important;
  }

  /* Tarjetas flexibles */
  .cont-main {
    padding-bottom: 4rem; /* menos espacio muerto */
  }
  .cont-main .card {
    max-width: 100% !important;
    width: 100%;
    padding: 1rem; /* ajusta el padding interno */
  }

  /* Sección “Sobre Chutrau” con más padding lateral */
  .info-card {
    padding: 3rem 1rem;
  }

  /* Evitar solapamiento con la barra inferior de Safari en iPhone */
  body {
    padding-bottom: env(safe-area-inset-bottom);
  }
}



/* Navbar Responsive Fix */
/* — Responsive para móvil — */
@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 1rem !important;
  }
  .navbar-logo {
    max-height: 45px !important;
    /* Ajustamos ligeramente el escalado en móvil */
    transform: scale(1.2);
  }
  .navbar-toggler {
    border-color: #fff; /* si quieres visibilidad */
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 40px !important;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-text {
    font-size: 0.95rem;
  }

  .grid-section {
    padding: 1rem;
  }

  .grid-content {
    padding: 1rem;
  }

  .carousel-caption {
    display: none; /* Oculta captions en mobile si es necesario */
  }
}

@media (max-width: 576px) {
  .cont-main .card-body h3.card-main-title {
    font-size: clamp(1.2rem, 5vw, 2rem);
    line-height: 1.2;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: none;
    text-align: center;
    margin-bottom: 0.75rem;
  }
}





@media (min-width: 768px) {
  .cont-main .card {
    max-width: 40rem;
  }
}



@media (max-width: 576px) {
  .section h1 {
    font-size: 1.8rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }
}





