/*
 * Nosotros (About Us) Page - Light Theme Implementation
 */

/* ===== HERO NOSOTROS SECTION ===== */
.hero-nosotros {
  background: var(
    --Dark-Gradient,
    linear-gradient(
      101deg,
      var(--color-primary-600, #093855) 8.79%,
      var(--color-primary-300, #6a97b9) 95.41%
    )
  );
  padding: 96px 112px;
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  align-items: center;
}

.hero-nosotros-container {
  max-width: 1200px;
  text-align: left;
  position: relative;
  z-index: 1;
}

/* ===== HERO CONTENT ===== */
.hero-nosotros-content {
  max-width: 800px; /* Increased from 550px to allow more space for text */
}

.hero-nosotros-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: 123.5%; /* 3.705rem */
  letter-spacing: 0.01563rem;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
  color: #ffffff;
}

.hero-nosotros-subtitle {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 133.4%;
  color: #ffffff;
  margin-bottom: 20px;
  opacity: 0.98;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-nosotros-description {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 0;
  opacity: 0.95;
  max-width: 700px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-nosotros-stats {
  display: none; /* Stats moved to separate section as per Figma */
}

.hero-nosotros-stats .stat-item {
  text-align: left;
}

.hero-nosotros-stats .stat-number {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2b69c7;
  display: block;
  line-height: 1;
}

.hero-nosotros-stats .stat-label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  display: block;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== HERO VISUAL ===== */
.hero-nosotros-visual {
  display: none; /* Remove visual element as per Figma */
}

.hero-image-container {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.hero-decorative-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.element-1 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22d3ee, #0891b2);
  top: -20px;
  right: -20px;
  animation: float 6s ease-in-out infinite;
}

.element-2 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2b69c7, #1e4a8c);
  bottom: -15px;
  left: -15px;
  animation: float 8s ease-in-out infinite reverse;
}

.element-3 {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #10b981, #047857);
  top: 50%;
  right: -40px;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== STATS SECTION ===== */
.stats-nosotros-section {
  background: #ffffff;
  padding: 80px 0;
  border-bottom: 1px solid #e5e7eb;
}

.stats-nosotros-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.stats-nosotros-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 48px;
}

.stats-nosotros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

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

.stat-nosotros-number {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #2b69c7;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-nosotros-number::before {
  content: "+";
}

.stat-nosotros-label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  display: block;
  text-transform: capitalize;
  line-height: 1.4;
}

/* ===== MISION SECTION ===== */
.mision-section {
  background: #ffffff;
  padding: 40px 0;
}

.mision-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mision-content {
  display: flex;

  gap: 1rem;
  align-items: center;
}

.mision-text {
  max-width: 500px;
}

.mision-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary-600, #093855);
  margin-bottom: 24px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
  text-align: right;
}

.mision-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  padding: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  background-color: #faf7f5;
  border-radius: 1rem;
}

.mision-description p:last-child {
  margin-bottom: 0;
  animation-delay: 0.4s;
}

.mision-image {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  min-width: 500px;
  height: auto;
  object-fit: cover;
}

.section-image {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ===== VISION SECTION ===== */
.vision-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.vision-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vision-text {
  max-width: 500px;
}

.vision-title {
  font-family: var(--font-display, "Inter");
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary-600, #093855);
  margin-bottom: 24px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

.vision-description p {
  font-family: var(--font-body, "Inter");
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.vision-description p:last-child {
  margin-bottom: 0;
  animation-delay: 0.4s;
}

.vision-image {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ===== VALORES SECTION ===== */
.valores-section {
  background: #ffffff;
  padding: 80px 0;
}

.valores-container {
  margin: 0 auto;
  padding: 0 24px;
}

.valores-header {
  text-align: center;
  margin-bottom: 48px;
}

.valores-main-title {
  font-family: var(--font-display, "Inter");
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary-600, #093855);
  margin-bottom: 16px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  margin: 0 auto;
}

.valor-card {
  text-align: left;
  transition: all 0.3s ease;

  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out both;
}

.valor-card:nth-child(1) {
  animation-delay: 0.1s;
}
.valor-card:nth-child(2) {
  animation-delay: 0.2s;
}
.valor-card:nth-child(3) {
  animation-delay: 0.3s;
}
.valor-card:nth-child(4) {
  animation-delay: 0.4s;
}
.valor-card:nth-child(5) {
  animation-delay: 0.5s;
}
.valor-card:nth-child(6) {
  animation-delay: 0.6s;
}

.valor-card:hover {
  transform: translateY(-4px);
}

.valor-card-blue:hover {
  border-color: rgba(43, 105, 199, 0.3);
}

.valor-card-orange:hover {
  border-color: rgba(235, 105, 41, 0.3);
}

.valor-icon {
  width: 54px;
  height: 54px;
  padding: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;

  transition: all 0.3s ease;
}

.check-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.site-main .nosotros-page .stats-intro {
  color: #093855;
}

.valor-card:hover .check-icon {
  content: url("../pages-assets/other/check-orange.png");
}

.icon-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.mision-icon {
  background: linear-gradient(135deg, #2b69c7, #1e4a8c);
}
.mision-icon::after {
  content: "🎯";
}

.vision-icon {
  background: linear-gradient(135deg, #22d3ee, #0891b2);
}
.vision-icon::after {
  content: "👁️";
}

.valores-icon {
  background: linear-gradient(135deg, #10b981, #047857);
}
.valores-icon::after {
  content: "⭐";
}

.valor-title {
  font-family: var(--font-display, "Inter");
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary-600, #093855);
  margin-bottom: 12px;
  line-height: 1.3;
}

.valor-description {
  font-family: var(--font-body, "Inter");
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #374151;
  margin: 0;
}

.valores-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.valores-list li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.valores-list li::before {
  content: "✓";
  color: #10b981;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
}

.valores-list strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* ===== HISTORIA SECTION ===== */
.historia-section {
  background: #f8fafc;
  padding: 80px 0;
}

.historia-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.historia-header {
  text-align: center;
  margin-bottom: 60px;
}

.historia-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.historia-subtitle {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #6b7280;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #2b69c7, #22d3ee);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #2b69c7;
  background: #ffffff;
  border: 3px solid #2b69c7;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-content {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  flex: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: #2b69c7;
}

.timeline-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.timeline-description {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

/* ===== EQUIPO SECTION ===== */
.equipo-section {
  background: #faf7f5;
  padding: 80px 0;
}

.equipo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.equipo-header {
  text-align: center;
  margin-bottom: 60px;
}

.equipo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--color-primary-600, #093855) 0%,
    var(--color-primary-500, #1b4d6a) 100%
  );
  border-radius: 16px;
  color: #ffffff;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.equipo-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(9, 56, 85, 0.2);
}

.equipo-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--color-primary-600, #093855);
  margin-bottom: 16px;
}

.equipo-subtitle {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.text-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 350px;
}

.text-container h2 {
  font-size: 2.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 2.125rem */
  letter-spacing: 0.01563rem;
}

.text-container p {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 133.4%;
}

/* ===== TEAM MEMBERS ===== */
.team-members {
  display: flex;
  gap: 64px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
}

.member-image {
  width: 285px;
  height: 420px;
  margin: 0 auto 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover .member-image {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  transform: scale(1.02);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 0 16px;
}

.member-name {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-primary-600, #093855);
  margin-bottom: 8px;
  line-height: 1.3;
}

.member-position {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.4;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.2);
}

.linkedin-link:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 119, 181, 0.3);
  background: linear-gradient(135deg, #005885 0%, #004066 100%);
}

.linkedin-link:focus {
  outline: 2px solid #0077b5;
  outline-offset: 2px;
}

.linkedin-link svg {
  transition: all 0.2s ease;
}

.linkedin-link:hover svg {
  transform: scale(1.1);
}

/* ===== COMPROMISOS SECTION ===== */
.compromisos-section {
  background: #f8fafc;
  padding: 80px 0;
}

.compromisos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.compromisos-header {
  text-align: center;
  margin-bottom: 60px;
}

.compromisos-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.compromisos-subtitle {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #6b7280;
}

.compromisos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.compromiso-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.compromiso-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: #2b69c7;
}

.compromiso-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.leed-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}
.leed-icon::after {
  content: "🏅";
}

.breeam-icon {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}
.breeam-icon::after {
  content: "🏗️";
}

.well-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.well-icon::after {
  content: "🏥";
}

.iso-icon {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}
.iso-icon::after {
  content: "📋";
}

.gbce-icon {
  background: linear-gradient(135deg, #10b981, #047857);
}
.gbce-icon::after {
  content: "🌍";
}

.carbon-icon {
  background: linear-gradient(135deg, #374151, #111827);
}
.carbon-icon::after {
  content: "🌱";
}

.compromiso-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.compromiso-description {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

.stat-card {
  background-color: #faf7f5;
  border: 2px solid #397396;
  border-radius: 16px;
  padding: 24px;
  height: 227px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* ===== CTA NOSOTROS SECTION ===== */
.cta-nosotros-section {
  background: linear-gradient(135deg, #2b69c7 0%, #1e4a8c 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-nosotros-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.1'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zM30 10c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E")
    repeat;
  opacity: 0.3;
}

.cta-nosotros-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.cta-nosotros-content {
  text-align: center;
}

.cta-nosotros-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-nosotros-subtitle {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-nosotros-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.cta-nosotros-buttons .btn {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.btn-primary {
  background: #ffffff;
  color: #2b69c7;
  border: 2px solid #ffffff;
}

.btn-primary:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

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

/* Large Desktop */
@media (min-width: 1200px) {
  .historia-container,
  .equipo-container,
  .compromisos-container,
  .cta-nosotros-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-nosotros-container {
    gap: 100px;
  }

  .valores-grid,
  .compromisos-grid {
    gap: 48px;
  }

  .team-leadership {
    gap: 48px;
  }
}

/* ===== ENHANCED RESPONSIVE DESIGN FOR MOBILE & TABLET ===== */

/* Large Tablet - 1024px and down */
@media (max-width: 1024px) {
  /* Misión and Visión sections */
  .mision-section,
  .vision-section {
    padding: 60px 0;
  }

  .mision-container,
  .vision-container {
    padding: 0 40px;
  }

  .mision-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .mision-image {
    min-width: auto;
    max-width: 500px;
    margin: 0 auto;
  }

  .mision-title {
    text-align: center;
    font-size: 2.25rem;
  }

  .mision-description {
    padding: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Valores section */
  .valores-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
  }

  /* Equipo section */
  .team-members {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .text-container {
    max-width: 500px;
    text-align: center;
  }

  .text-container h2 {
    font-size: 1.875rem;
  }

  .text-container p {
    font-size: 1.25rem;
  }

  .member-image {
    width: 240px;
    height: 320px;
  }
}

/* Desktop */
@media (max-width: 1199px) {
  .hero-nosotros-title {
    font-size: 48px;
  }

  .historia-title,
  .equipo-title,
  .compromisos-title,
  .cta-nosotros-title {
    font-size: 32px;
  }
}

/* Tablet - 768px to 1023px */
@media (max-width: 1023px) and (min-width: 769px) {
  .hero-nosotros,
  .mision-section,
  .vision-section,
  .valores-section,
  .historia-section,
  .equipo-section,
  .compromisos-section,
  .cta-nosotros-section {
    padding: 60px 0;
  }

  /* Enhanced Misión and Visión for tablet */
  .mision-container,
  .vision-container {
    padding: 0 60px;
  }

  .mision-content {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .mision-image {
    min-width: auto;
    max-width: 450px;
    margin: 0 auto;
  }

  .mision-title {
    text-align: center;
    font-size: 2.125rem;
  }

  .mision-description {
    padding: 2rem;
    max-width: 650px;
    margin: 0 auto;
  }

  .hero-nosotros-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-nosotros-visual {
    order: -1;
  }

  .hero-image-container {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .hero-nosotros-title {
    font-size: 42px;
  }

  /* Enhanced Valores grid for tablet */
  .valores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .valor-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }

  .check-icon {
    width: 28px;
    height: 28px;
  }

  /* Enhanced Equipo section for tablet */
  .team-members {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }

  .text-container {
    max-width: 600px;
    text-align: center;
  }

  .text-container h2 {
    font-size: 2rem;
  }

  .text-container p {
    font-size: 1.375rem;
  }

  .member-image {
    width: 220px;
    height: 300px;
  }

  .compromisos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .timeline::before {
    left: 60px;
  }

  .timeline-year {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }

  .timeline-item {
    gap: 32px;
  }
}

/* Mobile - 768px and down */
@media (max-width: 768px) {
  .hero-nosotros,
  .mision-section,
  .vision-section,
  .valores-section,
  .historia-section,
  .equipo-section,
  .compromisos-section,
  .cta-nosotros-section {
    padding: 40px 0;
  }

  .hero-nosotros-container,
  .mision-container,
  .vision-container,
  .valores-container,
  .historia-container,
  .equipo-container,
  .compromisos-container,
  .cta-nosotros-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Enhanced Misión and Visión for mobile */
  .mision-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .mision-image {
    min-width: auto;
    max-width: 100%;
    margin: 0 auto;
  }

  .section-image {
    min-height: 200px;
    border-radius: 12px;
  }

  .mision-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .mision-description {
    padding: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Enhanced Stats section for mobile */
  .stats-section {
    padding: 40px 0;
  }

  .stats-section .container {
    padding: 0 16px;
    gap: 32px;
  }

  .stats-intro-text {
    font-size: 1.25rem;
    line-height: 1.4;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .stat-card {
    padding: 20px;
    height: auto;
    min-height: 140px;
  }

  .stat-number {
    font-size: 2.25rem;
    line-height: 1.1;
  }

  .stat-label {
    font-size: 0.875rem;
    line-height: 1.3;
    max-width: 100%;
  }

  /* Enhanced Valores for mobile */
  .valores-section {
    padding: 40px 0;
  }

  .valores-container {
    padding: 0 16px;
  }

  .valores-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 0 10px;
    max-width: 100%;
  }

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

  .valor-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 14px;
  }

  .check-icon {
    width: 24px;
    height: 24px;
  }

  .valor-title {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }

  .valor-description {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  /* Enhanced Equipo section for mobile */
  .team-members {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .text-container {
    max-width: 100%;
    text-align: center;
    order: 1;
  }

  .text-container h2 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .text-container p {
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .team-member {
    order: 2;
  }

  .member-image {
    width: 180px;
    height: 240px;
    margin-bottom: 20px;
  }

  .member-name {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }

  .member-position {
    font-size: 0.9375rem;
    margin-bottom: 12px;
  }

  /* General mobile optimizations */
  .hero-nosotros-title {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero-nosotros-subtitle {
    font-size: 1.25rem;
  }

  .hero-nosotros-description {
    font-size: 1rem;
  }

  .hero-image-container {
    width: 250px;
    height: 250px;
  }

  .hero-nosotros-stats {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .historia-title,
  .equipo-title,
  .compromisos-title {
    font-size: 1.75rem;
  }

  .cta-nosotros-title {
    font-size: 1.75rem;
  }

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

  .timeline::before {
    left: 40px;
  }

  .timeline-year {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .timeline-item {
    gap: 24px;
  }

  .timeline-content {
    padding: 24px;
  }

  .cta-nosotros-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-nosotros-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Small Mobile - 480px and down */
@media (max-width: 480px) {
  /* Hero section mobile padding adjustment */
  .hero-nosotros {
    padding: 60px 16px;
  }

  .hero-nosotros-title {
    font-size: 1.75rem;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .hero-nosotros-subtitle {
    font-size: 1.125rem;
    margin-bottom: 16px;
  }

  .hero-nosotros-description {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  /* Enhanced small mobile adjustments */
  .mision-section,
  .vision-section,
  .valores-section,
  .equipo-section {
    padding: 32px 0;
  }

  .mision-container,
  .vision-container,
  .valores-container,
  .equipo-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mision-title,
  .vision-title,
  .valores-main-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .mision-description {
    padding: 1rem;
    font-size: 0.875rem;
  }

  /* Stats adjustments for small mobile */
  .stats-section {
    padding: 32px 0;
  }

  .stats-section .container {
    padding: 0 12px;
    gap: 24px;
  }

  .stats-intro-text {
    font-size: 1.125rem;
    line-height: 1.3;
  }

  .stats-grid {
    gap: 12px;
  }

  .stat-card {
    padding: 16px;
    min-height: 120px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8125rem;
  }

  /* Valores adjustments for small mobile */
  .valores-section {
    padding: 32px 0;
  }

  .valores-container {
    padding: 0 12px;
  }

  .valores-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
    padding: 0 5px;
  }

  .valor-card {
    padding: 16px;
    text-align: center;
  }

  .valor-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
  }

  .check-icon {
    width: 20px;
    height: 20px;
  }

  .valor-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .valor-description {
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  /* Equipo section for small mobile */
  .text-container h2 {
    font-size: 1.25rem;
    line-height: 1.1;
  }

  .text-container p {
    font-size: 1rem;
    line-height: 1.3;
  }

  .member-image {
    width: 160px;
    height: 220px;
  }

  .member-name {
    font-size: 1.125rem;
  }

  .member-position {
    font-size: 0.875rem;
  }

  /* General adjustments */
  .historia-title,
  .equipo-title,
  .compromisos-title,
  .cta-nosotros-title {
    font-size: 1.5rem;
  }

  .valor-card,
  .leader-card,
  .compromiso-card,
  .timeline-content {
    padding: 20px;
  }

  .team-stats {
    padding: 20px;
  }

  .timeline-item {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .timeline::before {
    display: none;
  }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.hero-nosotros,
.valor-card,
.timeline-item,
.leader-card,
.compromiso-card {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-nosotros-title,
.hero-nosotros-subtitle,
.hero-nosotros-description {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .element,
  .valor-card,
  .leader-card,
  .compromiso-card,
  .timeline-content {
    animation: none;
    transition: none;
  }

  .valor-card:hover,
  .leader-card:hover,
  .compromiso-card:hover,
  .timeline-content:hover {
    transform: none;
  }
}

/* Focus states */
.valor-card:focus,
.leader-card:focus,
.compromiso-card:focus,
.timeline-content:focus,
.btn:focus {
  outline: 2px solid #22d3ee;
  outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .valor-card,
  .leader-card,
  .compromiso-card,
  .timeline-content {
    border: 2px solid #1a1a1a;
  }

  .valor-title,
  .leader-name,
  .compromiso-title,
  .timeline-title {
    color: #000000;
  }
}
/* ===== ENHANCED SECTIONS ===== */

/* Valores Cards with Glassmorphism */
.valores-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;

  margin: 0 auto;
  padding: 0 24px;
}

.valor-card {
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  position: relative;
  overflow: hidden;
}

.valor-card:hover {
  transform: translateY(-16px) scale(1.03);
  border-color: rgba(235, 105, 41, 0.5);
}

.valor-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;

  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Timeline Enhancement */
.timeline {
  position: relative;
  padding: 40px 0;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #ff6b35 0%, #f7931e 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  padding: 40px;
  width: calc(50% - 40px);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:nth-child(odd) {
  margin-left: auto;
  margin-right: 40px;
}

.timeline-item:nth-child(even) {
  margin-left: 40px;
}

.timeline-item:hover {
  transform: scale(1.03) translateX(5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 251, 247, 0.98) 100%
  );
}

.timeline-year {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 700;
  color: #ff6b35;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-year {
  left: -60px;
}

.timeline-item:nth-child(even) .timeline-year {
  right: -60px;
}

/* CTA Section Enhancement */
.cta-nosotros-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #093855 0%, #1b4d6a 100%);
  position: relative;
  overflow: hidden;
}

.cta-nosotros-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -25%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.cta-nosotros-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-nosotros-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-nosotros-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.btn-primary {
  background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* ===== HISTORIA SECTION ===== */
.historia-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  position: relative;
  overflow: hidden;
}

.historia-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../db4b185d6778732cb090b9de73ab45a5cfe97b91.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.historia-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.historia-content {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.historia-title-container {
  flex-shrink: 0;
  min-width: 280px;
}

.historia-title {
  font-family: var(--font-display, "Adobe Caslon Pro", serif);
  font-size: 2.125rem; /* 34px */
  font-weight: 600;
  line-height: 1;
  color: var(--color-primary-600, #093855);
  letter-spacing: 0.015625rem; /* 0.25px */
  margin: 0;
}

.historia-card {
  flex: 1;
  background: var(--color-neutral-50, #faf7f5);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.05),
    0px 1px 4px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.historia-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.historia-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.historia-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.historia-text {
  flex: 1;
  font-family: var(--font-body, "Adrianna", sans-serif);
  font-size: 1rem; /* 16px */
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-primary-600, #093855);
  letter-spacing: 0.009375rem; /* 0.15px */
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .historia-section {
    padding: 60px 0;
  }

  .historia-content {
    flex-direction: column;
    gap: 32px;
  }

  .historia-title-container {
    min-width: auto;
    text-align: center;
  }

  .historia-title {
    font-size: 1.875rem; /* 30px */
  }

  .historia-card {
    padding: 24px;
    gap: 20px;
  }

  .historia-text {
    font-size: 0.9375rem; /* 15px */
  }
}

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

  .historia-container {
    padding: 0 16px;
  }

  .historia-title {
    font-size: 1.75rem; /* 28px */
  }

  .historia-card {
    padding: 20px;
    gap: 16px;
  }

  .historia-icon {
    width: 28px;
    height: 28px;
  }
}

/* ===== TE INTERESA SABER MÁS SECTION ===== */
.te-interesa-section {
  background-color: #efeae7;
  padding: 40px 112px;
  position: relative;
}

.te-interesa-container {
  max-width: 1200px;
  margin: 0 auto;
}

.te-interesa-content {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  justify-content: center;
}

.te-interesa-text {
  flex: 0 0 519px;
  padding-left: 16px;
}

.te-interesa-title {
  font-family: "Adobe Caslon Pro", serif;
  font-size: 2.125rem; /* 34px */
  font-weight: 600;
  line-height: 1;
  color: #093855;
  margin-bottom: 32px;
  letter-spacing: 0.25px;
}

.te-interesa-description {
  font-family: "Adrianna", sans-serif;
  font-size: 1.5rem; /* 24px */
  line-height: 1.334;
  color: #093855;
}

.te-interesa-description p {
  margin-bottom: 16px;
}

.te-interesa-description p:last-child {
  margin-bottom: 0;
}

.te-interesa-cta {
  margin-top: auto;
}

.te-interesa-cta .btn-primary {
  background: #eb6929;
  color: #fff7ed;
  padding: 8px 32px;
  border-radius: 24px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  
  letter-spacing: 0.15px;
  text-decoration: none;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: inline-block;
}

.te-interesa-cta .btn-primary:hover {
  background: #d45a1f;
  transform: translateY(-2px);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  color: #fff7ed;
  text-decoration: none;
}

.te-interesa-articles {
  flex: 0 0 566px;
}

.articles-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.article-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-title {
  font-family: "Adrianna", sans-serif;
  font-size: 1rem; /* 16px */
  font-weight: 700;
  line-height: 1.5;
  color: #093855;
  margin: 0;
}

.article-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-title a:hover {
  color: var(--color-accent, #eb6929);
  text-decoration: none;
}

.article-excerpt {
  font-family: "Adrianna", sans-serif;
  font-size: 0.875rem; /* 14px */
  line-height: 1.43;
  color: #093855;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 2.86em; /* 2 lines * 1.43 line-height */
}

/* ===== RESPONSIVE DESIGN - TE INTERESA SABER MÁS ===== */
@media (max-width: 1024px) {
  .te-interesa-section {
    padding: 60px 60px;
  }

  .te-interesa-content {
    gap: 40px;
  }

  .te-interesa-text {
    flex: 0 0 450px;
  }

  .te-interesa-articles {
    flex: 0 0 500px;
  }
}

@media (max-width: 768px) {
  .te-interesa-section {
    padding: 50px 24px;
  }

  .te-interesa-content {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }

  .te-interesa-text {
    flex: none;
    padding-left: 0;
  }

  .te-interesa-title {
    font-size: 1.75rem; /* 28px */
    margin-bottom: 24px;
  }

  .te-interesa-description {
    font-size: 1.25rem; /* 20px */
  }

  .te-interesa-articles {
    flex: none;
  }

  .articles-grid {
    gap: 12px;
  }

  .article-card {
    padding: 12px;
  }

  .article-title {
    font-size: 0.875rem; /* 14px */
  }

  .article-excerpt {
    font-size: 0.8125rem; /* 13px */
    -webkit-line-clamp: 3;
    line-clamp: 3;
    height: 3.5em; /* 3 lines for mobile */
  }
}

@media (max-width: 480px) {
  .te-interesa-section {
    padding: 40px 16px;
  }

  .te-interesa-title {
    font-size: 1.5rem; /* 24px */
    margin-bottom: 20px;
  }

  .te-interesa-description {
    font-size: 1.125rem; /* 18px */
  }

  .te-interesa-description p {
    margin-bottom: 12px;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  background-color: var(--color-primary-300, #6a97b9);
  padding: 64px 167px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
}

.cta-container {
  max-width: 780px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  width: 100%;
}

.cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 3rem; /* 48px */
  font-weight: 600;
  line-height: 1.235;
  letter-spacing: 0.25px;
  color: var(--color-primary-600, #093855);
  margin: 0;
  max-width: 980px;
  text-align: center;
}

.cta-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: center;
}

.cta-subtitle {
  font-family: var(--font-body);
  font-size: 1.5rem; /* 24px */
  font-weight: 400;
  line-height: 1.334;
  color: var(--color-primary-600, #093855);
  margin: 0;
  width: 100%;
}

.cta-detail {
  font-family: var(--font-body);
  font-size: 1rem; /* 16px */
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.15px;
  color: var(--color-primary-600, #093855);
  margin: 0;
  width: 100%;
}

.cta-buttons {
  display: flex;
  align-items: flex-start;
  gap: 19px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-button {
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 32px;
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.15px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.cta-button-secondary {
  background-color: transparent;
  color: var(--color-neutral-50, #faf7f5);
  border: 1px solid var(--color-neutral-50, #faf7f5);
  min-width: 218px;
}

.cta-button-secondary:hover {
  background-color: var(--color-neutral-50, #faf7f5);
  color: var(--color-primary-600, #093855);
  transform: translateY(-2px);
}

.cta-button-primary {
  background-color: var(--color-accent-400, #eb6929);
  color: var(--color-neutral-50, #faf7f5);
  border: 1px solid var(--color-accent-400, #eb6929);
  min-width: 174px;
}

.cta-button-primary:hover {
  background-color: #d55a1f;
  border-color: #d55a1f;
  transform: translateY(-2px);
}

/* ===== CTA RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .cta-section {
    padding: 64px 80px;
  }
}

@media (max-width: 992px) {
  .cta-section {
    padding: 48px 40px;
  }

  .cta-title {
    font-size: 2.5rem; /* 40px */
    max-width: 100%;
  }

  .cta-container {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 40px 20px;
  }

  .cta-title {
    font-size: 2rem; /* 32px */
  }

  .cta-subtitle {
    font-size: 1.25rem; /* 20px */
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .cta-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 32px 16px;
  }

  .cta-title {
    font-size: 1.75rem; /* 28px */
  }

  .cta-subtitle {
    font-size: 1.125rem; /* 18px */
  }

  .cta-detail {
    font-size: 0.875rem; /* 14px */
  }
}
