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

:root {
  --primary-color: #b5bd00;
  --secondary-color: #747078;
  --text-color: #333;
  --background-color: #f8f8f8;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--primary-color);
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  max-width: 1200px;
  width: 100%;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
}

/* Contenedor del logo */
.logo-container {
  margin-bottom: 30px;
}

.logo {
  max-width: 200px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Contenido principal */
.content {
  max-width: 700px;
  width: 100%;
}

h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.divider {
  height: 3px;
  width: 100px;
  background-color: var(--secondary-color);
  margin: 0 auto 30px;
  border-radius: 5px;
}

p {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

/* Contacto */
.contact-info {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Contador regresivo */
.countdown {
  margin: 30px 0;
}

.countdown p {
  font-weight: 600;
  margin-bottom: 15px;
}

#timer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.time-unit span:first-child {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  background-color: rgba(181, 189, 0, 0.1);
  border-radius: 10px;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}

.label {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 500;
}

/* Botón de contacto */
.contact-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(181, 189, 0, 0.3);
  margin-bottom: 20px;
}

.contact-button:hover {
  background-color: #9da000;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(181, 189, 0, 0.4);
}

.contact-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(181, 189, 0, 0.3);
}

/* Redes sociales */
.social-media {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 5px;
  flex-wrap: wrap;
}

.social-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(116, 112, 120, 0.1);
  transition: all 0.3s ease;
}

.social-icon {
  width: 30px;
  height: 30px;
  filter: grayscale(100%) brightness(0.4);
  opacity: 0.8;
  transition: all 0.3s ease;
  display: block;
}

.social-icon:hover {
  filter: grayscale(0);
  opacity: 1;
}

.social-media a:hover {
  background-color: rgba(116, 112, 120, 0.2);
  transform: translateY(-3px);
}

/* Responsive para diferentes dispositivos */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  .time-unit {
    min-width: 70px;
  }
  
  .time-unit span:first-child {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  
  .social-media {
    gap: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .social-media a {
    width: 35px;
    height: 35px;
  }
  
  .social-icon {
    width: 22px;
    height: 22px;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 30px 15px;
  }
  
  h1 {
    font-size: 1.7rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  #timer {
    gap: 10px;
  }
  
  .time-unit {
    min-width: 60px;
  }
  
  .time-unit span:first-child {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  
  .label {
    font-size: 0.8rem;
  }
  
  .social-media {
    gap: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  
  .social-icon {
    width: 18px;
    height: 18px;
  }
  
  .social-media a {
    width: 30px;
    height: 30px;
  }
  
  .contact-button {
    padding: 10px 25px;
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
}