/* ============================================
   HELIOS - Global Styles
   Paleta: #ded8d2 #9fe7f5 #419ebd #063f5c #ffa629 #f27f0c
   ============================================ */

@import url('https://cdn.tailwindcss.com');

:root {
  /* Colores Helios */
  --color-beige: #ded8d2;
  --color-light-blue: #9fe7f5;
  --color-blue: #419ebd;
  --color-dark-blue: #063f5c;
  --color-orange: #ffa629;
  --color-dark-orange: #f27f0c;

  /* Tipografía */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: var(--font-primary);
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f1f8 100%);
  color: var(--color-dark-blue);
  overflow-x: hidden;
}

/* ============================================
   FONDO CON NUBES
   ============================================ */

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(ellipse 400px 100px at 20% 30%, rgba(159, 231, 245, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 350px 120px at 80% 20%, rgba(159, 231, 245, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 300px 80px at 50% 60%, rgba(159, 231, 245, 0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: drift 20s ease-in-out infinite;
}

@keyframes drift {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(30px);
  }
}

/* ============================================
   COMPONENTES GENERALES
   ============================================ */

.container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.button {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.button-primary {
  background-color: var(--color-blue);
  color: white;
}

.button-primary:hover {
  background-color: var(--color-dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 63, 92, 0.3);
}

.button-secondary {
  background-color: var(--color-orange);
  color: white;
}

.button-secondary:hover {
  background-color: var(--color-dark-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 127, 12, 0.3);
}

.button-outline {
  background-color: transparent;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
}

.button-outline:hover {
  background-color: var(--color-blue);
  color: white;
}

.button-danger {
  background-color: #e74c3c;
  color: white;
}

.button-danger:hover {
  background-color: #c0392b;
}

/* ============================================
   HEADER Y NAVEGACIÓN
   ============================================ */

.header {
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark-blue);
}

.nav-button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-dark-blue);
}

/* ============================================
   CARDS Y CONTENEDORES
   ============================================ */

.card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.card-header {
  margin-bottom: 20px;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 8px;
}

.card-subtitle {
  font-size: 14px;
  color: #666;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* ============================================
   FORMULARIOS
   ============================================ */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--color-dark-blue);
  font-size: 14px;
}

.form-label-required::after {
  content: ' *';
  color: #e74c3c;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(65, 158, 189, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
    DIRECCIÓN DEL VIENTO - COMPONENTE ESPECIAL
    ============================================ */

.wind-direction {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

/* Compass Wind Selector - Circular Layout */
.wind-direction-compass {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
  background: rgba(159, 231, 245, 0.05);
  border-radius: 16px;
  border: 2px solid #e0e0e0;
}

/* Position buttons in compass pattern */
.wind-direction-compass .wind-button:nth-child(1) {
  grid-column: 2;
  grid-row: 1;
}

/* Norte */
.wind-direction-compass .wind-button:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}

/* Noreste */
.wind-direction-compass .wind-button:nth-child(3) {
  grid-column: 3;
  grid-row: 2;
}

/* Este */
.wind-direction-compass .wind-button:nth-child(4) {
  grid-column: 3;
  grid-row: 3;
}

/* Sureste */
.wind-direction-compass .wind-button:nth-child(5) {
  grid-column: 2;
  grid-row: 3;
}

/* Sur */
.wind-direction-compass .wind-button:nth-child(6) {
  grid-column: 1;
  grid-row: 3;
}

/* Suroeste */
.wind-direction-compass .wind-button:nth-child(7) {
  grid-column: 1;
  grid-row: 2;
}

/* Oeste */
.wind-direction-compass .wind-button:nth-child(8) {
  grid-column: 1;
  grid-row: 1;
}

/* Noroeste */

.wind-center {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  z-index: 10;
}

.wind-button {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 24px;
  min-width: 50px;
}

.wind-button:hover {
  border-color: var(--color-blue);
  background: rgba(65, 158, 189, 0.1);
}

.wind-button.active {
  border-color: var(--color-blue);
  background: var(--color-light-blue);
  box-shadow: 0 0 0 3px rgba(65, 158, 189, 0.2);
  font-weight: 700;
}

/* Mobile responsive for wind compass */
@media (max-width: 768px) {
  .wind-direction-compass {
    width: 280px;
    height: 280px;
    gap: 10px;
    padding: 15px;
  }

  .wind-center {
    font-size: 40px;
  }

  .wind-button {
    font-size: 20px;
    min-width: 45px;
  }
}

/* ============================================
   GRID DE IMÁGENES
   ============================================ */

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}

.image-item {
  position: relative;
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  overflow: visible;
  background: #f5f5f5;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.image-item:hover {
  border-color: var(--color-blue);
  background: rgba(65, 158, 189, 0.05);
}

.image-item.uploaded {
  border-style: solid;
  border-color: var(--color-blue);
}

.image-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.image-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 4px;
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.image-item input[type="file"] {
  display: none;
}

.upload-icon {
  font-size: 32px;
  text-align: center;
  padding: 20px 0;
  color: var(--color-light-blue);
}

/* ============================================
   LISTADO DE ESTRATEGIAS
   ============================================ */

.strategies-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.strategy-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.strategy-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}



.strategy-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-light-blue), var(--color-blue));
}

.strategy-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.strategy-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.strategy-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 10px;
}

.strategy-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 15px;
}

.strategy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.strategy-tag {
  background: var(--color-light-blue);
  color: var(--color-dark-blue);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.strategy-actions {
  display: flex;
  gap: 10px;
}

.strategy-actions .button {
  flex: 1;
  padding: 10px 15px;
  font-size: 14px;
}

/* ============================================
   MODAL
   ============================================ */

.modal {
  display: none;
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 15px;
}

.modal-text {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.modal-text-secondary {
  color: #999;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 13px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.modal-actions .button {
  flex: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ============================================
   UTILIDADES
   ============================================ */

.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.text-muted {
  color: #999;
  font-size: 14px;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

/* ============================================
   CLASES ESPECÍFICAS PARA TEMPLATES
   ============================================ */

/* INICIO */
.inicio-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 40px;
}

.inicio-logo-section {
  text-align: center;
}

.inicio-logo {
  font-size: 120px;
  margin-bottom: 20px;
}

.inicio-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 10px;
}

.inicio-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.inicio-description {
  font-size: 14px;
  color: #999;
  max-width: 400px;
}

.inicio-footer {
  position: absolute;
  bottom: 20px;
  text-align: center;
  width: 100%;
}

.inicio-footer-text {
  color: #999;
  font-size: 12px;
}

/* MENU */
.menu-center {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.menu-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-dark-blue);
  text-align: center;
  margin-bottom: 50px;
}

.menu-card {
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.menu-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.menu-card-content {
  text-align: center;
  padding: 20px;
}

.menu-card-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.menu-card-title {
  color: var(--color-dark-blue);
  margin-bottom: 10px;
  font-weight: 700;
}

.menu-card-description {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.menu-card-button {
  width: 100%;
}

/* FORMULARIO */
.formulario-wrapper {
  max-width: 800px;
  margin: 30px auto;
  width: 100%;
}

.formulario-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 10px;
}

.formulario-subtitle {
  color: #666;
  margin-bottom: 30px;
}

.form-helper {
  font-size: 12px;
  color: #999;
  margin-bottom: 15px;
}

.form-input-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
  display: block;
  font-weight: 600;
}

.formulario-buttons {
  margin-top: 40px;
  display: flex;
  gap: 15px;
}

.formulario-buttons .button {
  flex: 1;
}

/* SUBIR FOTOS */
.subir_fotos_wrapper {
  max-width: 1000px;
  margin: 30px auto;
  width: 100%;
}

.subir_fotos_title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 10px;
}

.subir_fotos_subtitle {
  color: #666;
  margin-bottom: 30px;
}

.subir_fotos_progress {
  margin: 30px 0;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.progress-label {
  font-weight: 600;
  color: var(--color-dark-blue);
}

.progress-value {
  color: #666;
  font-weight: 600;
}

.progress-bar-container {
  background: #e0e0e0;
  border-radius: 20px;
  height: 8px;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, var(--color-blue), var(--color-light-blue));
  height: 100%;
  width: 0%;
  transition: width 0.3s ease;
}

.subir_fotos_buttons {
  margin-top: 40px;
  display: flex;
  gap: 15px;
}

.subir_fotos_buttons .button {
  flex: 1;
}

.image-item-label-wrapper {
  display: block;
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.image-item-label-text {
  font-size: 12px;
  text-align: center;
  color: var(--color-blue);
  padding: 0 10px;
}

.photo-preview-img {
  position: relative;
  width: 100%;
  height: 150px;
  object-fit: cover;
  z-index: 1;
  border-radius: 8px;
}

.image-item-uploaded-content {
  position: relative;
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(65, 158, 189, 0.1);
  z-index: 2;
}

.upload-success-icon {
  font-size: 32px;
  display: none;
}

.image-item-label-uploaded {
  font-size: 12px;
  text-align: center;
  color: var(--color-dark-blue);
  margin-bottom: 10px;
  font-weight: 600;
  order: -1;
}

.image-item-delete-btn {
  position: absolute;
  top: 45px;
  right: 5px;
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.image-item-delete-btn:hover {
  background: #c0392b;
  transform: scale(1.1);
}

/* SECCIONES DE FOTOS */
.subir_fotos_section {
  margin-bottom: 40px;
}

.subir_fotos_section_title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-light-blue);
}

/* REPORTE */
.reporte_wrapper {
  max-width: 1200px;
  margin: 30px auto;
  width: 100%;
}

.reporte_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.reporte_title_section {
  flex-grow: 1;
}

.reporte_title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 10px;
}

.reporte_subtitle {
  color: #666;
}

.reporte_counter {
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(65, 158, 189, 0.1);
  border-radius: 8px;
}

.reporte_counter p {
  color: var(--color-dark-blue);
  font-weight: 600;
}

.reporte_empty_state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.reporte_empty_icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.reporte_empty_title {
  color: var(--color-dark-blue);
  margin-bottom: 10px;
}

.reporte_empty_text {
  color: #666;
}

.reporte_buttons {
  margin-top: 40px;
  display: flex;
  gap: 15px;
}

.reporte_buttons .button {
  flex: 1;
}

.strategy-actions {
  display: flex;
  gap: 10px;
}

.strategy-select-btn,
.strategy-delete-btn {
  flex: 1;
  padding: 10px 15px;
  font-size: 14px;
}

/* MANUAL */
.manual_wrapper {
  max-width: 900px;
  margin: 30px auto;
  width: 100%;
}

.manual_title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 30px;
}

.manual_video_card {
  margin-bottom: 30px;
}

.manual_section_title {
  color: var(--color-dark-blue);
  margin-bottom: 20px;
  font-size: 22px;
}

.manual_video_container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}

.manual_video_container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.manual_guide_card {
  margin-bottom: 30px;
}

.manual_step {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.manual_step:last-child {
  border-bottom: none;
}

.manual_step_header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.manual_step_number {
  background: var(--color-blue);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.manual_step_title {
  color: #063f5c;
  margin: 0;
}

.manual_step_content {
  margin-left: 40px;
}

.manual_step_text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.manual_step_list {
  margin-top: 10px;
  margin-left: 20px;
  line-height: 1.8;
}

.manual_step_list li {
  margin-bottom: 5px;
}

.manual_step_tip {
  margin-top: 10px;
  color: #999;
  font-size: 13px;
}

.manual_buttons {
  margin-top: 40px;
  display: flex;
  gap: 15px;
}

.manual_buttons .button {
  flex: 1;
}

/* NOSOTROS */
.nosotros_wrapper {
  max-width: 900px;
  margin: 30px auto;
  width: 100%;
}

.nosotros_title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 30px;
  text-align: center;
}

.nosotros_section {
  margin-bottom: 30px;
}

.nosotros_section_header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.nosotros_section_icon {
  font-size: 60px;
}

.nosotros_section_title {
  color: var(--color-dark-blue);
  font-size: 24px;
  margin: 0;
}

.nosotros_section_content {
  margin-top: 20px;
}

.nosotros_paragraph {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.nosotros_objective {
  margin-bottom: 25px;
}

.nosotros_objective_label {
  color: var(--color-dark-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.nosotros_objective_text {
  color: #666;
  line-height: 1.8;
}

.nosotros_values_list {
  margin-top: 10px;
  margin-left: 20px;
  line-height: 1.8;
}

.nosotros_values_list li {
  margin-bottom: 10px;
}

.nosotros_contact_intro {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.nosotros_contact_box {
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.nosotros_contact_email {
  background: rgba(65, 158, 189, 0.1);
}

.nosotros_contact_web {
  background: rgba(255, 166, 41, 0.1);
}

.nosotros_contact_social {
  background: rgba(6, 63, 92, 0.1);
}

.nosotros_contact_label {
  margin: 10px 0;
  color: var(--color-dark-blue);
  font-weight: 600;
}

.nosotros_contact_value {
  margin: 5px 0;
  color: #666;
}

.nosotros_contact_link {
  color: var(--color-blue);
  text-decoration: none;
  font-weight: 600;
}

.nosotros_contact_text {
  margin: 5px 0;
  color: #666;
}

.nosotros_social_links {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.nosotros_social_link {
  color: var(--color-blue);
  text-decoration: none;
  font-weight: 600;
}

.nosotros_footer_text {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  color: #999;
  font-size: 13px;
  text-align: center;
}

.nosotros_footer_text p {
  margin: 5px 0;
}

.nosotros_buttons {
  margin-top: 40px;
  display: flex;
  gap: 15px;
}

.nosotros_buttons .button {
  flex: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .strategies-list {
    grid-template-columns: 1fr;
  }

  .header {
    padding: 12px 15px;
  }

  .header-title {
    font-size: 20px;
  }

  .card {
    padding: 15px;
  }

  .reporte_header {
    flex-direction: column;
    align-items: flex-start;
  }

  .reporte_header button {
    margin-top: 15px;
    width: 100%;
  }

  .nosotros_section_header {
    flex-direction: column;
    gap: 10px;
  }
}