/**
 * Nosotros Section Styles
 * Estilos para la sección nosotros
 */

/* Variables CSS para la sección nosotros */
:root {
  --nosotros-bg: #ffffff;
  --nosotros-text: #1a1a1a;
  --nosotros-text-secondary: #4a4a4a;
  --nosotros-border: #e5e5e5;
  --nosotros-shadow: rgba(0, 0, 0, 0.08);
  --nosotros-hover-shadow: rgba(0, 0, 0, 0.15);
}

/* Sección principal de nosotros */
.nosotros-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.nosotros-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 212, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
  opacity: 1;
  z-index: 1;
}

.nosotros-section .container {
  position: relative;
  z-index: 2;
}

/* Contenido principal */
.nosotros-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Columna de texto */
.nosotros-text {
  padding-right: 2rem;
}

/* Título de la sección */
.nosotros-section .nosotros-title {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--nosotros-text) !important;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* Descripción */
.nosotros-description {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  letter-spacing: var(--tracking-body);
  line-height: var(--lh-body);
  color: var(--nosotros-text);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

/* Botón */
.nosotros-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.nosotros-btn:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.nosotros-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Columna de imagen */
.nosotros-image {
  position: relative;
}

.nosotros-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.nosotros-image:hover .nosotros-img {
  filter: grayscale(0%);
}

/* Responsive Design */
@media (max-width: 968px) {
  .nosotros-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .nosotros-text {
    padding-right: 0;
    order: 2;
  }
  
  .nosotros-image {
    order: 1;
  }
  
  .nosotros-description {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nosotros-section {
    padding: 60px 0;
  }
  
  .nosotros-content {
    gap: 2rem;
  }
  
  .nosotros-section .nosotros-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--nosotros-text) !important;
  }
  
  .nosotros-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .nosotros-img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .nosotros-section {
    padding: 40px 0;
  }
}