@import url("https://fonts.googleapis.com/css2?family=Fugaz+One&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

/* Barra superior ONG */
.top-bar {
  width: 100%;
  background-color: #ff6276; 
  color: #ffffff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 0;
  letter-spacing: 1px;
}

.top-bo {
  width: 100%;
  background-color: #d2f891;
  color: #f7f2f3; 
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 0;
  letter-spacing: 1px;
}


:root {
  --color-pink: #ff6276;
  --color-secondary: #fde8f3;
   --color-navbar: #f8eac4;
   --color-section: #e3ffb4;
}

.nav-link-dark {
  color: #ff6276!important;
}

.bg-pink {
  background-color: var(--color-pink) !important;
}

.bg-navbar {
  background-color: var(--color-navbar) !important;
}

.text-pink {
  color: var(--color-pink) !important;
}

.navbar-brand {
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.2);
}


.letter {
  font-family: "Fugaz One", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 3px;
  padding: 50px;
  border: 0.8px;
  color: #333;
}


.mascota {
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 999;
  width: 150px;
}

.mascota img {
  width: 100%;
  transition: transform 0.3s;
}

.mascota:hover img {
  transform: scale(1.1);
}

.cuadro-ayuda {
  display: none;
}


.cuadro-ayuda {
  position: fixed;
  bottom: 120px;
  right: 20px;
  width: 280px;
  background: #ffffff;
  border: 5px solid #ff6276;
  border-radius: 6px; /* más cuadrado */
  padding: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 998;
}

/* Header */
.ayuda-header h3 {
  margin: 0;
  color: #ff6276;
  font-size: 18px;
}

.ayuda-header p {
  margin: 6px 0 12px;
  font-size: 13px;
  color: #555;
}

/* Textarea */
.cuadro-ayuda textarea {
  width: 100%;
  height: 80px;
  padding: 8px;
  border: 1.5px #ff6276;
  border-radius: 4px;
  font-size: 13px;
  resize: none;
  outline: none;
}

.cuadro-ayuda textarea:focus {
  border-color: #ff6276;
}

/* Botón */
.cuadro-ayuda button {
  margin-top: 12px;
  width: 100%;
  background: #ff6276;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cuadro-ayuda button:hover {
  background: #ff6276;
}

.cuadro-ayuda {
  animation: fadeUp 0.3s ease;
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

footer {
  background-color: #535353;
  color: #fff;
  padding: 48px 0;
  font-size: 14.4px;
}

footer h4,
footer h5 {
  font-weight: 600;
}

footer p {
  color: #dcdcdc;
  margin-bottom: 16px;
}

footer a {
  color: #dcdcdc;
  transition: color 0.3s ease;
  text-decoration: none;
}

footer a:hover {
  color: var(--color-pink);
}

footer .border-top {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

footer .fs-4 {
  font-size: 24px !important;
}

html,
body {
  overflow-x: hidden;
}

.footer-logo {
  width: 130px;
  height: auto;
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 16px;
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  padding: 6px 4px;
  color: #fff;
  font-size: 14px;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
  outline: none;
  border-bottom-color: #fff;
}

.newsletter-btn {
  background: #fff7dd; /* similar al botón de la imagen */
  color: #ff6276;
  border: none;
  padding: 6px 18px;
  border-radius: 999px; /* completamente circular */
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.newsletter-btn:hover {
  opacity: 0.9;
}

@media (max-width: 576px) {
  .separador-rosado .mensaje {
    font-size: 1.2rem;
  }
}


.fees-section {
  background: #f8eac4;
  padding: 120px 0;
}

.fees-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 0 20px;
}

/* TÍTULO */
.fees-left h2 {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 700;
  color: #ff6276;
}

/* TEXTO */
.fees-right p {
  font-size: 16px;
  line-height: 1.8;
  color: #111;
  margin-bottom: 20px;
  max-width: 520px;
}

/* ACCORDION PLANO */
.fees-accordion {
  margin-top: 40px;
}

.fees-item {
  border-bottom: 1px solid #ff6276;
}

.fees-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 600;
  color: #ff6276;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.fees-header:hover {
  opacity: 0.85;
}

.fees-content {
  display: none;
  padding: 0 0 20px;
}

.fees-content p {
  margin: 0;
  font-size: 15px;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .fees-container {
    grid-template-columns: 1fr;
  }

  .fees-left h2 {
    font-size: 48px;
  }
}


.popup-bienvenida {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.popup-content h6 {
    font-size: 24px;
    font-weight: 600;
    color: #535353;
    margin-bottom: 8px;
}

.popup-bienvenida.active {
  display: flex; 
}

.btn-custom {
    background-color: var(--color-pink);
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    color: #FFF;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #E60073;
    color: #FFF;
}

.about-left h2 {
  pointer-events: none;
}