body {
  margin: 0;
  font-family: 'Georgia', serif;
  color: #333;
  background-color: white;
}

.hero {
  background-color: white;
  text-align: center;
  padding: 10px;
}

.logo {
  max-width: 250px;
  margin: 0 auto;
}

.beige-section {
  background-color: #f5eedc;
  padding: 20px 0;
}

h1 {
  font-family: 'Segoe UI', sans-serif;
  font-size: 2em;
  margin: 10px 0 0;
}

h2 {
  font-style: italic;
  font-size: 1.5em;
}

.video iframe {
  display: block;
  margin: 0 auto;
  width: 90%;
  height: 300px;
  border: none;
}

.countdown-section {
  background-color: #f5eedc;
  text-align: center;
  padding: 30px 10px;
}

.countdown-section h3 {
  font-size: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.icon {
  width: 24px;
  height: 24px;
}

.countdown-box {
  background-color: white;
  display: inline-block;
  padding: 15px 25px;
  border: 2px dashed #bbb;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 10px;
  margin-top: 10px;
}

.btn {
  background-color: black;
  color: white;
  padding: 10px 20px;
  margin-top: 20px;
  display: inline-block;
  text-decoration: none;
  border-radius: 6px;
}

.confirmacion {
  text-align: center;
  background-color: white;
  padding: 40px 20px;
  position: relative;
}

.animaciones {
  position: relative;
  height: 60px;
}

.corazon {
  width: 24px;
  height: 24px;
  opacity: 0;
  position: absolute;
  bottom: 0;
  transition: opacity 0.3s ease-in-out;
}

.heart1 {
  left: 42%;
}

.heart2 {
  left: 50%;
}

.sobre {
  width: 32px;
  height: 32px;
  right: 10%;
  top: 0;
  position: absolute;
  opacity: 0;
}

.animar {
  animation: flotar 4s ease-in-out;
  opacity: 1 !important;
}

.sobre-visible {
  opacity: 1 !important;
}

@keyframes flotar {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(-60px); opacity: 0; }
}

footer {
  text-align: center;
  margin-top: 40px;
}

.footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.footer-row img {
  width: 32px;
  height: 32px;
}

.footer-text-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  animation: fadeIn 1s ease-in-out forwards;
}

.footer-text {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.footer-icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
