@charset "utf-8";

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

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

/* Estilos para el encabezado */
header.cover {
  background-image: url('../img/portada1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* Ocupa toda la pantalla */
  color: #f5f5f5;
  text-align: center;
  background-color: #1a3c34;
  position: relative;
  padding: 20px; /* Padding general reducido */
}

/* Capa oscura para mejor contraste */
header.cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Ajusta la opacidad según necesidad */
  z-index: 0;
}

.cover-content {
  max-width: 900px;
  padding: 40px 20px;
  position: relative;
  z-index: 1; /* Asegura que el contenido esté sobre la capa oscura */
}

.cover-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #e6b800; /* Color amarillo dorado */
  font-size: clamp(2.5rem, 5vw, 4rem); /* Tamaño responsivo */
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8); /* Mejor legibilidad */
  line-height: 1.2;
}

.cover-content p {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 30px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

/* Contenedor flexible para botones */
.cover-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.cover-content .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: bold;
  color: #1a3c34 !important; /* Texto oscuro para contraste */
  background-color: #e6b800;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 220px; /* Ancho mínimo para mantener legibilidad */
  text-align: center;
}

.cover-content .btn:hover {
  background-color: #c79a00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ===== MEDIA QUERIES ESPECÍFICAS PARA HEADER ===== */
@media (max-width: 768px) {
  header.cover {
    min-height: 80vh; /* Altura reducida en móviles */
    padding: 15px;
    background-attachment: scroll; /* Mejor rendimiento en móviles */
  }
  
  .cover-content {
    padding: 30px 15px;
  }
  
  .cover-content h1 {
    font-size: 2.2rem;
  }
  
  .cover-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cover-content .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .cover-content h1 {
    font-size: 1.8rem;
  }
  
  .cover-content p {
    font-size: 1rem;
  }
}
/* Menú de navegación */
.navbar-container {
  background-color: #1a3c34;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 40px;
  margin-right: 10px;
}

.navbar-brand-text {
  color: #f5f5f5;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.navbar-nav {
  display: flex;
  justify-content: flex-end;
}

.nav-item {
  margin: 0 10px;
  position: relative;
}

.nav-link {
  color: #f5f5f5 !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 10px 20px;
  background-color: rgba(230, 184, 0, 0.1);
  border: 1px solid #e6b800;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-align: center;
}

.nav-link:hover {
  background-color: rgba(230, 184, 0, 0.3);
}

.nav-item.active .nav-link {
  background-color: #e6b800;
  color: #1a3c34 !important;
  border-bottom: 2px solid #c79a00;
}

.language-switcher {
  margin-left: 20px;
}

.language-switcher select {
  background-color: #2e5c4b;
  color: #f5f5f5;
  border: 1px solid #e6b800;
  padding: 5px 10px;
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
}

/* Submenús */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #2e5c4b;
  list-style: none;
  padding: 10px;
  margin: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  min-width: 200px;
}

.submenu li {
  padding: 5px 0;
}

.submenu a {
  color: #f5f5f5 !important;
  text-decoration: none;
  padding: 8px 15px;
  display: block;
  border: 1px solid #e6b800;
  border-radius: 5px;
}

.submenu a:hover {
  background-color: rgba(230, 184, 0, 0.3);
}

.nav-item:hover .submenu {
  display: block;
}

/* Estilos para móviles */
@media (max-width: 991px) {
  .navbar-toggler {
    display: block;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1001;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
  }

  .toggler-icon {
    display: block;
    height: 3px;
    width: 25px;
    background-color: #f5f5f5;
    margin: 5px auto;
    transition: all 0.4s ease;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #1a3c34;
    padding-top: 70px;
    transition: all 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }

  .navbar-collapse.show {
    right: 0;
  }

  .navbar-nav {
    flex-direction: column;
    padding: 20px;
  }

  .nav-item {
    margin: 10px 0;
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    margin: 5px 0;
  }

  .language-switcher {
    margin: 20px;
    text-align: center;
  }

  .navbar-toggler.expanded .toggler-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar-toggler.expanded .toggler-icon:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggler.expanded .toggler-icon:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@media (max-width: 991px) {
  .language-switcher select {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
  }
}

/* ===== CUERPO DE PÁGINA ===== */
.noticias-container {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.center {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.center::before {
   content: "“";
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  color: #e6b800;
  opacity: 0.2;
}

.center p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
  position: relative;
  z-index: 1;
}

/* Separador entre idiomas */
.center p .lang-divider {
  display: block;
  height: 2px;
  background: linear-gradient(to right, transparent, #e6b800, transparent);
  margin: 30px 0;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* Carrusel*/
.carousel-section {
  margin: 40px auto;
  max-width: 1000px;
  position: relative;
}

.swiper-container {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-slide {
  transition: transform 0.3s ease;
}

.swiper-slide:hover {
  transform: scale(1.03);
}

.swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* Botón mejorado */
.noticias-container .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #1a3c34;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #1a3c34;
  margin-top: 20px;
}

.noticias-container .btn:hover {
  background-color: #e6b800;
  color: #1a3c34 !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .noticias-container {
    padding: 40px 15px;
  }
  
  .center {
    padding: 20px 15px;
  }
  
  .center p {
    font-size: 1rem;
    text-align: left;
  }
  
  .swiper-slide img {
    height: 300px;
  }
}

/* ===== FOOTER MEJORADO ===== */
footer {
  background-color: #1a3c34;
  color: #f5f5f5;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
  font-family: 'Open Sans', sans-serif;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #e6b800, #c79a00, #e6b800);
  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo {
  height: 50px;
  margin-right: 15px;
   background-color: transparent;
  padding: 5px;
  border-radius: 50%;
  border: 2px solid #e6b800;
  box-shadow: 0 0 10px rgba(230, 184, 0, 0.5);
}

.footer-brand-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #e6b800;
}

.footer-info h3,
.footer-links h3,
.footer-legal h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: #e6b800;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-info h3::after,
.footer-links h3::after,
.footer-legal h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #e6b800;
}

.footer-info p,
.footer-info a {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #f5f5f5;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-info i {
  color: #e6b800;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.footer-info a:hover {
  color: #e6b800;
  transform: translateX(5px);
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-legal a {
  color: #f5f5f5;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  padding: 5px 0;
}

.footer-links a::after,
.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #e6b800;
  transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #e6b800;
}

.footer-links a:hover::after,
.footer-legal a:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(230, 184, 0, 0.3);
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 8px;
  color: rgba(245, 245, 245, 0.7);
}

.footer-bottom a {
  color: #e6b800;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-info h3,
  .footer-links h3,
  .footer-legal h3 {
    font-size: 1.3rem;
  }
  
  footer {
    padding: 40px 0 20px;
  }
}


/* ===== EQUIPO FICSH ===== */
.team-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #1a3c34, #e6b800, #1a3c34);
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: #1a3c34;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #e6b800;
}

.section-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  color: #2e5c4b;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 300;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-member {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

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

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

.member-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(26, 60, 52, 0.8), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.team-member:hover .member-overlay {
  transform: translateY(0);
}

.overlay-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin: 0;
  color: #e6b800;
}

.member-info {
  padding: 25px;
}

.member-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: #1a3c34;
  margin-bottom: 15px;
  position: relative;
}

.member-info h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #e6b800;
}

.member-info p {
  font-family: 'Open Sans', sans-serif;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-member {
  display: inline-block;
  padding: 8px 20px;
  background-color: #1a3c34;
  color: white !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 2px solid #1a3c34;
}

.btn-member:hover {
  background-color: #e6b800;
  color: #1a3c34 !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .team-members {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .member-image {
    height: 250px;
  }
}

/* Estilos para el sistema de idiomas */
.lang-es, .lang-en {
  display: none;
}

.lang-es:first-child, 
.lang-en:first-child {
  display: block;
}


/* Estilos para la sección de contacto */
.contact-section {
  background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
  padding: 80px 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: #1a3c34;
  margin-bottom: 15px;
  position: relative;
}

.contact-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #e6b800;
}

.contact-header p {
  font-size: 1.2rem;
  color: #2e5c4b;
  max-width: 700px;
  margin: 20px auto 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.contact-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-top: 4px solid #e6b800;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-10px);
}

.contact-icon {
  font-size: 2.5rem;
  color: #e6b800;
  margin-bottom: 20px;
}

.contact-details h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: #1a3c34;
  margin-bottom: 15px;
}

.contact-details p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #555;
}

.contact-link {
  display: inline-block;
  margin-top: 15px;
  color: #1a3c34;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.contact-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e6b800;
  transition: width 0.3s ease;
}

.contact-link:hover {
  color: #e6b800;
}

.contact-link:hover::after {
  width: 100%;
}

.map-card {
  grid-column: span 2;
  padding: 0;
  overflow: hidden;
}

.contact-map {
  height: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
}

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

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: #25d366;
  color: white !important;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-button:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-button img {
  width: 40px;
  height: auto;
}

/* Responsive */
@media (max-width: 991px) {
  .map-card {
    grid-column: span 1;
  }
  
  .contact-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ESTILO REVISTA ===== */
.news-magazine {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-divider {
  height: 3px;
  width: 100px;
  background: linear-gradient(to right, #1a3c34, #e6b800, #1a3c34);
  margin: 20px auto;
}

/* Filtros mejorados */
.news-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.filter-btn {
  background: white;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-btn.active, .filter-btn:hover {
  background-color: #1a3c34;
  color: white;
  border-color: #1a3c34;
}

/* Grid de revista */
.magazine-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

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

/* Artículo destacado */
.featured-article {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
  .featured-article {
    grid-template-columns: 1fr 1fr;
  }
}

.featured-image {
  position: relative;
  min-height: 300px;
}

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

.article-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #e6b800;
  color: #1a3c34;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

.featured-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #777;
}

.article-category {
  color: #e6b800;
  font-weight: bold;
}

.article-title {
  font-family: 'Montserrat', sans-serif;
  color: #1a3c34;
  font-size: 1.8rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.article-excerpt {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e6b800;
  font-weight: bold;
  text-decoration: none;
  margin-top: 15px;
}

/* Artículos estándar */
.standard-article {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.standard-article:hover {
  transform: translateY(-5px);
}

.article-image {
  position: relative;
  height: 200px;
}

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

.article-category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(26, 60, 52, 0.9);
  color: white;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.article-content {
  padding: 20px;
}

.standard-article .article-title {
  font-size: 1.3rem;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

/* Paginación */
.magazine-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

.page-numbers {
  display: flex;
  gap: 10px;
}

.page-nav, .page-btn {
  padding: 8px 15px;
  border-radius: 5px;
  color: #1a3c34;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-btn.active {
  background: #e6b800;
  color: #1a3c34;
}

.page-nav:hover, .page-btn:hover {
  background: #f0f0f0;
}

/* ===== SECCIÓN PROSPERAR ===== */
.fundraising-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-divider {
  height: 3px;
  width: 100px;
  background: linear-gradient(to right, #1a3c34, #e6b800, #1a3c34);
  margin: 20px auto;
}

.highlight-quote blockquote {
  font-size: 1.5rem;
  color: #1a3c34;
  border-left: 4px solid #e6b800;
  padding-left: 20px;
  margin: 40px 0;
  font-style: italic;
}

/* Tarjetas de recompensas */
.reward-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.reward-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-top: 4px solid #1a3c34;
  transition: transform 0.3s ease;
}

.reward-card:hover {
  transform: translateY(-10px);
}

.reward-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.reward-price {
  font-size: 2rem;
  color: #1a3c34;
  font-weight: bold;
  margin: 10px 0;
}

.btn-donate {
  background: #e6b800;
  color: #1a3c34 !important;
  font-weight: bold;
  width: 100%;
  padding: 12px;
  border: none;
  transition: all 0.3s ease;
}

.btn-donate:hover {
  background: #c79a00;
}

/* Métodos de pago */
.payment-methods {
  margin-top: 60px;
  text-align: center;
}

.methods-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-paypal {
  background: #003087;
  padding: 15px 30px;
  border-radius: 5px;
  color: white;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .reward-cards {
    grid-template-columns: 1fr;
  }
}