@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");

body {
  background-color: #000;
  font-family: "Quicksand", sans-serif !important;
}

h1 {
  color: #fff;
}

:root {
  --rosa: #ed81e5;
  --dorado: #f4cf51;
  --verde: #82daab;
  --amarillo: #ece56b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: linear-gradient(160deg, #f4cf51 0%, #ed81e5 100%);
  min-height: 100vh;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
}

.logo {
  width: min(20%, 300px);
  margin: 0rem auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(237, 129, 229, 0.9));
}

.seccion {
  background: white;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 5px 30px rgba(237, 129, 229, 0.05);
  border: 1px solid rgba(237, 129, 229, 0.1);
  transition: transform 0.3s ease;
}

.seccion:hover {
  transform: translateY(-3px);
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2d3436;
  position: relative;
  padding-bottom: 0.5rem;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--dorado), var(--rosa));
  border-radius: 2px;
}

.redes-sociales {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.red-social {
  text-decoration: none;
  color: #333;
  padding: 1.2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  border: 1px solid rgba(237, 129, 229, 0.15);
  position: relative;
  overflow: hidden;
}

.red-social::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ece56b22 0%, #82daab22 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.red-social:hover {
  box-shadow: 0 5px 15px rgba(130, 218, 171, 0.1);
}

.red-social:hover::before {
  opacity: 1;
}

.icono {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.red-social:hover .icono {
  transform: scale(1.1);
}

.contacto p {
  margin: 1rem 0;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(237, 129, 229, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(237, 129, 229, 0.1);
}

footer {
  text-align: center;
  padding: 2rem;
  color: #666;
  margin-top: 4rem;
  font-size: 0.9rem;
}

.btn_guia {
  padding: 12px;
  background: #ed81e5;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.btn_wa {
  color: #333;
  text-decoration: none;
}

.div_foto {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.img_foto {
  width: 200px;
  border-radius: 50%;
  border: 4px solid #ed81e5;
  box-shadow: 0 5px 15px rgba(237, 129, 229, 0.2);
}

.btn_cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 12px 30px;
  background: linear-gradient(45deg, #ece56b, #82daab);
  color: #2d3436;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(130, 218, 171, 0.3);
}

@media (max-width: 768px) {
  .container {
    padding: 20px 15px;
  }

  .seccion {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .redes-sociales {
    grid-template-columns: 1fr;
  }

  .div_foto {
    flex-direction: column;
  }
}
