/* Start custom CSS for html, class: .elementor-element-33cfd55 */:root {
  --azul-principal: #67bed9;
  --azul-oscuro: #0194c4;
  --azul-claro: #f0f9fb;
  --gris-texto: #333333;
  --gris-claro: #666666;
  --gris-borde: #e2e8f0;
  --blanco: #ffffff;
}

.gc-container {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  color: var(--gris-texto);
  line-height: 1.6;
}

/* --- TARJETAS DE SECCIÓN PRINCIPAL --- */
.gc-section-card {
  background-color: var(--blanco);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border-left: 6px solid var(--azul-principal);
  transition: transform 0.3s ease;
}

.gc-section-card:hover {
  box-shadow: 0 8px 30px rgba(1, 148, 196, 0.08);
}

.gc-pending-card {
  border-left: 6px solid var(--gris-borde);
  background-color: #fafafa;
}

/* --- ENCABEZADOS DE SECCIÓN --- */
.gc-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--azul-claro);
  padding-bottom: 15px;
}

.gc-icon-box {
  background-color: var(--azul-claro);
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-oscuro);
}

.gc-icon-gray {
  background-color: var(--gris-borde);
  color: var(--gris-claro);
}

.gc-icon-box svg {
  width: 28px;
  height: 28px;
}

.gc-section-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--azul-oscuro);
  margin: 0;
  letter-spacing: -0.5px;
}

/* --- LAYOUT DIVIDIDO (TEXTO / VIDEO) --- */
.gc-split-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr; /* Da más espacio al texto y menos al video */
  gap: 40px;
  align-items: start; /* Alinea el texto en la parte superior en vez del centro */
}

.gc-margin-bottom {
  margin-bottom: 40px;
}

/* --- ESTILOS DE TEXTO --- */
.gc-text-content h3 {
  font-size: 20px;
  color: var(--azul-oscuro);
  margin-top: 0;
  margin-bottom: 15px;
}

.gc-text-content p {
  margin-bottom: 15px;
  color: var(--gris-texto);
  font-size: 16px;
  text-align: justify;
}

.gc-highlight-text {
  font-style: italic;
  font-weight: 600;
  color: var(--azul-oscuro) !important;
  border-left: 3px solid var(--azul-principal);
  padding-left: 15px;
  background-color: var(--azul-claro);
  padding: 10px 15px;
  border-radius: 0 8px 8px 0;
}

/* --- VIDEOS --- */
.gc-video-content {
  display: flex;
  justify-content: center; /* Centra el video en su espacio */
}

.gc-video-content video {
  width: 100%;
  max-width: 320px; /* Evita que el video vertical crezca desproporcionadamente en PC */
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  background-color: #000;
  display: block;
}

/* --- DIVISOR INTERNO (Para la sección de TH) --- */
.gc-divider-internal {
  border: 0;
  height: 1px;
  background: var(--gris-borde);
  margin: 35px 0;
}

/* --- TARJETAS DE DOCUMENTOS --- */
.gc-docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 300px));
  gap: 20px;
  justify-content: center;
}

.gc-doc-card {
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: var(--gris-texto);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.gc-doc-card:hover {
  transform: translateY(-5px);
  border-color: var(--azul-oscuro);
  box-shadow: 0 8px 15px rgba(1, 148, 196, 0.1);
}

.gc-doc-icon svg {
  width: 36px;
  height: 36px;
  color: var(--azul-principal);
  transition: color 0.3s ease;
}

.gc-doc-card:hover .gc-doc-icon svg {
  color: var(--azul-oscuro);
}

.gc-doc-card span {
  font-weight: 600;
  font-size: 17px;
}

/* --- RESPONSIVO PARA MÓVILES --- */
@media (max-width: 850px) {
  .gc-split-layout {
    grid-template-columns: 1fr; /* Cambia a una sola columna */
    gap: 25px;
  }
  
  .gc-section-card {
    padding: 25px;
  }
  
  .gc-section-title {
    font-size: 22px;
  }
  
  .gc-text-content h3 {
    font-size: 18px;
  }
}

/* --- GALERÍA DE IMÁGENES (SECCIÓN 4) --- */
.gc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gc-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3; /* Mantiene todas las fotos del mismo tamaño horizontal */
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: relative;
  background-color: var(--azul-claro); /* Color de fondo mientras carga la foto */
}

.gc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Recorta la foto suavemente para llenar el espacio sin deformarla */
  display: block;
  transition: transform 0.4s ease;
}

.gc-gallery-item:hover img {
  transform: scale(1.08); /* Efecto de zoom suave al pasar el mouse */
}

/* Ajuste específico de la galería para móviles muy pequeños */
@media (max-width: 500px) {
  .gc-gallery-grid {
    grid-template-columns: 1fr; /* 1 sola columna en celular */
  }
}

/* --- ESTILOS DEL MODAL (LIGHTBOX) --- */
.gc-modal-overlay {
  display: none; /* Oculto por defecto */
  position: fixed; /* Se mantiene en pantalla */
  z-index: 9999; /* Por encima de todo (incluido el menú si tienes) */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9); /* Fondo negro semi-transparente */
  cursor: pointer; /* Indica que se puede cerrar al hacer clic */
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Cuando está activo (se muestra) */
.gc-modal-overlay.active {
  display: flex; /* Muestra el modal */
  opacity: 1;
}

/* Imagen ampliada */
.gc-modal-content {
  display: block;
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  border: 4px solid var(--blanco);
  object-fit: contain; /* Asegura que la imagen completa se vea */
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
  
  /* Animación de zoom al abrir */
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.gc-modal-overlay.active .gc-modal-content {
  transform: scale(1); /* Zoom final */
}

/* Botón de cerrar (X) */
.gc-modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 60px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.gc-modal-close:hover {
  color: var(--azul-principal);
}

/* Pie de foto (opcional) */
#gc-modal-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #ccc;
  font-weight: 600;
  font-size: 18px;
}

/* --- CONTROLES DE NAVEGACIÓN (FLECHAS) --- */
.gc-modal-prev, .gc-modal-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -30px;
  color: white;
  font-weight: bold;
  font-size: 40px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 0 5px 5px 0;
  user-select: none;
  z-index: 10000;
}

.gc-modal-next {
  right: 15px;
  border-radius: 5px 0 0 5px;
}

.gc-modal-prev {
  left: 15px;
}

.gc-modal-prev:hover, .gc-modal-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--azul-principal);
}

/* Ajuste de flechas para celulares */
@media (max-width: 850px) {
  .gc-modal-prev, .gc-modal-next {
    font-size: 30px;
    padding: 12px;
  }
}/* End custom CSS */