/* ========================================
   NOSOTROS STYLES - MAIN SECTION ONLY
   ======================================== */

/* Main Container */
.nosotros-main {
  padding-top: 80px;
  min-height: calc(100vh - 200px);
  background: #f8f9fa;
}

/* Header Section */
.nosotros-header {
  background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nosotros-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.nosotros-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Content Blocks */
.nosotros-section .content-block {
  background: white;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nosotros-section .content-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Section Titles */
.nosotros-section .section-title {
  color: #0077b6;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #00b4d8;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nosotros-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #fdb813;
}

/* Content Text */
.nosotros-section .content-text {
  line-height: 1.8;
  color: #333;
  font-size: 1.05rem;
}

.nosotros-section .content-text p {
  margin: 0;
  text-align: justify;
  letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nosotros-header h1 {
    font-size: 1.8rem;
  }
  
  .nosotros-section .content-block {
    padding: 25px;
  }
  
  .nosotros-section .section-title {
    font-size: 1.4rem;
  }
  
  .nosotros-section .content-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .nosotros-header {
    padding: 40px 20px;
  }
  
  .nosotros-header h1 {
    font-size: 1.5rem;
  }
  
  .nosotros-section .content-block {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .nosotros-section .section-title {
    font-size: 1.2rem;
  }
}

/* Estilos para las tablas de Cambridge */
.table-container {
  overflow-x: auto;
  margin-top: 20px;
}

.cambridge-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cambridge-table th,
.cambridge-table td {
  border: 1px solid #ddd;
  text-align: center;
  padding: 8px 6px;
  vertical-align: middle;
}

.cambridge-table th {
  background: #0077b6;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
}

.cambridge-table .test-name {
  text-align: left;
  padding: 12px;
  background: #f8f9fa;
  min-width: 250px;
}

.cambridge-table .test-desc {
  font-size: 0.8rem;
  color: #666;
  font-weight: normal;
}

.cambridge-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.cambridge-table tbody tr:hover {
  background: #e3f2fd;
}

/* Responsive */
@media (max-width: 768px) {
  .cambridge-table {
    font-size: 0.8rem;
  }
  
  .cambridge-table th,
  .cambridge-table td {
    padding: 6px 4px;
  }
  
  .cambridge-table .test-name {
    min-width: 200px;
    padding: 8px;
  }
}
/* ========================================
   ESTILOS PARA PÁGINA DE UNIFORMES
   ======================================== */

/* Placeholder para imágenes de uniformes */
.uniform-image-placeholder {
  text-align: center;
  color: #6b7280;
  font-style: italic;
  padding: 60px 20px;
  background: #f3f4f6;
  border-radius: 8px;
  border: 2px dashed #d1d5db;
  margin: 20px 0;
}

/* Grid de dos columnas para varones y damas */
.uniform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 25px;
}

/* Columna individual */
.uniform-column h3 {
  color: #0077b6;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

/* Listas de requisitos del uniforme */
.uniform-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.uniform-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}

.uniform-list li:last-child {
  border-bottom: none;
}

.uniform-list li .bullet {
  color: #0077b6;
  font-weight: 600;
  margin-right: 8px;
}

/* Párrafo de descripción */
.uniform-description {
  margin-bottom: 20px;
}

/* Lista simple para uniforme deportivo */
.uniform-single-list {
  margin-top: 25px;
}

.uniform-single-list h3 {
  color: #0077b6;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

/* Responsive para uniformes */
@media (max-width: 768px) {
  .uniform-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .uniform-column h3,
  .uniform-single-list h3 {
    font-size: 1.1rem;
  }
  
  .uniform-image-placeholder {
    padding: 40px 15px;
  }
}

@media (max-width: 480px) {
  .uniform-list li {
    font-size: 0.95rem;
    padding: 6px 0;
  }
  
  .uniform-column h3,
  .uniform-single-list h3 {
    font-size: 1rem;
  }
}/* ========================================
   ESTILOS ADICIONALES PARA PÁGINA DE UNIFORMES
   ======================================== */

/* Contenedor principal de cada sección de uniforme */
.uniform-section-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 20px;
}

/* Imagen del uniforme */
.uniform-image-container {
  position: sticky;
  top: 100px;
}

.uniform-image-container img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: block;
}

/* Responsive para uniformes */
@media (max-width: 992px) {
  .uniform-section-container {
    grid-template-columns: 250px 1fr;
    gap: 20px;
  }
  
  .uniform-image-container img {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .uniform-section-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .uniform-image-container {
    position: static;
    text-align: center;
  }
  
  .uniform-image-container img {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .uniform-image-container img {
    max-width: 100%;
  }
}