/* Reset y base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #fffdfa;
  font-family: 'Fraunces', serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 600px;
}

.logo {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 20px;
  display: block;
}

.title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 3rem;
  color: #3c2e1a;
  margin-bottom: 5px;
}

.subtitle {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: #5a7737;
  margin-bottom: 30px;
}

.highlight {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: #3c2e1a;
  margin-bottom: 15px;
}

.donation-box {
  background-color: #f5f1e3;
  border-left: 6px solid #5a7737;
  padding: 15px;
  margin: 30px 0;
  font-weight: bold;
  font-family: 'Fraunces', serif;
  color: #3c2e1a;
}

/* Botones principales con colores personalizados */
.cta-btn {
  display: inline-block;
  margin: 10px 0;
  padding: 15px 20px;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
  width: 100%;
  text-align: left;
}

.cta-btn i {
  margin-right: 10px;
}

/* Colores específicos */
.cta-btn.instagram {
  background-color: #d63384;
}

.cta-btn.instagram:hover {
  background-color: #d84b94;
}

.cta-btn.whatsapp {
  background-color: #226f3e;
}

.cta-btn.whatsapp:hover {
  background-color: #1da851;
}


/* Redes sociales secundarias */
.socials {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-circle {
  font-size: 1.4rem;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.fb {
  background: #3b5998;
}

.tiktok {
  background: #000;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .logo {
    max-width: 50vw;
  }

  .title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.6rem;
  }

  .cta-btn {
    width: 100%;
    font-size: 0.95rem;
  }
}
