/* ===================================
       RESET Y BASE
       =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #4a4a4a;
  line-height: 1.6;
  background: #f5f5f5;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* ===================================
       CONTENEDOR PRINCIPAL
       =================================== */
.main-wrapper {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

/* ===================================
       HEADER Y NAVEGACIÓN
       =================================== */
.header {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 85, 230, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  color: #6b6b6b;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-link:hover {
  color: #0055e6;
}

.nav-cta {
  background: #0055e6;
  color: #ffffff;
  padding: 0.7rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-cta:hover {
  background: #003db3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 85, 230, 0.3);
}

/* ===================================
       SECCIÓN HERO
       =================================== */
.hero {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  width: 100%;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #1a1a1a;
}

/* overlay for better text contrast (lighter to avoid excessive darkness) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Aumenta la opacidad para oscurecer el video y mejorar contraste */
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 85, 230, 0.3) 0%,
    rgba(24, 245, 230, 0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.hero-button {
  background: #ffffff !important;
  color: #0055e6 !important;
  padding: 1rem 3rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
}

.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.6);
  background: #f0f8ff !important;
}

/* ===================================
       SECCIÓN SOBRE NOSOTROS
       =================================== */
.about-section {
  padding: 7rem 2rem;
  background: #ffffff;
  width: 100%;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  width: 100%;
  height: auto;
}

.about-content h2 {
  color: #1a1a1a;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ===================================
       TÍTULOS DE SECCIÓN
       =================================== */
.section-title {
  text-align: center;
  color: #0055e6;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 4rem;
}

.section-title.dark {
  color: #1a1a1a;
}

/* ===================================
       SECCIÓN MISIÓN Y VISIÓN
       =================================== */
.mission-vision-section {
  padding: 7rem 2rem;
  background: #ffffff;
  width: 100%;
}

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

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.mission-vision-card {
  background: linear-gradient(135deg, #ffffff 0%, #e8f4fd 100%);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid #18f5e6;
  box-shadow: 0 4px 20px rgba(24, 245, 230, 0.2);
}

.mission-vision-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #0055e6;
  box-shadow: 0 12px 40px rgba(0, 85, 230, 0.3);
  background: linear-gradient(135deg, #e8f4fd 0%, #ffffff 100%);
}

.mission-vision-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
}

.mission-vision-card h3 {
  color: #0055e6;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.mission-vision-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #6b6b6b;
}

/* ===================================
       SECCIÓN VALORES
       =================================== */
.values-section {
  padding: 7rem 2rem;
  background: #f5f5f5;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(24, 245, 230, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.values-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 85, 230, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

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

.value-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 85, 230, 0.15);
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
}

.value-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 40px rgba(24, 245, 230, 0.4);
  border-color: #18f5e6;
  background: linear-gradient(135deg, #e8f4fd 0%, #ffffff 100%);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
}

.value-card h3 {
  color: #1a1a1a;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b6b6b;
}

/* ===================================
       SECCIÓN PROGRAMAS
       =================================== */
.programs-section {
  padding: 7rem 2rem;
  background: #ffffff;
  width: 100%;
}

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

.tabs-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-button {
  background: #ffffff;
  border: 2px solid #0055e6;
  color: #0055e6;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button:hover {
  background: #e8f4fd;
  color: #0055e6;
}

.tab-button.active {
  background: #0055e6;
  color: #ffffff !important;
}

.tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
}

.tab-intro-title {
  text-align: center;
  color: #1a1a1a;
  font-size: 2rem;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.4;
  width: 100%;
}

.program-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 85, 230, 0.15);
  transition: all 0.3s ease;
  border: 2px solid #18f5e6;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 450px;
}

.program-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0055e6 0%, #18f5e6 100%);
}

.program-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(24, 245, 230, 0.35);
  border-color: #0055e6;
  background: linear-gradient(135deg, #e8f4fd 0%, #ffffff 100%);
}

.program-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
}

.program-card h3 {
  color: #1a1a1a;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.program-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b6b6b;
}

/* ===================================
       SECCIÓN PLAN PADRINO
       =================================== */
.plan-padrino-section {
  padding: 7rem 2rem;
  background: #f5f5f5;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.plan-padrino-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 85, 230, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.plan-padrino-section::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(24, 245, 230, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

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

.plan-padrino-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.plan-padrino-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.plan-intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #6b6b6b;
  margin-bottom: 1.5rem;
}

.plan-intro-highlight {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #0055e6;
  font-weight: 600;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e8f4fd 100%);
  border-radius: 16px;
  border-left: 5px solid #18f5e6;
  box-shadow: 0 4px 20px rgba(0, 85, 230, 0.15);
}

.plan-padrino-content {
  margin-top: 4rem;
}

.plan-section-wrapper {
  margin-bottom: 3rem;
}

.plan-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.plan-method-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid #e8e8e8;
}

.plan-method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 85, 230, 0.2);
  border-color: #0055e6;
}

.plan-benefit-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid #e8e8e8;
}

.plan-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(24, 245, 230, 0.25);
  border-color: #18f5e6;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.plan-cta {
  text-align: center;
  margin-top: 5rem;
  padding: 3rem;
  background: linear-gradient(135deg, #0055e6 0%, #18f5e6 100%);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 85, 230, 0.3);
  position: relative;
  overflow: hidden;
}

.plan-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.plan-cta-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.plan-cta-button {
  background: #ffffff;
  color: #0055e6;
  padding: 1.2rem 3.5rem;
  border-radius: 30px;
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.plan-cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

/* ===================================
       SECCIÓN TESTIMONIOS
       =================================== */
.testimonials-section {
  padding: 7rem 2rem;
  background: #ffffff;
  width: 100%;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, #fff9e6 100%);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 6px 25px rgba(0, 85, 230, 0.15);
  transition: all 0.3s ease;
  position: relative;
  border-left: 5px solid #18f5e6;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(24, 245, 230, 0.3);
  border-left-color: #0055e6;
}

.quote-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
  opacity: 0.2;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #6b6b6b;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.author-info h4 {
  color: #0055e6;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.author-info p {
  color: #6b6b6b;
  font-size: 0.9rem;
}

/* ===================================
       SECCIÓN DONACIONES
       =================================== */
.donations-section {
  padding: 7rem 2rem;
  background: #f5f5f5;
  width: 100%;
}

.donations-container {
  max-width: 1000px;
  margin: 0 auto;
}

.donations-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.donations-intro p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #6b6b6b;
  margin-top: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.donation-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.donation-amount {
  background: linear-gradient(135deg, #ffffff 0%, #e8f4fd 100%);
  border: 3px solid #18f5e6;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(24, 245, 230, 0.2);
}

.donation-amount:hover {
  border-color: #0055e6;
  background: linear-gradient(135deg, #e8f4fd 0%, #ffffff 100%);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 85, 230, 0.3);
}

.donation-amount.selected {
  background: linear-gradient(135deg, #0055e6 0%, #18f5e6 100%);
  border-color: #0055e6;
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 85, 230, 0.4);
  transform: scale(1.05);
}

.donation-amount h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #0055e6;
  margin-bottom: 0.5rem;
}

.donation-amount.selected h4,
.donation-amount.selected p {
  color: #ffffff;
}

.donation-amount p {
  font-size: 0.9rem;
  color: #6b6b6b;
}

.custom-amount {
  margin: 2rem 0;
}

.custom-amount label {
  display: block;
  color: #0055e6;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.custom-amount input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #e8eaed;
  border-radius: 12px;
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.custom-amount input:focus {
  outline: none;
  border-color: #0055e6;
  box-shadow: 0 0 0 3px rgba(0, 85, 230, 0.1);
}

.donation-methods {
  background: linear-gradient(135deg, #ffffff 0%, #e8f4fd 100%);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 3rem;
  border: 3px solid #18f5e6;
  box-shadow: 0 6px 25px rgba(24, 245, 230, 0.2);
}

.donation-methods h3 {
  color: #0055e6;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

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

.method-item h4 {
  color: #0055e6;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.method-item p {
  color: #6b6b6b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.donate-button-large {
  background: linear-gradient(135deg, #0055e6 0%, #18f5e6 100%);
  color: #ffffff;
  padding: 1.2rem 3.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: "Poppins", sans-serif;
  margin-top: 2rem;
}

.donate-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 85, 230, 0.3);
}

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

/* ===================================
       SECCIÓN BLOG
       =================================== */
.blog-section {
  padding: 7rem 2rem;
  background: #ffffff;
  width: 100%;
}

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.blog-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 85, 230, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
}

.blog-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 50px rgba(24, 245, 230, 0.4);
  border-color: #18f5e6;
}

.blog-image-container {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #0055e6 0%, #18f5e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.blog-content {
  padding: 2rem;
}

.blog-date {
  color: #18f5e6;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.blog-card h3 {
  color: #1a1a1a;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.blog-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b6b6b;
}

/* ===================================
       FOOTER
       =================================== */
.footer {
  background: #0055e6;
  color: #ffffff;
  padding: 3rem 2rem 1.5rem;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-section p,
.footer-section a {
  color: #ffffff;
  opacity: 0.9;
  font-size: 0.95rem;
  line-height: 1.8;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  opacity: 1;
  text-decoration: underline;
}

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

/* ===================================
       MEDIA QUERIES RESPONSIVE
       =================================== */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

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

  .tabs-navigation {
    flex-direction: column;
  }

  .tab-intro-title {
    font-size: 1.5rem;
  }

  .plan-padrino-content {
    grid-template-columns: 1fr;
  }
}

@view-transition {
  navigation: auto;
}
