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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
}

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

/* Header */
.header {
  background-color: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(34, 197, 94, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: #22c55e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  color: #ffffff;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.instagram-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.instagram-link:hover {
  color: #22c55e;
}

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

.instagram-text {
  display: none;
}

@media (min-width: 640px) {
  .instagram-text {
    display: inline;
  }
}

/* Hero Section */
.hero {
  padding: 3rem 0 5rem;
}

.hero-header {
  text-align: center;
  margin-bottom: 2rem;
}

.badge {
  display: inline-block;
  background-color: #ef4444;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #a3a3a3;
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero {
    padding: 5rem 0;
  }

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

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

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

/* Image Container */
.image-container {
  max-width: 650px;
  margin: 0 auto 3rem;
}

.image-card {
  position: relative;
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.main-image {
  width: 100%;
  height: 650px; /* Altura fija para desktop, ajusta según prefieras */
  display: block;
  aspect-ratio: unset; /* Elimina el aspect-ratio si usas height fija */
  object-fit: contain; /* Cambia cover por contain para mostrar la imagen completa */
  background: #0a0a0a; /* Fondo para rellenar si la imagen no cubre todo */
  margin: 0 auto;
}

@media (max-width: 600px) {
  .main-image {
    height: 200px; /* Altura menor en móviles */
  }
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.2), transparent);
  display: flex;
  align-items: flex-end;
}

.overlay-content {
  padding: 1.5rem;
  width: 100%;
}

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

.trophy-icon {
  width: 32px;
  height: 32px;
  color: #ef4444;
}

.winners-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.overlay-description {
  color: #a3a3a3;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .overlay-content {
    padding: 2rem;
  }

  .winners-text {
    font-size: 1.875rem;
  }
}

/* Steps Section */
.steps-section {
  max-width: 56rem;
  margin: 0 auto 3rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  margin-bottom: 2rem;
}

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

.steps-grid {
  display: grid;
  gap: 1rem;
}

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

.step-card {
  background-color: #171717;
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.3s;
}

.step-card:hover {
  border-color: rgba(34, 197, 94, 0.4);
}

.step-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.step-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.step-description {
  color: #a3a3a3;
}

.link {
  color: #22c55e;
  text-decoration: none;
  font-weight: 600;
}

.link:hover {
  text-decoration: underline;
}

/* Info Section */
.info-section {
  max-width: 56rem;
  margin: 0 auto;
}

.info-card {
  background-color: #22c55e;
  color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
}

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

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

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.info-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.info-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin-top: 3rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #ef4444;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  background-color: #dc2626;
  transform: scale(1.05);
}

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

.cta-warning {
  color: #a3a3a3;
  margin-top: 1rem;
  font-size: 0.875rem;
}

/* Footer */
.footer {
  background-color: rgba(10, 10, 10, 0.95);
  border-top: 1px solid rgba(34, 197, 94, 0.2);
  padding: 2rem 0;
  backdrop-filter: blur(12px);
}

.footer-content {
  text-align: center;
}

.footer-text {
  color: #a3a3a3;
  margin-bottom: 0.5rem;
}

.footer-social {
  color: #a3a3a3;
  font-size: 0.875rem;
}

.footer-link {
  color: #22c55e;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.logo-image{
    border-radius: 100px;
    max-width: 50px;
}