
:root {
  --background: oklch(1 0 0); /* White background */
  --foreground: oklch(0.145 0.08 258.338); /* #012B6F - Corporate blue */
  --card: oklch(0.97 0.005 258.338); /* Light gray for cards */
  --card-foreground: oklch(0.145 0.08 258.338); /* Corporate blue text on cards */
  --popover: oklch(1 0 0); /* White popover background */
  --popover-foreground: oklch(0.145 0.08 258.338); /* Corporate blue text */
  --primary: oklch(0.145 0.08 258.338); /* #012B6F - Corporate blue */
  --primary-foreground: oklch(1 0 0); /* White text on primary */
  --secondary: oklch(0.4 0.15 15.57); /* #B1121D - Corporate red */
  --secondary-foreground: oklch(1 0 0); /* White text on secondary */
  --muted: oklch(0.95 0.005 258.338); /* Very light gray for muted backgrounds */
  --muted-foreground: oklch(0.35 0.05 258.338); /* Dark blue-gray for readable text */
  --accent: oklch(0.4 0.15 15.57); /* #B1121D - Corporate red for accents */
  --accent-foreground: oklch(1 0 0); /* White text on accent */
  --destructive: oklch(0.4 0.15 15.57); /* Corporate red for destructive actions */
  --destructive-foreground: oklch(1 0 0); /* White text on destructive */
  --border: oklch(0.922 0 0); /* Light gray borders */
  --input: oklch(0.97 0.005 258.338); /* Light background for inputs */
  --ring: oklch(0.4 0.15 15.57); /* Corporate red for focus rings */
  --radius: 0.5rem;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo-image {
  width: 100px;
  height: auto;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .logo-image {
    width: 100px;
  }
}

@media (min-width: 1024px) {
  .logo-image {
    width: 125px;
  }
}


.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.top-bar.hidden {
  height: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item .icon {
  width: 1rem;
  height: 1rem;
}

.tagline {
  font-size: 0.875rem;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.main-nav.compact {
  padding: 0.5rem 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 0.5rem;
  font-weight: bold;
  padding: 0.75rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.logo-icon.compact {
  padding: 0.5rem;
  font-size: 1.125rem;
}

.company-name {
  font-weight: bold;
  color: var(--primary);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.company-name.compact {
  font-size: 1.125rem;
}

.company-tagline {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.company-tagline.hidden {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 1.0rem;
}


@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.dropdown {
  position: relative;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  transition: color 0.3s ease;
}

.dropdown-btn:hover {
  color: var(--primary);
}

.dropdown-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.dropdown-icon.rotated {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  width: 14rem;
  background-color: var(--popover);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 50;
  padding: 0.25rem;
  display: none;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.375rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.125rem;
  color: var(--foreground);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.external-icon {
  width: 1rem;
  height: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  padding: 0.5rem;
  cursor: pointer;
  background-color: transparent;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}
/* Estilos menú móvil /* Animación del menú móvil */
@media (max-width: 767px) {
  .main-nav.open .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    background: var(--background);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    z-index: 1000;

    /* Animación */
    animation: slideDown 0.3s ease forwards;
  }

  /* Animación cuando se oculta */
  .nav-menu.closing {
    animation: slideUp 0.25s ease forwards;
  }

  .nav-link,
  .dropdown-btn {
    width: 100%;
    text-align: left;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.2s ease, color 0.3s ease;
  }

  .nav-link:hover,
  .dropdown-btn:hover {
    color: var(--primary);
    transform: translateX(5px);
  }

  /* Keyframes */
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideUp {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(-10px);
    }
  }
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

/* Hover: ligero giro + color de fondo suave */
.mobile-menu-btn:hover {
  background-color: var(--muted);
  transform: rotate(10deg) scale(1.05);
}

/* Estado activo: se abre */
.mobile-menu-btn.active {
  transform: rotate(45deg) scale(1);
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Animación suave al cerrar: volver a estado normal */
.mobile-menu-btn:not(.active) {
  transform: rotate(0deg) scale(1);
  background-color: transparent;
  border-color: var(--border);
}

}





/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  padding: 0.5rem 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: oklch(0.125 0.08 258.338);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn-lg {
  font-size: 1.125rem;
  padding: 0.75rem 2rem;
}

.btn:not(.mobile-menu-btn) {
  display: none;
}

@media (min-width: 768px) {
  .btn:not(.mobile-menu-btn) {
    display: inline-flex;
    
  }
}

/* Main Content */
.main-content {
  padding-top: 8rem;
}

@media (min-width: 768px) {
  .main-content {
    padding-top: 6rem;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(1, 43, 111, 0.05) 0%, rgba(177, 18, 29, 0.05) 100%);
  padding: 5rem 0;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  text-wrap: balance;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  text-wrap: pretty;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.stat-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.stat-item:nth-child(even) .stat-icon svg {
  color: var(--accent);
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-image {
  position: relative;
}

.main-image {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.founders-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.founders-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.founders-names {
  font-weight: 600;
  color: var(--primary);
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: rgba(248, 250, 252, 0.3);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-wrap: balance;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto;
  text-wrap: pretty;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.25rem);
}

.service-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.service-icon {
  margin: 0 auto 1rem;
  padding: 0.75rem;
  background-color: rgba(1, 43, 111, 0.1);
  border-radius: 50%;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: rgba(1, 43, 111, 0.2);
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-description {
  color: var(--muted-foreground);
  text-wrap: pretty;
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--accent);
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.service-btn {
  width: 100%;
  transition: all 0.3s ease;
}

.service-card:hover .service-btn {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

/* Icon styles */
.icon {
  width: 1rem;
  height: 1rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }

  .tagline {
    display: none;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .founders-card {
    position: static;
    margin-top: 1rem;
  }
}

/* About Section */
.about-section {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  text-wrap: pretty;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about-stat-card {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.about-stat-number {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  position: relative;
}

.timeline-item:not(:last-child) .timeline-connector::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 3rem;
  width: 2px;
  height: 4rem;
  background-color: var(--border);
}

.timeline-content {
  display: flex;
  gap: 1rem;
}

.timeline-year {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.timeline-details {
  flex: 1;
  padding-bottom: 2rem;
}

.timeline-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-weight: 600;
  font-size: 1.125rem;
}

.timeline-badge {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.timeline-description {
  color: var(--muted-foreground);
  text-wrap: pretty;
}

/* Activities Section */
.activities-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.activities-carousel {
  position: relative;
  max-width: 75rem;
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
}

.carousel-track {
  justify-content: center;
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 1.5rem;
}

/* Mobile / móvil */
@media (max-width: 767px) {
  .carousel-track {
    display: flex;
    gap: 1rem; /* menos espacio entre tarjetas en móvil */
    transition: transform 0.5s ease-in-out;
    justify-content: flex-start; /* muestra la tarjeta completa al inicio */
    overflow-x: auto; /* permite scroll horizontal suave en móviles */
    scroll-snap-type: x mandatory; /* para que las tarjetas “encajen” al deslizar */
  }
}

.activity-card {
  flex: 0 0 auto;
  width: 100%;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .activity-card {
    width: calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .activity-card {
    width: calc(33.333% - 1rem);
  }
}

.activity-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.activity-image {
  position: relative;
  width: 100%;              /* ocupa todo el ancho disponible */
  height: 200px;            /* altura fija para uniformidad */
  object-fit: contain;      /* muestra toda la imagen sin deformarla */
  background: #f3f3f3;      /* fondo neutro para imágenes más pequeñas */
}

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

.activity-content {
  padding: 1.5rem;
}

.activity-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.activity-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(1, 43, 111, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-right: 1rem;
}

.activity-icon svg {
  width: 2rem;
  height: 2rem;
}

.activity-type {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
}

.activity-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2; /* Propiedad estándar */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.activity-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3; /* Propiedad estándar */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.activity-content {
  padding: 2rem 1.5rem 2rem 1.5rem; /* Más espacio interno */
}

.activity-meta {
  gap: 1rem; /* Más separación entre fecha y ubicación */
}
.activity-date,
.activity-location {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.activity-date .icon,
.activity-location .icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: oklch(0.125 0.08 258.338);
}

.carousel-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.carousel-prev {
  left: -1rem;
}

.carousel-next {
  right: -1rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: rgba(248, 250, 252, 0.3);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.contact-form-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--input);
  color: var(--foreground);
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--ring);
}

.form-textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-submit {
  width: 100%;
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-info-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.contact-info-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.contact-info-title {
  font-weight: 600;
}

.contact-info-text {
  color: var(--muted-foreground);
}

.contact-schedule {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Clients Section */
.clients-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.clients-carousel {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  overflow: hidden;
}

.clients-track {
  display: flex;
  gap: 2rem;
  padding: 2rem 1rem;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  flex-shrink: 0;
  width: 12rem;
  height: 8rem;
  background-color: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s ease;
}

.client-logo:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
}

.clients-description {
  text-align: center;
  margin-top: 2rem;
}

.clients-description p {
  font-size: 0.875rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

/* Reclamos Section */
.reclamos-section {
  padding: 4rem 0;
  background-color: #012b6f;
  color: white;

}

.reclamos-header {
  text-align: center;
  margin-bottom: 3rem;

}

.reclamos-intro {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;

}

.reclamos-title {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  margin-bottom: 2rem;

}

.reclamos-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .reclamos-grid {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }
}

.reclamo-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  width: 100%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .reclamo-option {
    width: 16rem;
  }
}

.reclamo-option:hover {
  transform: scale(1.05);
}

.reclamo-icon-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.reclamo-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.reclamo-option:hover .reclamo-icon {
  transform: scale(1.1);
  border-color: #b1121d;
  background-color: #b1121d;
}

.reclamo-icon svg {
  width: 2rem;
  height: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.reclamo-option:hover .reclamo-icon svg {
  color: white;
}

.reclamo-title {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.reclamo-option:hover .reclamo-title {
  color: rgba(255, 255, 255, 0.9);
}

.reclamo-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.reclamo-option:hover .reclamo-description {
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 3rem 0;
}
.logo-image-footer {
  width: 80px;
  height: auto;
  margin-bottom: -0.5rem;
}

@media (min-width: 768px) {
  .logo-image-footer {
    width: 50px;
  }
}

@media (min-width: 1024px) {
  .logo-image-footer  {
    width: 80px;
  }
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-icon {
  background-color: var(--accent);
  color: var(--accent-foreground);
  border-radius: var(--radius);
  padding: 0.5rem;
  font-weight: bold;
  font-size: 1.25rem;
}

.footer-company-name {
  font-weight: bold;
  font-size: 1.125rem;
}

.footer-since {
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-description {
  font-size: 0.875rem;
  opacity: 0.8;
  text-wrap: pretty;
}

.footer-social {
  padding-top: 0.75rem;
}

.footer-social-title {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background-color: rgba(177, 18, 29, 0.9);
}

.footer-social-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-section-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links li {
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-contact-icon {
  width: 1rem;
  height: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Responsive adjustments for new sections */
@media (max-width: 767px) {
  .about-grid {
    gap: 2rem;
  }

  .timeline-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .reclamos-intro {
    font-size: 0.8rem;
  }

  .reclamos-title {
    font-size: 1.5rem;
  }

  .clients-track {
    gap: 1rem;
  }

  .client-logo {
    width: 10rem;
    height: 6rem;
  }
}

/* Modal base */
.modal {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #666;
  z-index: 1001;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #000;
}

.modal-header {
  padding: 25px 30px 15px;
  border-bottom: 1px solid #eee;
}

.modal-header h2 {
  margin: 0;
  color: #333;
  font-size: 24px;
  font-weight: 600;
}

.modal-body {
  padding: 20px 30px 30px;
}

.modal-image-container {
  margin-bottom: 20px;
}

.modal-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.modal-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-date,
.modal-location {
  margin: 0;
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

.modal-date::before {
  content: "📅 ";
  margin-right: 5px;
}

.modal-location::before {
  content: "📍 ";
  margin-right: 5px;
}

.modal-description h3 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.modal-description p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

/* Responsive design */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }

  .modal-body {
    padding: 15px 20px 25px;
  }

  .activity-card {
    flex: 0 0 280px;
  }

}

/* Políticas Section */
.politicas-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.politicas-carousel {
  position: relative;
  max-width: 75rem;
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  transition: transform 0.5s ease-in-out;
}

/* Mobile / móvil */
@media (max-width: 767px) {
  .carousel-track {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
}

.politica-card {
  flex: 0 0 auto;
  width: 100%;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .politica-card {
    width: calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .politica-card {
    width: calc(33.333% - 1rem);
  }
}

.politica-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.politica-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.politica-card p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.politica-card .view-more {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s ease;
}

.politica-card .view-more:hover {
  background-color: oklch(0.125 0.08 258.338);
}

/* Botones del carrusel */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: oklch(0.125 0.08 258.338);
}

.carousel-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.carousel-prev {
  left: -1rem;
}

.carousel-next {
  right: -1rem;
}
