:root {
  --violeta:#5b2aa7;
  --rosa:#e94aa4;
}

body {
  font-family: 'Inter', sans-serif;
}

h1,h2,h3 {
  font-family: 'Montserrat', sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
  background: var(--violeta);
  border-bottom-left-radius: 90% 9%;
  border-bottom-right-radius: 6% 30%;
}

.btn-pink {
  color:#fff;
  border:2px solid #fff;
  border-radius:50px;
  padding:6px 22px;
  background:transparent;
}

.btn-pink:hover {
  background:var(--rosa);
  border-color:var(--rosa);
}

.nav-link {
  font-family: montserrat;
}
.hero-video {
  font-family: monserrat;
  font-size: 3em;
  font-weight: 800;
  padding-bottom: 0px !important;
  line-height: 1em;
}
.txt-vdieo {
  font-size: 1.5em;
  font-family: monserrat;
}
/* ================= HERO ================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  background-image: url("../img/header.png"); /* DESKTOP */
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
}

.store-btn {
  height: 48px;
}
/* ================= NOSOTROS ================= */
.nosotros {
padding-bottom: 2em!important
}


/* ================= SECCIONES ================= */
.section {
  padding: 80px 0;
}

/* ================= ROLES ================= */
.roles-section {
  padding: 100px 0;
  background: #ffffff;
}

/* CARD BASE */
.info-card {
  position: relative;
  height: 100%;
  border-radius: 32px;
  padding: 42px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,.14);
  transition: all .4s ease;
  background-size: cover;
  background-position: center right;
  color: #fff;
}

/* OVERLAY */
.info-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.65),
    rgba(0,0,0,.15)
  );
  z-index: 1;
}

/* CONTENIDO */
.info-card h3,
.info-card ul {
  position: relative;
  z-index: 2;
}

.info-card h3 {
  font-size: 28px;
  margin-bottom: 22px;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 16px;
}

.info-card ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--rosa);
  font-size: 18px;
}

/* IMAGENES DE FONDO */
.card-duenos {
  background-image: url("../img/dueno.png");
}

.card-cuidadores {
  background-image: url("../img/cuidador.png");
}

/* HOVER */
.info-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 35px 70px rgba(0,0,0,.22);
}

/* ================= FAQ ================= */

.faq-section {
  position: relative;
  padding: 120px 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}




/* ================= COMO FUNCIONA ================= */
.how-section {
  padding: 100px 0;
}
.funciona {
background-color: #f7f7fb;
}



.section-title {
  font-size: 36px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  margin-bottom: 0em;
}

.bajada {
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  font-weight: 100 !important;
}

.step-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 30px 22px 40px;
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
  transition: all .4s ease;
  animation: fadeUp .8s ease both;
  background-image: url("../img/fondo-funciona.jpg"); /* tu imagen */
  background-size: cover;
  height: 100%;
}

.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }

.step-mockup {
  max-width: 210px;
  margin-bottom: 25px;
  transition: transform .4s ease;
}

.step-card h4 {
  font-size: 18px;
  margin: 0;
}

.step-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 65px rgba(0,0,0,.18);
}

.txt-card {
  font-size: 1.2em !important;
  color: #fff;
  line-height: 1.1em;
}

.step-card:hover .step-mockup {
  transform: translateY(-8px) scale(1.05);
}

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

/* ================= FOOTER ================= */
.footer {
  background:#f2f2f2;
  padding:20px;
  text-align:center;
}

/* =========================
   FORMULARIO CONTACTO
========================= */


.tit-form {
font-family: 'Montserrat', sans-serif;
  color: #fff;
  text-align: center;
}


.contacto {
background: linear-gradient(70deg, #e83484 , #5d4d9b);
}



.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid #ddd;
  background-color: #faf7ff;
  color: #472681;
  transition: all 0.25s ease;
}

/* Placeholder */
.form-control::placeholder {
  color: #9c8bbd;
  font-weight: 400;
}

/* Focus */
.form-control:focus {
  border-color: #E83484;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(232, 52, 132, 0.15);
  outline: none;
}

/* Textarea */
textarea.form-control {
  min-height: 140px;
  resize: none;
}

/* Separación visual */
.section.bg-light input,
.section.bg-light textarea {
  margin-bottom: 16px;
}

.form-control:hover {
  border-color: #c9b8e6;
}


/* Botons Stores  */
.btn-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(232, 52, 132, 0.45);

}

/* Click */
.btn-storer:active {
  transform: scale(0.97);
}

/* Focus (accesibilidad) */
.btn-store:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 52, 132, 0.3);
}


/* =========================
   CUIDADORES
========================= */

.cuidadores {
background: linear-gradient(70deg, #5d4d9b, #e83484);
}

.tit-cuida {font-family: 'Montserrat', sans-serif;
  text-align: center;
  }
/* =========================
   BOTÓN ENVIAR
========================= */

.btn-enviar{
  background: linear-gradient(120deg, #CC2B73, #472681);
  color: #fff !important;
  border: none;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(72, 38, 129, 0.35);
}

/* Hover */
.btn-enviar:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(232, 52, 132, 0.45);
  background: linear-gradient(135deg, #F24C97, #5a2fa0);
  color: #fff;
}

/* Click */
.btn-enviar:active {
  transform: scale(0.97);
}

/* Focus (accesibilidad) */
.btn-enviar:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 52, 132, 0.3);
}


/* ================= VIDEO FULLSCREEN ================= */

.video-fullscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* VIDEO BASE */
.video-fullscreen video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000;
}


/* OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.25)
  );
  z-index: 2;
}

/* CONTENIDO */
.video-content {
  position: relative;
  z-index: 3;
  padding-top: 35vh;
}

/* BOTÓN AUDIO */
.video-btn-audio {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 4;
}


.bot-cuida {
 justify-content: center;
}


/* ================= AGREGADOS ================= */
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: #F62C84;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}


/* ================= MODAL ================= */

.modal-title {
  font-family: monserrat;
}


.modal-body{
  font-family: monserrat;
}

.modal-header {
  display: flex;
 
  border-bottom: var(--bs-modal-header-border-width) solid violeta;

}

.footer {
  background: #f2f2f4; /* gris claro moderno */
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-icons a {
  color: #704a98;
  font-size: 2rem; /* iconos grandes */
  transition: all 0.35s ease;
  position: relative;
}

/* Efecto hover cool */
.footer-icons a:hover {
  transform: translateY(-6px) scale(1.08);
  filter: drop-shadow(0 6px 12px rgba(227, 53, 133, 0.35));
}

/* Glow sutil */
.footer-icons a::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,53,133,0.35), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.footer-icons a:hover::after {
  opacity: 1;
}

.footer p {
  color: #fff;
  font-size: 0.85rem;
}


.footer {
  animation: fadeUp 0.8s ease;
}

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

/* ================= RESPONSIVE ================= */


/* DESKTOP → sin franjas */
@media (min-width: 768px) {
  .video-fullscreen video {
    object-fit: cover;
    object-position: center center;
  }
}


@media(max-width:768px){

 .hero {
    min-height: 460px;
    background-image: url("../img/header-mobile.png"); /* MOBILE */
    background-position: center bottom;
    background-size: cover;
    text-align: center;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.35)
    );
  }

  .hero-content {
    padding-top: 120px;
  }

  .roles-section {
    padding: 70px 0;
  }

  .info-card {
    padding: 32px;
    background-position: center;
  }

  .info-card h3 {
    font-size: 24px;
  }

.navbar {

  border-bottom-left-radius: 0% 0%;
  border-bottom-right-radius: 0% 0%;
}
.hero .d-flex {
    justify-content: center;
  }

  .video-fullscreen {
    height: 90dvh; /* 🔑 CLAVE ABSOLUTA */
  }

  .video-fullscreen video {
    object-fit: cover; /* 🔥 elimina franjas */
    object-position: center center;
  }
  .video-content {
    padding-top: 42vh;
    text-align: center;
  }

  .video-btn-audio {
    bottom: 20px;
    right: 20px;
  }

.boton-enviar {
text-align: center;
  }
  .btn-pink {

  margin-bottom: 10px;
}

}
