

/* Controls */


/* Removed unused .slider responsive styles (no .slider elements in HTML).
  Keep JS `js/slider.js` defensive: it exits if no `.slider` exists. */
/* Removed duplicated `.slider` rules here (cleaned). */





.slider-btn:focus {

  outline: 2px solid rgba(255, 255, 255, 0.8);

}

/* Controls */

.carousel-control{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.35);
  color:#fff;
  border:none;
  width:44px;
  height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:10;
  cursor:pointer;
}
.carousel-control.prev{ left:12px; }
.carousel-control.next{ right:12px; }

/* Utilities: reusable glassmorphism */
.glass-white{ background: rgba(255,255,255,0.65); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border:1px solid rgba(255,255,255,0.3); border-radius:25px; box-shadow:0 8px 32px 0 rgba(31,38,135,0.37); }
.glass-green{ background: rgba(8,100,70,0.18); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border:1px solid rgba(255,255,255,0.3); border-radius:20px; }

/* Indicators */
.carousel-indicators{ position:absolute; left:50%; transform:translateX(-50%); bottom:12px; display:flex; gap:6px; z-index:10; }
.carousel-dot{ width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,0.6); border:none; cursor:pointer; }
.carousel-dot.active{ background:#fff; box-shadow:0 0 8px rgba(0,0,0,0.2); }

/* Backwards-compat: indicators created as `.indicator` by older scripts */
.indicator{ width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,0.6); border:none; cursor:pointer; }
.indicator.active{ background:#fff; box-shadow:0 0 8px rgba(0,0,0,0.2); }

/* Removed `.slider` responsive styles across the file — no `.slider` elements detected.
   If you later add a `.slider` component, restore styles in a dedicated block. */





























/* ===========================================



   MENÚ RESPONSIVO MODERNO - ORION REGISTRAR



   =========================================== */







:root {



  --primary-blue: #0066cc;



  --dark-blue: #003d99;



  --primary-green: #00cc66;



  --light-green: #00ff88;



  --white: #ffffff;



  --shadow: rgba(0, 102, 204, 0.15);



  --transition: all 0.3s ease;



}







/* HEADER PRINCIPAL */



.header {



  position: fixed;



  top: 0;



  left: 0;



  right: 0;



  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);



  box-shadow: 0 2px 20px var(--shadow);



  z-index: 1000;



  height: 70px;



}







.header-container {



  max-width: 1200px;



  margin: 0 auto;



  padding: 0 20px;



  height: 100%;



  display: flex;



  align-items: center;



  justify-content: space-between;



}







/* LOGO */



.logo {



  display: flex;



  align-items: center;



  text-decoration: none;



  z-index: 1001;



}







.logo img {



  height: 50px;



  width: auto;



  transition: var(--transition);



  border: 3px solid #ffffff;



  border-radius: 12px;



  padding: 4px;



  background: rgba(255,255,255,0.1);



}







.logo:hover img {



  transform: scale(1.05);



}



/* NAVEGACIÓN */



.nav {



  position: fixed;



  top: 70px;



  left: 0;



  width: 100%;



  height: calc(100vh - 70px);



  background: var(--white);



  transform: translateX(-100%);



  transition: var(--transition);



  overflow-y: auto;



  box-shadow: 2px 0 20px var(--shadow);



}







.nav-list {



  list-style: none;



  margin: 0;



  padding: 20px 0;



}







.nav-item {



  margin: 0;



  border-bottom: 1px solid #f0f0f0;



}







.nav-item:last-child {



  border-bottom: none;



}







.nav-link {



  display: block;



  padding: 15px 30px;



  color: var(--primary-blue);



  text-decoration: none;



  font-weight: 600;



  font-size: 16px;



  text-transform: uppercase;



  letter-spacing: 0.5px;



  transition: var(--transition);



  position: relative;



}







.nav-link:hover {



  background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);



  color: var(--white);



  padding-left: 40px;



}







.nav-link.login-btn {



  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);



  color: var(--white);



  text-align: center;



  margin: 20px 30px;



  border-radius: 8px;



  box-shadow: 0 4px 15px rgba(0, 204, 102, 0.3);



}







.nav-link.login-btn:hover {



  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);



  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);



  transform: translateY(-2px);



}







/* TOGGLE BUTTON */



.nav-toggle {



  display: none;



}







.nav-toggle-label {



  display: flex;



  flex-direction: column;



  justify-content: center;



  width: 40px;



  height: 40px;



  cursor: pointer;



  z-index: 1001;



  position: relative;



}







.hamburger {



  position: relative;



  width: 30px;



  height: 3px;



  background: var(--white);



  border-radius: 2px;



  transition: var(--transition);



}







.hamburger::before,



.hamburger::after {



  content: '';



  position: absolute;



  width: 30px;



  height: 3px;



  background: var(--white);



  border-radius: 2px;



  transition: var(--transition);



}







.hamburger::before {



  top: -8px;



}







.hamburger::after {



  top: 8px;



}







/* TOGGLE ACTIVE STATE */



.nav-toggle:checked ~ .nav {



  transform: translateX(0);



}







.nav-toggle:checked ~ .nav-toggle-label .hamburger {



  background: transparent;



}







.nav-toggle:checked ~ .nav-toggle-label .hamburger::before {



  transform: rotate(45deg) translate(6px, 6px);



}







.nav-toggle:checked ~ .nav-toggle-label .hamburger::after {



  transform: rotate(-45deg) translate(6px, -6px);



}







/* ===========================================



   RESPONSIVE DESIGN



   =========================================== */







/* TABLET */



@media screen and (min-width: 768px) {



  .header-container {



    padding: 0 30px;



  }







  .nav {



    width: 300px;



  }







  .nav-link {



    font-size: 18px;



    padding: 18px 40px;



  }



}







/* DESKTOP */



@media screen and (min-width: 1024px) {



  .header {



    height: 80px;



  }







  .header-container {



    padding: 0 40px;



  }







  .logo img {



    height: 60px;



  }







  .nav {



    position: static;



    height: auto;



    width: auto;



    background: transparent;



    transform: none;



    box-shadow: none;



    display: flex;



    align-items: center;



  }







  .nav-list {



    display: flex;



    gap: 0;



    padding: 0;



    margin: 0;



  }







  .nav-item {



    border-bottom: none;



  }







  .nav-link {



    padding: 10px 20px;



    color: var(--white);



    font-size: 14px;



    position: relative;



    border-radius: 6px;



    margin: 0 2px;



  }







  .nav-link:hover {



    background: rgba(255, 255, 255, 0.1);



    color: var(--white);



    padding-left: 20px;



    transform: translateY(-2px);



  }







  .nav-link.login-btn {



    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);



    color: var(--white);



    margin: 0;



    padding: 12px 24px;



    box-shadow: 0 4px 15px rgba(0, 204, 102, 0.3);



  }







  .nav-link.login-btn:hover {



    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);



    box-shadow: 0 6px 20px rgba(0, 204, 102, 0.4);



  }







  /* OCULTAR HAMBURGUESA EN DESKTOP */



  .nav-toggle-label {



    display: none;



  }



}







/* LARGE DESKTOP */



@media screen and (min-width: 1200px) {



  .header-container {



    max-width: 1400px;



  }







  .nav-link {



    font-size: 15px;



    padding: 12px 25px;



  }







  .nav-link.login-btn {



    padding: 14px 28px;



  }



}







/* SCROLL MARGIN PARA SECCIONES */



section[id] {



  scroll-margin-top: 90px;



}







/* ANIMACIÓN DE ENTRADA */



@keyframes slideInLeft {



  from {



    transform: translateX(-100%);



    opacity: 0;



  }



  to {



    transform: translateX(0);



    opacity: 1;



  }



}







.nav-toggle:checked ~ .nav {



  animation: slideInLeft 0.3s ease-out;



}



*,



*:before,



*:after{



    padding: 0;



    margin: 0;



    box-sizing: border-box;



}













*{



margin:0;



padding:0;



box-sizing:border-box;



font-family:Arial, Helvetica, sans-serif;



}



body{

/*background: linear-gradient(135deg, #e6e1e1);*/
background:#ffff;
    min-height: 100vh;

}





.navbar{



background: linear-gradient(135deg, #0066cc 0%, #003d99 100%);



padding:15px;



color:white;



display:flex;



justify-content:space-between;



align-items:center;



flex-wrap:wrap;



box-shadow:0 5px 20px rgba(0,102,204,0.3);



}



.navbar h2{



font-size:20px;



}



.menu a{



color:white;



text-decoration:none;



margin-left:20px;



}



.container{



width:90%;



margin:auto;



margin-top:40px;



}



.grid{



display:grid;



grid-template-columns:repeat(auto-fit,minmax(250px,1fr));



gap:20px;



}



.card{



background:#ffffff;



padding:25px;



border-radius:15px;



box-shadow:0 10px 30px rgba(0,51,153,0.15);



text-align:center;



border-left:4px solid #00cc66;



transition:0.3s;


-webkit-backdrop-filter:blur(10px);
backdrop-filter:blur(10px);



}



.card:hover{



transform:translateY(-5px);



box-shadow:0 15px 40px rgba(0,102,204,0.25);



}



.card h3{



margin-bottom:10px;



}



.card p{



margin-bottom:20px;



color:#000000;



}



.btn{



background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);



color:white;



padding:10px 20px;



border:none;



border-radius:6px;



cursor:pointer;



text-decoration:none;



display:inline-block;



transition:0.3s;



box-shadow:0 4px 15px rgba(0,204,102,0.3);



font-weight:bold;



}



.btn:hover{



background: linear-gradient(135deg, #00ffaa 0%, #00dd77 100%);



transform:translateY(-2px);



box-shadow:0 6px 20px rgba(0,204,102,0.4);



}



.notificacion{



width:90%;



margin:auto;



margin-top:20px;



padding:15px;



background: linear-gradient(135deg, #0066cc 0%, #003d99 100%);



color:white;



border-radius:10px;



text-align:center;



border-left:4px solid #00ff88;



box-shadow:0 5px 20px rgba(0,102,204,0.3);



font-weight:bold;



}







/* Estilos para el cuerpo principal responsivo */



.cuerpo-principal {



  padding: 3rem 2rem;



  margin: 2rem 0;



  background-color: transparent;



  text-align: center;



  border-top: none;



  border-bottom: none;



}







@media (max-width: 768px) {



  .cuerpo-principal {



    padding: 2rem 1rem;



    margin: 1.5rem 0;



  }



}







@media (max-width: 480px) {



  .cuerpo-principal {



    padding: 1.5rem 1rem;



    margin: 1rem 0;



  }



}







.contenedor-principal {



  display: flex;



  justify-content: center;



  align-items: center;



  max-width: 100%;



  width: 100%;



  margin: 0 auto;



  gap: 2rem;



}







.contenedor-principal img {



  width: 100%;



  height: auto;



  max-width: 800px;



  object-fit: contain;



}







.seccion-izquierda {



  flex: 1;



  text-align: left;



}







.seccion-izquierda h1 {



  font-size: 2.5rem;



  color: #333;



  margin-bottom: 1rem;



}







.seccion-izquierda p {



  font-size: 1.2rem;



  color: #666;



  margin-bottom: 2rem;



}







.btn-principal {



  background-color: #007bff;



  color: white;



  padding: 0.75rem 1.5rem;



  border: none;



  border-radius: 5px;



  font-size: 1rem;



  cursor: pointer;



  transition: background-color 0.3s;



}







.btn-principal:hover {



  background-color: #0056b3;



}







.seccion-derecha {



  flex: 1;



  text-align: center;



}







.img-principal {



  max-width: 100%;



  height: auto;



  border-radius: 10px;



  box-shadow: 0 4px 8px rgba(0,0,0,0.1);



}







/* Media queries para responsivo */



@media (max-width: 768px) {



  .contenedor-principal {



    flex-direction: column;



    text-align: center;



  }







  .seccion-izquierda {



    text-align: center;



  }







  .seccion-izquierda h1 {



    font-size: 2rem;



  }







  .seccion-izquierda p {



    font-size: 1rem;



  }



}







/* ===== ESTILOS FOOTER ===== */



.main-footer {
  background: linear-gradient(135deg, #0066cc 0%, #003d99 100%);
  color: #ffffff;
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.h4-footer-titulo {
  font-size: 1.9rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}
.h4-footer-subtitulo {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}


.footer-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
 margin-bottom: 0.75rem;
}

.footer-section a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #007bff;
}
.social-links {
  display: flex;
  gap: 1.5rem;
  
}
.social-links a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
  font-size: 1.1rem;
}

.social-links a:hover {
  background: #035a1d;
  transform: translateY(-3px);
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}
.footer-bottom p {
 margin: 0.5rem 0;
}
.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}
.a{
  color: #1e058d;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .main-footer {
    padding: 2rem 1rem 1rem;
    margin-top: 2rem;
  }
  .footer-container {
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }
  .footer-section h4 {
    font-size: 1rem;
    
  }
  .footer-section p {
    font-size: 0.9rem;
  }
}



.img-icono-css {
    width: 130px;
    height: 90px;
    background: transparent;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}



.img-icono-css:hover {
    transform: scale(1.1);
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }







  .main-footer {
    padding: 1.5rem 0.75rem 0.75rem;
 }

  .footer-bottom p {
    font-size: 0.85rem;

  }
}







/* ===== ESTILOS CARRUSEL ===== */



.carousel-wrapper {
  width: 100%;
  margin: 5rem auto;
  padding-top: 25px; /*Separacion de la parte superior entre menu y slider*/
}

.carousel-container {
  position: relative;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  background: #000;
}
.carousel-inner {
  position: relative;
  width: 100%;
  height: 400px;
}
.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
 transition: opacity 0.6s ease-in-out;
}







.carousel-item.active {



  opacity: 1;



}







.carousel-img {



  width: 100%;



  height: 100%;



  object-fit: cover;



}







.carousel-caption {



  position: absolute;



  bottom: 0;



  left: 0;



  right: 0;



  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);



  color: white;



  padding: 2rem 1.5rem;



  text-align: center;



}







.carousel-caption h3 {



  margin: 0 0 0.5rem;



  font-size: 1.5rem;



  font-weight: 700;



}







.carousel-caption p {



  margin: 0;



  font-size: 1rem;



  opacity: 0.9;



}







.carousel-control {



  position: absolute;



  top: 50%;



  transform: translateY(-50%);



  width: 48px;



  height: 48px;



  border: none;



  background: rgba(255, 255, 255, 0.3);



  color: white;



  font-size: 1.5rem;



  cursor: pointer;



  display: flex;



  align-items: center;



  justify-content: center;



  border-radius: 50%;



  transition: all 0.3s ease;



  z-index: 10;



}







.carousel-control:hover {



  background: rgba(255, 255, 255, 0.6);



  transform: translateY(-50%) scale(1.1);



}







.carousel-control.prev {



  left: 1rem;



}







.carousel-control.next {



  right: 1rem;



}







.carousel-indicators {



  position: absolute;



  bottom: 1rem;



  left: 50%;



  transform: translateX(-50%);



  display: flex;



  gap: 0.75rem;



  z-index: 10;



}







.carousel-dot {



  width: 12px;



  height: 12px;



  border-radius: 50%;



  border: none;



  background: rgba(255, 255, 255, 0.5);



  cursor: pointer;



  transition: all 0.3s ease;



}







.carousel-dot.active {



  background: #007bff;



  width: 32px;



  border-radius: 6px;



}







.carousel-dot:hover {



  background: rgba(255, 255, 255, 0.8);



}







@media (max-width: 768px) {



  .carousel-inner {



    height: 300px;



  }







  .carousel-caption {



    padding: 1.5rem 1rem;



  }







  .carousel-caption h3 {



    font-size: 1.2rem;



  }







  .carousel-caption p {



    font-size: 0.9rem;



  }







  .carousel-control {



    width: 40px;



    height: 40px;



    font-size: 1.2rem;



  }



}







@media (max-width: 480px) {



  .carousel-container {



    border-radius: 12px;



  }







  .carousel-inner {



    height: 250px;



  }







  .carousel-caption {



    padding: 1rem 0.75rem;



  }







  .carousel-caption h3 {



    font-size: 1rem;



  }







  .carousel-caption p {



    font-size: 0.8rem;



  }







  .carousel-control {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .carousel-control.prev {
    left: 0.5rem;
  }
  .carousel-control.next {
    right: 0.5rem;
  }
}

/*SECCIÓN DE CERTIFICACIÓN*/
.section-certificacion-h1{
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #0066cc;
}

.carousel-section-certificacion {

  padding: 50px 20px;
  /*background: #111;*/
  color: #fff;
  text-align: center;
  
}
.carousel-container-certificacion {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
  background: rgba(8, 100, 70, 0.09); /* verde moderno (menta) */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
   /* 🔥 forma tipo blob */
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2), inset 0 1px 2px rgba(255,255,255,0.6); /* brillo interno */
}
.carousel-track-certificacion {
  display: flex;
  transition: transform 0.5s ease;
}
/* CARD */
.card-certificacion {
  min-width: 25%;
  padding: 10px;
  box-sizing: border-box;
}
.card-certificacion img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.card-body-certificacion {
  background: rgba(255, 250, 250, 0.705);
  color: #333;
 padding: 15px;
  border-radius: 0 0 10px 10px;
  height: 180px;
  display: flex;
  flex-direction: column;
}
.card-body-certificacion h3 {
  margin-bottom: 8px;
  color: #007BFF;
}
.card-body-certificacion p {
  font-size: 0.85rem;
  overflow-y: auto;
 flex: 1;
  padding-right: 5px;
}

/* Scroll bonito */
.card-body-certificacion p::-webkit-scrollbar {
  width: 4px;
}

.card-body-certificacion p::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
}
/* BOTONES */
.btn-certificacion {
 position: absolute;
  top: 40%;
 transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
}

.prev-certificacion {
   left: 0;
  }
.next-certificacion {
   right: 0; 
  }

/* 📱 RESPONSIVE */
@media (max-width: 900px) {
  .card-certificacion { min-width: 50%; }
}
@media (max-width: 500px) {
  .card-certificacion { min-width: 100%; }
}
.carousel-section-certificacion {
  padding: 5px 0; /* compacto */
}

/* Styles for the Responsive Photo Gallery */
/* centra toda la sección */
.gf-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* centra horizontal */
    justify-content: center;
    padding: 40px 20px;
    text-align: center;

}

/* centra el bloque de galería */

.gf-gallery {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    width: 100%;
    justify-content: center; /* centra contenido interno */
    align-items: center;
    background: transparent;

}

/* título */

.gf-title {
      font-size: 3.5rem;
    margin-bottom: 25px;
      color: #0066cc;
}

/* miniaturas verticales */

.gf-thumbnails {

    display: flex;

    flex-direction: column;

    gap: 10px;

    max-height: 400px;

    overflow-y: auto;

     align-items: center;

}



/* scrollbar elegante */
.gf-thumbnails::-webkit-scrollbar {
    width: 6px;
}
.gf-thumbnails::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* mini imágenes */
.gf-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
    border: 2px solid transparent;
}
.gf-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* activa */
.gf-thumb.active {
    border: 2px solid #007BFF;
    opacity: 1;
}
/* imagen principal */
.gf-main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px; /* altura fija del contenedor */
    background: #f5f5f5; /* fondo cuando la imagen no llena */
    margin: auto;
}
.gf-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 📱 responsive */
@media (max-width: 768px) {
    .gf-gallery {
  display: flex;
        flex-direction: row; /* 🔥 horizontal */
        overflow-x: auto;
        gap: 15px;
        scroll-behavior: smooth;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
   }

    /* scroll elegante */
    .gf-gallery::-webkit-scrollbar {
        height: 6px;
    }
     .gf-gallery::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

    .gf-thumbnails {
    flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        margin-top: 10px;
    }
    .gf-thumb {
      width: 60px;
        height: 60px;
    }
    .gf-main img {
        width: 100%;
        height: 250px;
        object-fit: contain; /* no se corta */     

    }
     .gf-main {
    min-width: 85%; /* 🔥 efecto slider */
        flex: 0 0 auto;
         scroll-snap-align: center;
    }
}





/* World Services Section */
.world-services {
    padding: 50px 20px;
    text-align: center;
    
}
.container-world-services {
    max-width: 1200px;
    margin: 0 auto;

}

.section-title-world-services {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #0066cc;
   
  }
.section-subtitle-world-services {
   font-size: clamp(18px, 2.5vw, 26px);
    margin-bottom: 30px;
   color: hsl(0, 0%, 0%);
 
}
.section-subtitle-h3-world-services {
   font-size: clamp(1.5rem, 1rem + 2.5vw, 4.25rem);
    margin-bottom: 30px;
 color: #0066cc;

}
.section-subtitle-h3-sub-world-services {
    font-size: clamp(1.5rem, 1rem + 2.5vw, 2.25rem);
    margin-bottom: 30px;
    color: hsl(0, 0%, 0%);
    
 }
.world-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    
}
/*.services-grid-logos-world-services {
      display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.5rem;
    border-radius: 20px;;
    
}
.service-item-logos {
    background: transparent;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}*/
/* Contenedor Principal: Cristal claro, limpio y espacioso */
.services-grid-logos-world-services {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Permite que los logos se acomoden si son muchos */
    gap: 2rem; /* Espaciado amplio y elegante entre logos */
    padding: 4rem 2rem; /* Más aire visual para dar estatus de importancia */
    border-radius: 24px;
    
    /* Cristal claro esmerilado de alta gama */
    background: rgba(255, 255, 255, 0.45); 
    backdrop-filter: blur(25px); 
    -webkit-backdrop-filter: blur(25px);
    
    /* Borde suave con destello azul imperceptible que da presencia */
    border: 1px solid rgba(0, 102, 204, 0.15); 
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05); 
}

/* Tarjetas de Clientes: El escenario perfecto para que resalte cualquier logo */
.service-item-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff; /* Fondo blanco sólido para mantener intactos los colores del logo */
    padding: 30px 45px; /* Proporciones horizontales perfectas para marcas */
    border-radius: 16px;
    min-width: 160px; /* Asegura un tamaño uniforme y presencia física */
    
    /* Borde sutil grisáceo */
    border: 1px solid rgba(0, 0, 0, 0.05);
    
    /* Sombra suave de flotación */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03); 
    
    /* Transición ultra suave de alta fidelidad */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease;
}

/* Hover de Impacto: El logo cobra vida iluminándose con tu azul cristalino */
.service-item-logos:hover {
    transform: translateY(-8px) scale(1.02); /* Elevación y expansión premium */
    
    /* El borde se ilumina con el azul #0066cc suavizado */
    border-color: rgba(0, 102, 204, 0.5); 
    
    /* Sombra proyectada con un sutil aura azul translúcida (presencia pura) */
    box-shadow: 0 20px 35px rgba(0, 102, 204, 0.12); 
}



.world-services .service-item {
    padding: 20px;
    border-radius: 8px; 
      border: 3px solid rgba(86, 16, 143, 0.13);
    border-radius: 45px;

}
.world-services .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
 

.world-services .service-icon {
  width: 250px;
    height: 190px;
    margin-bottom: 15px;
    filter: drop-shadow(0px 5px 10px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
   
       
}

.world-services .service-item-logos {
    display: grid;
    /* Se adapta solo: mínimo 140px por logo, máximo 1fr en pantallas grandes */
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    align-items: center;
    justify-items: center;
}

.world-services .service-item-logos a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 140px; /* Controla la altura de la sección visual aquí */
    padding: 1.5rem;
    background: #FFFFFF; /* Blanco puro para contraste */
    border-radius: 16px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* Reemplazamos el borde duro por una sombra muy sutil de diseño actual */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02), 
                0 1px 3px rgba(0, 0, 0, 0.04);
}
/* Estilo optimizado de tus imágenes (Logotipos) */
.world-services .service-icon-logos {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Obliga al logo a mantener su proporción sin deformarse */
    
    /* Tu filtro original de sombra, optimizado para fondos claros */
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.08)); 
    transition: all 0.3s ease;
}
/* Efecto Hover interactivo combinado */
.world-services .service-item-logos a:hover {
    transform: translateY(-5px); /* Elevación fluida */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08); /* Sombra expandida */
}
/* Al pasar el cursor sobre la tarjeta, la imagen reacciona */
.world-services .service-item-logos a:hover .service-icon-logos {
    transform: scale(1.03); /* Ligera pulsación visual del logotipo */
    filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.12));
}
.service-icon:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0px 12px 20px rgba(0,0,0,0.35));
}






/* About Us Section Styles */

.about-us {
    padding: 50px 20px;
    text-align: center;
  
}

.container-about-us {
    max-width: 1200px;
    margin: 0 auto;

}

.section-title-about-us {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #0066cc;
     position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;

}

.about-description-about-us-titulo {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
     font-size: clamp(1.5rem, 1rem + 2.5vw, 2.25rem);
     color: #000000;
}
  .about-description-about-us-subtitulo {
  text-align: center;
    margin-bottom: 40px; 
   font-size: clamp(1.5rem, 1rem + 2.5vw, 1.25rem);
    color: #000000;
}

.about-us .about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.about-us .about-item {
    background: #0066cc;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 2.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us .about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.about-us .about-icon {
    width: 200px;
    height: 140px;
    margin-bottom: 15px;
}

.about-us h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000000;
    background-color: white;
 

}

.p-description-about-us {
    font-size: 1rem;
    color: #ffffff;

}
/* High-quality-audit  */
.High-quality-audit {
  padding: 50px 20px;
  text-align: center;
}

.High-quality-audit-container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title-High-quality-audit {
     font-size: 3.5rem;
    margin-bottom: 20px;
    color: #0066cc;
}
.team-description-High-quality-audit {
    text-align: center;
    margin-bottom: 40px;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    font-size: clamp(18px, 2.5vw, 26px);
    color: #000000;
    /* 🔥 forma tipo blob */
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 5px 10px rgba(0,0,0,0.4), inset 0 1px 2px rgba(255,255,255,0.6);
     /* brillo interno */ 
}

/* High-quality-audit final  */


/* Our Team Section Styles */

.our-team {
  padding: 50px 20px;
  text-align: center;
}

.our-team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-our-team {
     font-size: 3.5rem;
    margin-bottom: 20px;
    color: #0066cc;

}

.our-team .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    background: transparent;
    justify-items: center;
}

.our-team .team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    padding: 26px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.our-team .team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.our-team .team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.our-team .team-member a {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 18px;
    color: #0066cc;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.our-team .team-member a:hover {
    background: #0066cc;
    color: #ffffff;
    transform: translateY(-2px);
}

@supports not ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
    .our-team .team-member,
    .our-team h3 {
        background: rgba(255, 255, 255, 0.94);
        border-color: rgba(0, 0, 0, 0.08);
    }
}

.our-team h3 {
    margin-bottom: 5px;
    color: #000000;
    background: rgba(255,255,255,0.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    display: inline-block;
    /* 🔥 borde moderno */
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 15px;
    /* efecto premium */
    box-shadow:
        0 8px 20px rgba(0,0,0,0.12),
        inset 0 0 10px rgba(255,255,255,0.3);
    transition: 0.3s ease;
}

/* hover elegante */

.our-team h3:hover {

    transform: translateY(-3px);

    box-shadow:

        0 12px 28px rgba(0,0,0,0.18),

        0 0 15px rgba(255,255,255,0.4);

}

.our-team p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.7;
    max-width: 100%;
    margin: 0;
}

.our-team a:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 22px rgba(0,0,0,0.15),
        0 0 12px rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .our-team {
        padding: 40px 16px;
    }

    .our-team .section-title {
        font-size: 2.6rem;
    }

    .our-team .team-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 18px;
    }

    .our-team .team-member {
        padding: 22px 18px;
    }

    .our-team .team-photo {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 500px) {
    .our-team {
        padding: 32px 12px;
    }

    .our-team .section-title {
        font-size: 2rem;
    }

    .our-team .team-photo {
        width: 140px;
        height: 140px;
    }

    .our-team .team-member {
        gap: 14px;
        padding: 20px 16px;
    }
}





/* Certification Process Section Styles */
.certification-process {
    padding: 50px 20px;
    background-color:transparent;
    text-align: center;  
}
.certification-process-container {
    max-width: 1200px;
    margin: 0 auto;
}
 .section-title-certification-process {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #0066cc;
    

}

.certification-process .process-description {
    /*font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;*/
    text-align: center;
    margin-bottom: 40px;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    font-size: clamp(18px, 2.5vw, 26px);
    color: #000000;
    /* 🔥 forma tipo blob */
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 5px 10px rgba(0,0,0,0.72), inset 0 1px 2px rgba(255,255,255,0.6); /* brillo interno */ 
}

.certification-process .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.certification-process .step {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-process .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}



.certification-process h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #444;
}

.certification-process p {
    font-size: 1rem;
    color: #666;
}

/* Responsive Image Styles */
.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
     margin-bottom: 15px;
}

/* =========================

   ACCREDITATIONS SECTION

========================= */

.accreditations-section {
    padding: 80px 20px;
    position: relative;
}
/* CONTENEDOR */
.container-acreditations {
    max-width: 1200px;
    margin: auto;
}
/* HEADER */
.accreditations-header {
    text-align: center;
    margin-bottom: 60px;
}

.accreditations-header h2 {
         font-size: 3.5rem;
    margin-bottom: 20px;
    color: #0066cc;
}
.accreditations-header p {
    max-width: 1200px;
    text-align: center;
    margin-bottom: 1px;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    font-size: clamp(18px, 2.5vw, 26px);
    color: #000000;
  }

/* GRID */

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

/* CARD */
.accreditation-card {
    background: rgba(255,255,255,0.12);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.15),
        inset 0 0 12px rgba(255,255,255,0.15);
    padding: 35px 25px;
    transition: 0.4s ease;
    overflow: hidden;
    position: relative;
}
/* EFECTO */
.accreditation-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.2),
        0 0 20px rgba(255,255,255,0.15);
}
/* CONTENEDOR DEL LOGO */
.accreditation-logo {
    width: 100%;
    height: 140px; /* 🔥 mismo espacio para todos */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

/* IMÁGENES */
.accreditation-logo img {
    width: 140px;
    height: 140px;
    object-fit: contain; /* evita deformación */
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.15));
    transition: 0.3s ease;
}

/* hover */
.accreditation-logo img:hover {
    transform: scale(1.05);
}

.accreditation-card:hover .accreditation-logo img {
    transform: scale(1.05);
}

/* CONTENIDO */
.accreditation-content h3 {
    font-size: clamp(20px, 2.2vw, 26px);
    color: #004080;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 8px 14px;
    background: rgba(255,255,255,0.9);
    border-radius: 999px;
    border: 1px solid rgba(0, 102, 204, 0.18);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.accreditation-content p {
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.9;
    color: #222222;
    text-align: justify;
    padding: 22px 20px 20px;
    margin: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,245,245,0.95));
    border-radius: 24px;
    border: 1px solid rgba(0, 102, 204, 0.14);
    box-shadow:
      0 18px 40px rgba(0,0,0,0.10),
      inset 0 0 18px rgba(255,255,255,0.6);
    position: relative;
}

.accreditation-content p::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 5px;
    width: 4px;
    height: calc(100% - 36px);
    background: linear-gradient(180deg, #0066cc, #00cc66);
    border-radius: 999px;
}

.accreditation-content p::after {
    content: '';
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 10px;
    height: 10px;
    background: #0066cc;
    border-radius: 50%;
    opacity: 0.28;
}

.accreditation-content p span {
    display: inline-block;
    font-weight: 700;
    color: #003366;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .accreditations-section {

        padding: 60px 15px;

    }

    .accreditation-card {

        padding: 25px 20px;

    }

    .accreditation-logo img {

        max-width: 120px;

    }

    .accreditation-content p {

        text-align: left;

        line-height: 1.75;

        padding: 18px 16px 16px;

    }

    .accreditation-content h3 {
        font-size: 1.8rem;
        padding: 6px 12px;
    }

}



/* We have the endorsement of Section Styles */

.endorsement-section {
  padding: 50px 20px;
  text-align: center;
}

.endorsement-container {
    max-width: 1200px;
    margin: 0 auto;
}

.endorsement-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.endorsement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(47, 6, 104, 0.25);
}
.endorsement-image {
    max-width: 100%;
    height: 100px;
    border-radius: 8px;
    margin-bottom: 15px;
}
/*.endorsement-image{
  max-width: 100%;
   height: auto;
}
*/


.endorsement-title {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #0066cc;
}

.endorsement-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #555;

}
.endorsement-content {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}



.endorsement-container{
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
}

.endorsement-item{
flex: 1 1 calc(50% - 20px);
 display: flex;
  flex-direction: column;
   align-items: center;
    margin: 10px;
}




























.img_cont {

    width: 100%;

    max-width: 600px;

    margin: auto;

}



/* IMAGEN PRINCIPAL */

.main_img {

    width: 100%;

    height: 400px; /* tamaño fijo */

   /** object-fit: cover; /* recorta sin deformar */

    border-radius: 10px;

     object-fit: contain; /* NO recorta */

    background: #000; /* relleno */

}









.texto-expandible {

    max-width: 800px;

    margin: auto;

    text-align: left;

    font-family: Arial, sans-serif;

    

}



.texto-expandible input {

    display: none;

}



/* texto corto visible por defecto */

.texto-corto {

    font-size: clamp(16px, 2.5vw, 22px);

    color: #000000;

    line-height: 1.5;

}



.texto-completo {
    font: size 1.2em;
    color: #000000;
    line-height: 1.6;
    text-align: justify;
     margin-top: 10px;
}

.texto-expandible {
    padding: 15px;
}

@media (max-width: 600px) {
    .texto-expandible {
        padding: 10px;
    }
}

/* texto completo oculto */
.texto-completo {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* cuando se activa */
#toggle-texto:checked ~ .texto-completo {
    max-height: 500px;
    margin-top: 10px;
}

/* ocultar texto corto al expandir */
#toggle-texto:checked ~ .texto-corto {

    display: none;

}



/* botón */

.btn-leer {
    display: inline-block;
    margin-top: 10px;
    color: #007BFF;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}
.btn-leer:hover {
    color: #0056b3;
}
/* alternar texto del botón */
.ver-menos {
    display: none;
}
#toggle-texto:checked ~ .btn-leer .ver-mas {
    display: none;
}

#toggle-texto:checked ~ .btn-leer .ver-menos {
    display: inline;
}

.container-location {
    display: flex; 
    flex-wrap: wrap;
     justify-content: space-between;  
}

.feedback-button {
    flex: 1 1 50%;
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 250, 250, 0.7);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
   -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}



/* efecto hover moderno */

.feedback-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.feedback-button a {
    display: inline-block;
    padding: 10px 20px;
    background: #007BFF;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}



.feedback-button a:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .feedback-button {
        flex: 1 1 100%; /* ocupa todo en celular */
         margin-left: 10px;
        margin-right: 10px
    }

}

.feedback-button {
   margin: 10px;
}

.feedback-location-map{
  flex: 1 1 calc(40% - 20px);
   margin: 15px;
   /* margin: 20px 0;*/
    background: rgba(255, 250, 250, 0.7);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);

    transition: all 0.3s ease;

    text-align: center; /* centra todo el contenido */

    padding: 20px;

}

/* efecto hover moderno */

.feedback-location-map:hover {

    transform: translateY(-5px);

    box-shadow: 0 8px 18px rgba(0,0,0,0.2);

}
.h2-feedback-location-map {
    margin-bottom: 20px; /* separación con el iframe */
    font-size: 2.5rem;
    color: #0066cc;

}

.feedback-location-map iframe {
    display: block;
    margin: 0 auto; /* centra el mapa */
    border-radius: 12px; /* opcional: esquinas modernas */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* efecto elegante */
}





.grupo {
    display: none;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;

}

.grupo.activo {
    display: flex;
}



/* barra */

.nav-galeria {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;

}



/* botones */

.nav-btn {

    width: 35px;

    height: 35px;

    line-height: 35px;

    text-align: center;

    border-radius: 50%;

    background: #eee;

    cursor: pointer;

    font-weight: bold;

    transition: 0.3s;

}



.nav-btn:hover {

    background: #007BFF;

    color: #fff;

}



.nav-btn.active {

    background: #007BFF;

    color: #fff;

}


/* Feedback form design aligned with main page style */

.feedback-form-section {
  padding: 90px 20px 100px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.96) 0%, rgba(232, 242, 255, 0.96) 100%);
}

.feedback-form-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 36px;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(0, 44, 110, 0.12);
  border: 1px solid rgba(255,255,255,0.75);
}

.feedback-form-card h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  color: #072d5f;
  text-align: center;
}

.feedback-form {
  display: grid;
  gap: 18px;
}

.feedback-form label {
  display: block;
  font-weight: 600;
  color: #16335b;
}

.feedback-input,
.feedback-textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(8, 100, 70, 0.18);
  background: rgba(255,255,255,0.95);
  color: #0e1f3d;
  font-size: 1rem;
  box-shadow: inset 0 1px 3px rgba(16, 48, 91, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.feedback-input:focus,
.feedback-textarea:focus {
  outline: none;
  border-color: #0079d6;
  box-shadow: 0 0 0 4px rgba(0, 121, 214, 0.12);
}

.feedback-textarea {
  min-height: 170px;
  resize: vertical;
}

.feedback-captcha-group {
  display: grid;
  gap: 10px;
}

.feedback-submit {
  justify-self: center;
  min-width: 190px;
  padding: 14px 28px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .feedback-form-section {
    padding: 70px 16px 80px;
  }
  .feedback-form-card {
    padding: 32px 22px;
  }
}

@media (max-width: 520px) {
  .feedback-form-card {
    border-radius: 22px;
    padding: 26px 18px;
  }
  .feedback-submit {
    width: 100%;
  }
}



