/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 0 20px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  z-index: 0;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;

  background: rgba(253, 250, 247, 0.76);
  backdrop-filter: blur(8px);

  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* GLOW */
.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: #e8cfc4;
  opacity: 0.25;
  filter: blur(120px);

  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;

  opacity: 0;
  transform: translateY(30px);
}

/* TAG */
.hero-tag {
  display: inline-block;
  margin-bottom: 18px;

  padding: 6px 14px;
  border-radius: 20px;

  background: rgba(200, 175, 163, 0.18);
  color: #6a6a6a;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
}

/* TITLE */
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 2.5rem);
  line-height: 1.25;
  margin-bottom: 20px;
  color: #3d3d3d;
}

/* TEXT */
.hero-content p {
  font-size: 1.05rem;
  color: #6a6a6a;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BTN BASE */
.hero-btn {
  opacity: 0;
  transform: translateY(20px);
}

p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* BTN MAIN */
.hero-btn.main {
  padding: 14px 32px;
  border-radius: 30px;

  background: linear-gradient(135deg, #e8cfc4, #d9b8ab);
  color: #3d3d3d;
  text-decoration: none;

  font-size: 0.9rem;
  font-weight: 600;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* BTN GHOST */
.hero-btn.ghost {
  padding: 14px 28px;
  border-radius: 30px;

  border: 1px solid #c8afa3;
  color: #5a5a5a;
  text-decoration: none;

  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* HOVER */
.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ACTIVE (animación) */
.hero-content.active {
  animation: fadeUp 1s ease forwards;
}

.hero-btn.active {
  opacity: 1;
  transform: translateY(0);
}

/* KEYFRAME */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

}

html {
  font-size: 18px;
}

/*HEADER*/
/* HEADER BASE */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  padding: 20px 40px;
  transition: all 0.3s ease;
}

/* SCROLL EFECTO */
.header.scrolled {
  background: rgba(253, 250, 247, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  padding: 12px 40px;
}

/* CONTENEDOR */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #3d3d3d;
}

.logo-text span {
  font-size: 0.7rem;
  color: #7a7a7a;
}

/* NAV */
.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #5a5a5a;
  position: relative;
  transition: 0.3s;
}

/* UNDERLINE PRO */
.nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  left: 0;
  bottom: -4px;
  background-color: #c8afa3;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

/* CTA */
.header-btn {
  padding: 10px 22px;
  border-radius: 25px;

  background: linear-gradient(135deg, #e8cfc4, #d9b8ab);
  color: #3d3d3d;
  text-decoration: none;

  font-size: 0.85rem;
  font-weight: 500;

  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.header-btn:hover {
  transform: translateY(-2px);
}

/* MENU MOBILE */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

  .header {
    padding: 15px 20px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;

    background: #fdfaf7;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 25px;

    transition: 0.4s ease;
  }

  .nav.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .header-btn {
    display: none;
  }

}

/* SECCIÓN CONFIANZA */
.confianza {
  background: #f7f1ed;
  padding: 60px 20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;

  max-width: 1000px;
  margin: 40px auto 0;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 25px 20px;
  border-radius: 18px;

  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);

  transition: all 0.3s ease;
}

/* INTRO */
.confianza-intro {
  font-family: 'Playfair Display', serif;

  font-size: clamp(2.2rem, 4.5vw, 2.5rem);
  font-weight: 500;

  line-height: 1.2;
  letter-spacing: -0.5px;

  text-align: center;

  max-width: 800px;
  margin: 0 auto 50px;

  color: #3d3d3d;
}

.card img {
  width: 45px;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  color: #5a5a5a;
}

.section-title {
  font-weight: 500;
}

.acompanamiento .section-title,
.acompanamiento .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* GRID */
.confianza-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

/* ITEM */
.confianza-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px;

  text-align: left;

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* TITULO */
.confianza-item h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #3d3d3d;
}

/* TEXTO */
.confianza-item p {
  font-size: 0.9rem;
  color: #6a6a6a;
  line-height: 1.6;
}

/* HOVER */
.confianza-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}


.section-footer {
  text-align: center;
  max-width: 600px;
  margin: 40px auto 10px;

  font-size: 1rem;
  line-height: 1.6;
  color: #5a5a5a;
}




/* RESPONSIVE */
@media (max-width: 768px) {

  .confianza-grid {
    grid-template-columns: 1fr;
  }

}

.confianza-item {
  opacity: 0;
  transform: translateY(30px);
}

/*PROBLEMA/ACOMPAÑAMIENTO*/
/* SECCIÓN */
.acompanamiento {
  background-color: #ffffff;
}

/* CARDS (mejoradas) */
.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px 20px;

  border: 1px solid rgba(0,0,0,0.03);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

  transition: all 0.3s ease;
}

.proceso .section-title,
.proceso .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ICONOS */
.card img {
  width: 55px;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* TEXTO */
.card p {
  font-size: 0.95rem;
  color: #5a5a5a;
  line-height: 1.5;
}

.card p,
.proceso-item p,
.confianza-item p {
  font-size: 1rem;
}

.hero-btn,
.btn-main,
.header-btn {
  font-size: 1rem;
  padding: 14px 28px;
}

/* HOVER MÁS SUAVE */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* MINI CTA */
.mini-cta {
  display: inline-block !important;
  margin-top: 25px;

  padding: 10px 18px;
  border-radius: 999px;

  background: rgba(232, 207, 196, 0.25);
  color: #8c6a5d !important;

  text-decoration: none !important;
  font-size: 0.9rem;

  transition: all 0.3s ease;
}

.mini-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;

  width: 100%;
  height: 1px;
  background: #b08a78;

  opacity: 0.4;
  transition: all 0.3s ease;
}

.mini-cta:hover {
  background: #e8cfc4;
  transform: translateY(-2px);
}

.section-footer {
  margin-bottom: 10px;
}

.mini-cta:hover::after {
  opacity: 1;
}

.mini-cta {
  margin-left: auto;
  margin-right: auto;
}

.acompanamiento {
  text-align: center;
}

.card {
  opacity: 0;
  transform: translateY(30px);
}

/*COMO TE AYUDO*/
/* SECCIÓN */
.proceso {
  background-color: #f7f1ed;
}

.sesion .section-title,
.sesion .section-subtitle,
.modalidad .section-title,
.modalidad .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.sesion .section-title,
.modalidad .section-title {
  max-width: 850px;
  margin-bottom: 15px;
}

.sesion .section-subtitle,
.modalidad .section-subtitle {
  max-width: 650px;
  margin-bottom: 50px;
}

.sesion {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modalidad {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* GRID */
.proceso-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* ITEM */
.proceso-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;

  text-align: left;

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* ICONO */
.proceso-item .icono {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* TITULO */
.proceso-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #3d3d3d;
}

/* TEXTO */
.proceso-item p {
  font-size: 0.95rem;
  color: #6a6a6a;
  line-height: 1.6;
}

/* HOVER */
.proceso-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* CTA */
.proceso-cta {
  margin-top: 50px;
  text-align: center;
}

.proceso-cta p {
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #7a7a7a;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .proceso-grid {
    grid-template-columns: 1fr;
  }

}

.proceso-item {
  opacity: 0;
  transform: translateY(30px);
}

/*COMO ES UNA SESION*/
/* SECCIÓN */
.sesion {
  background-color: #ffffff;
}

/* TIMELINE */
.timeline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  position: relative;
}

/* LÍNEA */
.timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e5d6cf;
}

/* PASO */
.paso {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 0 10px;

  opacity: 0;
  transform: translateY(30px);
}

/* NÚMERO */
.numero {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;

  background: linear-gradient(135deg, #e8cfc4, #d9b8ab);
  color: #3d3d3d;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 500;
}

/* TITULO */
.paso h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #3d3d3d;
}

/* TEXTO */
.paso p {
  font-size: 0.9rem;
  color: #6a6a6a;
  line-height: 1.5;
}

/* CTA */
.sesion-cta {
  margin-top: 60px;
  text-align: center;
}

.sesion-cta p {
  margin-bottom: 15px;
  color: #7a7a7a;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .timeline {
    flex-direction: column;
    gap: 30px;
  }

  .timeline::before {
    display: none;
  }
}

/*SOBRE ELLA*/
/* SECCIÓN */
.sobre {
  background-color: #f7f1ed;
}

/* CONTENEDOR */
.sobre-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGEN */
.sobre-img img {
  width: 320px;
  border-radius: 20px;
  object-fit: cover;

  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* TEXTO */
.sobre-content {
  max-width: 520px;
  text-align: left;
}

/* INTRO */
.intro {
  font-size: 1.05rem;
  color: #5a5a5a;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* HISTORIA */
.historia p {
  margin-bottom: 15px;
  color: #6a6a6a;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .sobre-container {
    flex-direction: column;
    text-align: center;
  }

  .sobre-content {
    text-align: center;
  }

}

.sobre-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

/*CONSULTORIO*/
/* SECCIÓN */
.consultorio {
  background-color: #ffffff;
}

/* UBICACIÓN */
.consultorio-ubicacion {
  margin-bottom: 25px;
  font-size: 0.9rem;
  color: #8a8a8a;
}

/* GALERÍA */
.galeria {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

/* IMAGEN GRANDE */
.img-grande img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;

  transition: all 0.4s ease;
}

/* COLUMNA */
.img-columna {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.img-columna img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;

  transition: all 0.4s ease;
}

/* HOVER SUTIL */
.galeria img:hover {
  transform: scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .galeria {
    grid-template-columns: 1fr;
  }

}

.galeria img {
  opacity: 0;
  transform: scale(0.95);
}

/*MODALIDAD*/
/* SECCIÓN */
.modalidad {
  background-color: #f7f1ed;
}

/* GRID */
.modalidad-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

/* CARD */
.modalidad-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 20px;

  max-width: 300px;
  text-align: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;

  opacity: 0;
  transform: translateY(30px);
}

.modalidad-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* IMG */
.modalidad-card img {
  width: 100px;
  margin-bottom: 20px;
}

/* TITLE */
.modalidad-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #3d3d3d;
}

/* TEXT */
.modalidad-card p {
  font-size: 0.95rem;
  color: #6a6a6a;
  line-height: 1.5;
}

/* HOVER */
.modalidad-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* CTA */
.modalidad-cta {
  margin-top: 50px;
  text-align: center;
}

.modalidad-cta p {
  margin-bottom: 15px;
  color: #7a7a7a;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .modalidad-grid {
    flex-direction: column;
    align-items: center;
  }

}

/*FRASES + CONTACTO*/
/* SECCIÓN */
.contacto {
  position: relative;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;

}

.contacto-video {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  z-index: 0;
}

.contacto::before {
  z-index: 1;
}

.contacto-container {
  position: relative;
  z-index: 2;
}

/* OVERLAY */
.contacto::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  background: rgba(253, 250, 247, 0.76);
  backdrop-filter: blur(4px);
}

.contacto-video {
  filter: brightness(0.9) saturate(0.8);
}

.contacto-container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

/* TITULO */
.contacto h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #3d3d3d;
}

/* SUB */
.contacto-sub {
  font-size: 1rem;
  color: #6a6a6a;
  margin-bottom: 30px;
}

/* FRASES */
.frases-mini {
  margin-bottom: 35px;
}

.frases-mini p {
  font-size: 0.95rem;
  color: #7a7a7a;
  margin-bottom: 10px;
  font-style: italic;
}

/* BOTONES */
.contacto-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

/* NOTA */
.contacto-note {
  font-size: 0.85rem;
  color: #8a8a8a;
}

.frases-mini p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

/*FOOTER*/
/* FOOTER */
.footer {
  background: #F8F6F4; /* claro */
  padding: 60px 20px 30px;
  color: #3A3A3A;
}

/* CONTENEDOR */
.footer-container {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* BRAND */
.footer-brand h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.footer-brand p {
  font-size: 14px;
  color: #777;
}

.footer-brand span {
  font-size: 13px;
  color: #999;
}

/* CONTACTO */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #3A3A3A;
  font-size: 14px;
  transition: 0.3s;
}

.social-link i {
  font-size: 16px;
}

/* hover */
.social-link:hover {
  color: #C8A27A; /* tono cálido acorde a su branding */
}

/* LINKS */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #3A3A3A;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #C8A27A;
}

/* DIVISOR */
.footer-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 40px auto 20px;
  max-width: 1100px;
}

/* BOTTOM */
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  font-size: 13px;
  color: #888;
}

/* DEV */
.footer-dev {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dev-brand {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dev-brand img {
  width: 20px;
}


@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-socials {
    align-items: center;
  }

}


.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

.btn-main {
  display: inline-block;

  padding: 12px 25px;
  border-radius: 25px;

  background: linear-gradient(135deg, #e8cfc4, #d9b8ab);
  color: #3d3d3d;
  text-decoration: none;

  font-size: 0.9rem;

  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contacto-buttons,
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.modalidad-card lottie-player {
  width: 220px;
  height: 220px;

  display: block;
  margin: 0 auto 15px;
}

.modalidad-card:hover lottie-player {
  transform: scale(1.05);
  transition: 0.3s;
}

.btn-secondary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;

  border: 1px solid #d6b8a8;
  color: #8c6a5d;
  background: transparent;

  text-decoration: none;
  font-size: 0.95rem;

  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #f3e6df;
  transform: translateY(-2px);
}

.frases-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

button,
a {
  transition: all 0.25s ease;
}

.btn-main {
  position: relative;
  overflow: hidden;
}

.btn-main:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.btn-main:active {
  transform: scale(0.96);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
  background: #f3e6df;
  transform: translateY(-2px);
  border-color: #c8afa3;
}

.btn-secondary:active {
  transform: scale(0.97);
}

.mini-cta:hover {
  transform: translateX(4px);
  letter-spacing: 0.3px;
}

.mini-cta:active {
  transform: translateX(2px) scale(0.98);
}

.btn-main::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: radial-gradient(circle at center, rgba(255,255,255,0.4), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-main:hover::before {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero video {
    display: none;
  }

  .hero {
    background: url("/fondo2.png") center/cover no-repeat;
  }

  .contacto {
  position: relative;
  background: url("/fondo1.png") center/cover no-repeat;
}

.contacto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75); /* ajusta */
}

.contacto-container {
  position: relative;
  z-index: 2;
}
  
}
