/**
 * ESTILOS LANDING PAGE
 * Desktop-first design
 */

/* ==================== HERO SECTION ==================== */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.hero-section .container {
  max-width: 1400px;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

/* Subtítulo */
.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--texto-gris);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

/* Título Principal */
.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--azul-macro);
  line-height: 1.2;
  margin-bottom: 2.5rem;
  letter-spacing: -0.5px;
}

/* Call to Action */
.hero-cta {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
  max-width: none;
}

.hero-cta .btn {
  width: auto;
  min-width: 220px;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-section {
    padding: 4rem 1.5rem 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 1.8px;
  }

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

/* Mobile */
@media (max-width: 768px) {
  .hero-section {
    padding: 0.1rem 1rem ;
  }

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

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-cta .btn {
    width: 100%;
    min-width: auto;
  }
}

/* ==================== SECCIÓN CÓMO FUNCIONA ==================== */

.how-it-works-section {
  padding: 6rem 2rem;
  background-color: #f5f7fa;
}

/* Header de la Sección */
.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--azul-macro);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--texto-gris);
  max-width: 600px;
  margin: 0 auto;
}

/* Cards de Pasos */
.how-card {
  background: white;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Ícono Circular */
.how-card-icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.how-card-icon i {
  font-size: 2.5rem;
  color: var(--azul-macro);
}

/* Título de la Card */
.how-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--texto-principal);
  margin-bottom: 1rem;
}

/* Descripción */
.how-card-description {
  font-size: 1.0625rem;
  color: var(--texto-gris);
  line-height: 1.6;
  margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
  .how-it-works-section {
    padding: 5rem 1.5rem;
  }

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

  .section-subtitle {
    font-size: 1.0625rem;
  }

  .how-card {
    padding: 2.75rem 2rem;
  }

  .how-card-icon {
    width: 88px;
    height: 88px;
  }

  .how-card-icon i {
    font-size: 2.25rem;
  }

  .how-card-title {
    font-size: 1.625rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .how-it-works-section {
    padding: 4rem 1rem;
  }

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

  .section-subtitle {
    font-size: 1rem;
  }

  .how-card {
    padding: 2.5rem 2rem;
  }

  .how-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }

  .how-card-icon i {
    font-size: 2rem;
  }

  .how-card-title {
    font-size: 1.5rem;
  }

  .how-card-description {
    font-size: 1rem;
  }
}

/* ==================== SECCIÓN PUNTOS Y RANKING ==================== */

.points-ranking-section {
  padding: 6rem 2rem;
  background: white;
}

/* Información de Puntos */
.points-info {
  padding-right: 0;
}

.points-info .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--azul-macro);
  margin-bottom: 1rem;
  text-align: left;
}

.section-description {
  font-size: 1.125rem;
  color: var(--texto-gris);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Features List */
.points-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.75rem;
  color: var(--azul-macro);
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--texto-principal);
  margin-bottom: 0.25rem;
}

.feature-text {
  font-size: 0.9375rem;
  color: var(--texto-gris);
  margin: 0;
}

/* CTA Motivacional */
.ranking-cta {
  background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.cta-message {
  font-size: 1.125rem;
  color: var(--texto-principal);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.cta-message i {
  color: var(--azul-macro);
  font-size: 1.25rem;
}

.ranking-cta .btn {
  width: auto;
  min-width: 200px;
}

/* Ranking Preview */
.ranking-preview {
  position: relative;
}

.ranking-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border: 1px solid rgba(0, 77, 150, 0.1);
}

/* Header del Ranking */
.ranking-header {
  background: linear-gradient(135deg, var(--azul-macro) 0%, #0056a3 100%);
  color: white;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.0625rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
}

.live-badge i {
  font-size: 0.5rem;
  color: #4ade80;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* Lista de Ranking */
.ranking-list {
  padding: 1rem;
}

.ranking-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

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

.ranking-item:hover {
  background: #e9ecef;
  transform: translateX(4px);
}

/* Posición en el Ranking */
.rank-position {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--texto-gris);
  flex-shrink: 0;
}

/* Top 3 Especial */
.rank-1 {
  background: linear-gradient(135deg, #fff0f8 0%, #ffc4e8 100%);
  border: 2px solid var(--accent);
}

.rank-1 .rank-position {
  background: linear-gradient(135deg, var(--accent) 0%, #ff9ad8 100%);
  color: white;
  font-size: 1.25rem;
}

.rank-2 {
  background: linear-gradient(135deg, #fff5fa 0%, #ffd4ed 100%);
  border: 2px solid #ff9ad8;
}

.rank-2 .rank-position {
  background: linear-gradient(135deg, #ff9ad8 0%, #ffb4e3 100%);
  color: white;
}

.rank-3 {
  background: linear-gradient(135deg, #fff8fc 0%, #ffe0f4 100%);
  border: 2px solid #ffb4e3;
}

.rank-3 .rank-position {
  background: linear-gradient(135deg, #ffb4e3 0%, #ffc9ea 100%);
  color: white;
}

/* Info del Jugador */
.rank-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.rank-name {
  font-weight: 600;
  color: var(--texto-principal);
  font-size: 1rem;
}

.rank-points {
  font-weight: 700;
  color: var(--azul-macro);
  font-size: 1rem;
  white-space: nowrap;
}

/* Tablet */
@media (max-width: 1024px) {
  .points-ranking-section {
    padding: 5rem 1.5rem;
  }

  .points-info .section-title {
    font-size: 2.25rem;
  }

  .section-description {
    font-size: 1.0625rem;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
  }

  .feature-icon i {
    font-size: 1.625rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .points-ranking-section {
    padding: 4rem 1rem;
  }

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

  .section-description {
    font-size: 1.0625rem;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
  }

  .feature-icon i {
    font-size: 1.5rem;
  }

  .ranking-cta .btn {
    width: 100%;
    min-width: auto;
  }
}

/* ==================== SECCIÓN PREMIOS ==================== */

.prizes-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

/* Prize Cards */
.prize-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 77, 150, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 77, 150, 0.08);
  position: relative;
  overflow: hidden;
}

.prize-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--azul-macro), #0056a3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.prize-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 77, 150, 0.16);
  border-color: var(--azul-macro);
}

.prize-card:hover::before {
  transform: scaleX(1);
}

/* Ícono del Premio */
.prize-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.4s ease;
}

.prize-card:hover .prize-icon {
  background: linear-gradient(135deg, var(--azul-macro), #0056a3);
  transform: scale(1.1) rotate(5deg);
}

.prize-icon i {
  font-size: 3rem;
  color: var(--azul-macro);
  transition: color 0.4s ease;
}

.prize-card:hover .prize-icon i {
  color: white;
}

/* Título del Premio */
.prize-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--texto-principal);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

/* Descripción del Premio */
.prize-description {
  font-size: 1.0625rem;
  color: var(--texto-gris);
  margin: 0;
  line-height: 1.5;
}

/* Sección de Condiciones */
.prizes-conditions {
  margin-top: 3rem;
}

.conditions-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--azul-macro);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.conditions-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.conditions-icon i {
  font-size: 1.75rem;
  color: var(--azul-macro);
}

.conditions-content {
  flex: 1;
}

.conditions-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--texto-principal);
  margin-bottom: 0.75rem;
}

.conditions-text {
  font-size: 1rem;
  color: var(--texto-gris);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.btn-conditions {
  display: inline-flex;
  align-items: center;
  color: var(--azul-macro);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-conditions:hover {
  color: #003d7a;
  gap: 0.5rem;
}

.btn-conditions i {
  transition: transform 0.3s ease;
}

.btn-conditions:hover i {
  transform: translateX(4px);
}

/* Tablet */
@media (max-width: 1024px) {
  .prizes-section {
    padding: 5rem 1.5rem;
  }

  .prize-card {
    padding: 2.75rem 1.75rem;
  }

  .prize-icon {
    width: 110px;
    height: 110px;
  }

  .prize-icon i {
    font-size: 2.75rem;
  }

  .prize-title {
    font-size: 1.4375rem;
  }

  .conditions-card {
    padding: 2.25rem;
    gap: 1.75rem;
  }

  .conditions-icon {
    width: 52px;
    height: 52px;
  }

  .conditions-icon i {
    font-size: 1.625rem;
  }

  .conditions-title {
    font-size: 1.375rem;
  }

  .conditions-text {
    font-size: 0.96875rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .prizes-section {
    padding: 4rem 1rem;
  }

  .prize-card {
    padding: 2.5rem 1.5rem;
  }

  .prize-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
  }

  .prize-icon i {
    font-size: 2.5rem;
  }

  .prize-title {
    font-size: 1.375rem;
  }

  .prize-description {
    font-size: 1rem;
  }

  .conditions-card {
    padding: 2rem;
    gap: 1.5rem;
  }

  .conditions-icon {
    width: 48px;
    height: 48px;
  }

  .conditions-icon i {
    font-size: 1.5rem;
  }

  .conditions-title {
    font-size: 1.25rem;
  }

  .conditions-text {
    font-size: 0.9375rem;
  }
}

/* ==================== SECCIÓN TÉRMINOS Y CONDICIONES ==================== */

.terms-disclaimer-section {
  padding: 4rem 2rem;
}

.disclaimer-box {
  background-color: #E9F3FF; 
  border-radius: 16px;
  padding: 2.5rem 3rem;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.disclaimer-text {
  font-size: 1rem;
  color: var(--texto-principal);
  margin-bottom: 1rem;
}

.disclaimer-link {
  display: inline-flex;
  align-items: center;
  color: var(--azul-macro);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

.disclaimer-link i {
  transition: transform 0.3s ease;
}

.disclaimer-link:hover i {
  transform: translateX(2px);
}

/* Tablet */
@media (max-width: 1024px) {
  .terms-disclaimer-section {
    padding: 3.5rem 1.5rem;
  }

  .disclaimer-box {
    padding: 2.25rem 2.5rem;
  }

  .disclaimer-text {
    font-size: 0.96875rem;
  }

  .disclaimer-link {
    font-size: 0.96875rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .terms-disclaimer-section {
    padding: 3rem 1rem;
  }

  .disclaimer-box {
    padding: 2rem;
  }

  .disclaimer-text {
    font-size: 0.9375rem;
  }

  .disclaimer-link {
    font-size: 0.9375rem;
  }
}

/* ==================== SECCIÓN CTA FINAL ==================== */

.final-cta-section {
  padding: 6rem 2rem;
  background: #f8f9fa;
}

.countdown-timer {
  flex-wrap: wrap;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown-number {
  font-size: 3rem;
  font-weight: 800;
  color: #003087;
  line-height: 1;
}
.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #666;
  margin-top: 0.25rem;
  letter-spacing: 1px;
}
.countdown-sep {
  font-size: 2.5rem;
  font-weight: 700;
  color: #003087;
  align-self: flex-start;
  padding-top: 0.15rem;
}

/* Caja del CTA */
.cta-box {
  background: white;
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* Contenido del CTA */
.cta-content {
  position: relative;
  z-index: 2;
}

/* Badge */
.cta-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--azul-macro), #0056a3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.cta-badge i {
  font-size: 1rem;
}

/* Título del CTA */
.cta-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--azul-macro);
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* Descripción */
.cta-description {
  font-size: 1.25rem;
  color: var(--texto-gris);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Botón CTA */
.cta-button {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 77, 150, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 77, 150, 0.4);
}

/* Nota Secundaria */
.cta-note {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: var(--texto-gris);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-note i {
  color: #22c55e;
  font-size: 1.125rem;
}

/* Visual del CTA */
.cta-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 300px;
}

/* Círculo Visual */
.visual-circle {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 12px 48px rgba(0, 77, 150, 0.2);
  animation: float 6s ease-in-out infinite;
}

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

/* Íconos del Visual */
.visual-icons {
  position: relative;
  width: 250px;
  height: 250px;
}

.visual-icons i {
  position: absolute;
  font-size: 3rem;
  color: var(--azul-macro);
  animation: iconFloat 4s ease-in-out infinite;
}

.icon-trophy {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 77, 150, 0.3));
}

.icon-controller {
  top: 0;
  right: 0;
  animation-delay: -1.5s;
  font-size: 3rem;
}

.icon-star {
  bottom: 0;
  left: 0;
  animation-delay: -3s;
  font-size: 3rem;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

/* Decoración de fondo */
.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 77, 150, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 77, 150, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Tablet */
@media (max-width: 1024px) {
  .final-cta-section {
    padding: 5rem 1.5rem;
  }

  .cta-box {
    padding: 3.5rem 2.5rem;
  }

  .cta-title {
    font-size: 2.75rem;
  }

  .cta-description {
    font-size: 1.1875rem;
  }

  .visual-circle {
    width: 320px;
    height: 320px;
  }

  .visual-icons {
    width: 230px;
    height: 230px;
  }

  .icon-trophy {
    font-size: 4.5rem;
  }

  .icon-controller,
  .icon-star {
    font-size: 2.75rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .final-cta-section {
    padding: 4rem 1rem;
  }

  .cta-box {
    padding: 2.5rem 2rem;
  }

  .cta-title {
    font-size: 2.5rem;
  }

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

  .visual-circle {
    width: 280px;
    height: 280px;
  }

  .visual-icons {
    width: 200px;
    height: 200px;
  }

  .icon-trophy {
    font-size: 4rem;
  }

  .icon-controller,
  .icon-star {
    font-size: 2.5rem;
  }
}

/* ==================== SECCIÓN TARJETA MACRO ==================== */

.macro-card-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
}

.macro-card-box {
  background: white;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  max-width: 1200px;
  margin: 0 auto;
}

.macro-card-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-placeholder {
  width: 280px;
  height: 180px;
  background: linear-gradient(135deg, var(--azul-macro), #0056a3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 77, 150, 0.3);
}

.card-placeholder i {
  font-size: 5rem;
  color: white;
}

.macro-card-content {
  text-align: left;
}

.macro-card-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--azul-macro);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.macro-card-description {
  font-size: 1.125rem;
  color: var(--texto-gris);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Tablet */
@media (max-width: 1024px) {
  .macro-card-section {
    padding: 5rem 1.5rem;
  }

  .card-placeholder {
    width: 250px;
    height: 160px;
  }

  .card-placeholder i {
    font-size: 4.5rem;
  }

  .macro-card-title {
    font-size: 2.25rem;
  }

  .macro-card-description {
    font-size: 1.0625rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .macro-card-section {
    padding: 4rem 1rem;
  }

  .macro-card-content {
    text-align: center;
  }

  .card-placeholder {
    width: 200px;
    height: 130px;
  }

  .card-placeholder i {
    font-size: 4rem;
  }

  .macro-card-title {
    font-size: 2rem;
  }

  .macro-card-description {
    font-size: 1.0625rem;
  }
}

/* ==================== FOOTER ==================== */

.landing-footer {
  background: linear-gradient(135deg, var(--azul-macro) 0%, #003d82 100%);
  color: white;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 100%;
  margin: 0 auto;
}

/* Sección de Redes Sociales */
.footer-social-section {
  text-align: center;
  padding: 3rem 2rem 2rem;
  background: white;
}

.social-title {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  color: var(--azul-macro);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  width: 52px;
  height: 52px;
  background: transparent;
  border: 2px solid var(--azul-macro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-macro);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--azul-macro);
  color: white;
  transform: translateY(-3px);
}

.social-link i {
  font-size: 1.375rem;
}

/* Sección Principal */
.footer-main {
  background-color: var(--azul-macro);
  padding: 0rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Ícono de fondo decorativo */
.footer-main::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  width: 1500px;
  height: 1500px;
  background-image: url('../images/branding/icon-macro.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  filter: brightness(0) invert(1);
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding: 0 10rem;
  position: relative;
}

/* Logo y Slogan */
.footer-slogan-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 0 0 auto;
  z-index: 2;
}

.footer-logo-icon {
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 50px;
  filter: brightness(0) invert(1);
}

.footer-slogan {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: white;
  letter-spacing: -0.5px;
}

/* Imagen de Personas */
.footer-image-section {
  max-width: 100%;
  display: flex;
  flex: 1;
  justify-content: flex-end;
  z-index: 1;
}

.footer-people-image {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
}

/* Enlaces Inferiores */
.footer-bottom {
  background-color: var(--azul-2D5FFF);
  padding: 1rem 10rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.5rem 1.5rem;
}

.footer-link:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 1024px) {
  .footer-social-section {
    padding: 2.75rem 1.75rem 1.75rem;
  }

  .social-title {
    font-size: 1.25rem;
  }

  .social-link {
    width: 50px;
    height: 50px;
  }

  .social-link i {
    font-size: 1.3125rem;
  }

  .footer-main {
    padding: 3.5rem 1.75rem;
  }

  .footer-main::before {
    width: 800px;
    height: 800px;
  }

  .footer-content {
    gap: 2.5rem;
    padding: 0 2rem;
  }

  .footer-slogan {
    font-size: 2rem;
  }

  .footer-people-image {
    max-height: 350px;
  }

  .footer-bottom {
    padding: 1.875rem 1.75rem;
  }

  .footer-link {
    font-size: 1.0625rem;
    padding: 0.5rem 1.25rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer-social-section {
    padding: 2.5rem 1rem 1.5rem;
  }

  .social-title {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }

  .social-link {
    width: 48px;
    height: 48px;
  }

  .social-link i {
    font-size: 1.25rem;
  }

  .footer-main {
    padding: 1rem 1rem 0rem 1rem;
  }

  .footer-main::before {
    width: 200px;
    height: 200px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0;
  }

  .footer-slogan-section {
    align-items: center;
    text-align: center;
  }

  .footer-slogan {
    font-size: 1.75rem;
  }

  .footer-image-section {
    justify-content: center;
  }

  .footer-people-image {
    max-height: 500px;
  }

  .footer-bottom {
    flex-direction: column;
    padding: 1.5rem 1rem;
  }

  .footer-link {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}

