/********************************
        GENERALES 
******************************/
/*
*/

@font-face {
  font-family: "Hidayatullah";
  src: url("./assets/fonts/hidayatullah.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Por defecto (mobile first): sin margen para aprovechar todo el ancho */
.content-wrapper {
  margin: 0;
  padding: 0 1rem; /* un poquito de aire lateral en móviles */
}
/* En pantallas grandes (≥ 992px, bootstrap lg): márgenes de 40px a los lados */
@media (min-width: 992px) {
  .content-wrapper {
    margin: 0 40px;
  }
}

/********************************* 
        FONDO ESTRELLADO
*********************************/
.container-stars {
  background-image: linear-gradient(#09111d, #471f65);
  position: fixed;
  inset: 0;
  z-index: 0; /* ya no -1 */
  overflow: hidden;
}

/* capas de estrellas (si usas variables, asegúrate de definirlas) */
.space-1,
.space-2,
.space-3 {
  --size: 2px; /* define las variables si no existen */
  --duration: 60s;
  --space-layer: 0 0 #fff; /* ejemplo simple; reemplázalo por tu lista */
  position: absolute;
  top: 0;
  left: 0;
  width: var(--size);
  height: var(--size);
  background: #fff;
  box-shadow: var(--space-layer);
  border-radius: 50%;
  opacity: 0.75;
  animation: moveStars var(--duration) linear infinite;
}

@keyframes moveStars {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100vh);
  }
}

/* Navbar por encima del fondo */
header {
  position: relative;
  z-index: 10;
}

/* (si tenías estilos propios) */
.logo {
  display: flex;
  color: white;
}

/* logo-text */
.logo-text {
    font-family: "Hidayatullah", sans-serif;
    color: #FFCE00;
    font-size: 1.5rem;
    text-shadow: -4px 2px 24px #F8FC02B2;
}

.nav {
  display: flex;
}
.nav > * {
  padding: 16px;
  list-style: none;
}

.nav-link {
    font-family: 'Work Sans', sans-serif;
    color: #EBD2FF;
    font-size: 1.2rem;
    font-weight: 500;
}

.navbar-nav .nav-item:last-child .nav-link {
  padding-right: 0;
}

.active {
    font-family: 'Work Sans', sans-serif;
    color: #BE68E5 !important;
}

/* NAV: logo a la izquierda, hamburguesa a la derecha y ancho completo */
.navbar .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;        /* 👈 importante */
}

/* Evitar que se rompa en dos líneas */
.navbar-brand,
.navbar-toggler {
  flex-shrink: 0;
}

/* Por si Bootstrap mete márgenes raros */
.navbar-toggler {
  margin-left: auto;
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 44px !important;   /* antes tenías 56px */
  }

  .logo-text {
    font-size: 1.2rem !important; /* antes 1.5rem */
  }
}

@media (max-width: 991px) {

  /* Contenedor que aparece al abrir el menú */
  .navbar-collapse {
    text-align: right !important;  /* Alinea el texto */
  }

  /* Asegura que UL se pegue a la derecha */
  .navbar-nav {
    margin-left: auto !important;
    margin-right: 20px;
    align-items: center !important; /* Alineación a la derecha */
  }

  /* Los links bien alineados */
  .navbar-nav .nav-link {
    width: 100%;
    text-align: right !important;
    padding-right: 0; /* Opcional: ajusta margen */
  }
}




/******************************************
**              CARRUSEL                 **
*****************************************/
/* 🔹 Limitar altura del carousel */
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* mantiene proporción sin deformar */
  object-position: center;     /* la imagen arranca desde arriba */
}

#carouselExampleDark {
  max-height: 80vh;   /* o 50vh, 45vh, lo que prefieras */
  overflow: hidden;   /* evita que desborde */
  height: 80vh;
}

#carouselExampleDark .carousel-inner,
#carouselExampleDark .carousel-item {
  height: 100%;
}

.carousel-item {
  position: relative;
}

/* 🔹 Centrar el caption en el medio (vertical y horizontal) */
.carousel-caption {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  text-align: center;
  bottom: auto !important;
  right: auto !important;
  width: 100%;
  max-width: 1500px; /* opcional: límite para que el texto no se extienda demasiado */
  margin: 0 auto;
  z-index: 2;
}


/* Glow morado visible detrás del texto */
.carousel-caption::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 80%;                      /* controla el ancho del rectángulo */
  height: 80%;                     /* controla la altura del rectángulo */

  background: rgba(190, 104, 229, 0.35);
  border-radius: 24px;

  filter: blur(60px);

  pointer-events: none;
  z-index: -1;
}





/* 🔹 Estilos para párrafos */
.carousel-caption p {
  font-size: 40px;
  font-weight: 700;
  color: #f3e4ff; /* color de relleno del texto */
  margin: 0.5rem 0;
  font-family: "Lora", serif;
  font-weight: 700;

  /* Contorno nítido de 2px (sin blur) */
  text-shadow:
    /* anillo de 2px */ -2px -2px 0 #331749, -2px -1px 0 #331749,
    -2px 0 0 #331749, -2px 1px 0 #331749, -2px 2px 0 #331749,
    -1px -2px 0 #331749, -1px -1px 0 #331749, -1px 0 0 #331749,
    -1px 1px 0 #331749, -1px 2px 0 #331749, 0 -2px 0 #331749, 0 -1px 0 #331749,
    0 1px 0 #331749, 0 2px 0 #331749, 1px -2px 0 #331749, 1px -1px 0 #331749,
    1px 0 0 #331749, 1px 1px 0 #331749, 1px 2px 0 #331749, 2px -2px 0 #331749,
    2px -1px 0 #331749, 2px 0 0 #331749, 2px 1px 0 #331749, 2px 2px 0 #331749,
    /* glow extra como en Figma (opcional) */ 2px 2px 24px #75289933;
}

/* 🔹 Botón dentro del caption */
.carousel-caption button {
  width: 25 0px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border: 2.4px solid #c7a000;
  border-radius: 24px;
  background: #ffce00;
  color: #674600;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 2px 4px 4px 0px #b18f01db inset;
}

.carousel-caption button:hover {
  background: #e6ba00; /* un tono apenas más oscuro */
  box-shadow:
    2px 4px 6px 0px rgba(0, 0, 0, 0.25),     /* sombra externa suave */
    inset 2px 4px 6px #9f7d00cc;             /* profundidad interior */
  transform: translateY(-2px);               /* micro-elevación */
}

/* 🔹 Responsivo: ajustar en pantallas chicas */
@media (max-width: 768px) {
  .carousel-caption p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }

  .carousel-caption button {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

/* 🔹 Forzar indicators como círculos */
.carousel-indicators [data-bs-target] {
  width: 12px !important; /* igual ancho y alto */
  height: 12px !important;
  border-radius: 50% !important; /* círculo */
  background-color: #fff !important; /* color puntitos */
  border: 0px solid #000; /* opcional: borde */
  opacity: 0.7; /* un poco transparentes */
  margin: 0 5px; /* espacio entre círculos */
}

/* 🔹 Indicator activo */
.carousel-indicators .active {
  background-color: #ffce00 !important; /* círculo negro cuando está activo */
  opacity: 1;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 8 8'%3E%3Cpath stroke='white' stroke-width='3' d='M2 0 L6 4 L2 8 Z'/%3E%3C/svg%3E");
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 8 8'%3E%3Cpath stroke='white' stroke-width='3' d='M6 0 L2 4 L6 8 Z'/%3E%3C/svg%3E");
}

/******************************************
**              SOBRE MÍ                 **
******************************************/

.sobre-mi-section {
  padding: 4rem 0;
  position: relative;
  z-index: 1; /* por delante del fondo de estrellas */
}

.sobre-mi-card {
  
  margin: 0 auto;
  padding: 2.5rem 3rem;
  border-radius: 28px;
 /* background: radial-gradient(circle at top left, #3b164aee 0%, #130818ee 55%, #07040cee 100%); */
  /* box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85); */
  display: flex;
  gap: 2.5rem;
  backdrop-filter: blur(24px);
}

.sobre-mi-img {
  flex: 0 0 36%;
  /* margin-left: 50px; */
}

.sobre-mi-img img {
  width: 100%;
  max-height: 500px;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  /* padding-left: 50px; */
}

/* Columna de texto */
.sobre-mi-content {
  flex: 1;
  color: #f6e9ff;
  font-family: "Work Sans", sans-serif;
}

/* Título */
.sobre-mi-title {
  font-size: 1.9rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: #fce6ff;
  max-width: 700px;
}

.sobre-mi-title .accent-name {
  font-weight: 700;
  color: #EBD2FF;
  font-size: 1.7rem;
  font-family: "Work Sans", sans-serif;

  
}

.sobre-mi-title .accent {
  color: #BB70DD;
  font-weight: 700;
  font-size: 2.3rem;
}

/* Párrafos */
.sobre-mi-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
  font-family: "Work Sans", sans-serif;
  color: #EBD2FF;
  max-width: 700px;
}

/* Párrafo resaltado */
.sobre-mi-highlight {
  color: #ffd842;
  font-weight: 500;
}

/* Botón */
.sobre-mi-btn {
  margin-top: 1.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  border: 1px solid #14091D;
  background: #BE68E5;
  color: #1a0522;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 12px 12px 4px 0px #29123A3D inset;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.sobre-mi-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .sobre-mi-card {
    padding: 2rem 1.5rem;
    flex-direction: column;
  }

  .sobre-mi-img {
    width: 100%;
    flex: none;
  }

  .sobre-mi-title {
    font-size: 1.6rem;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .sobre-mi-card {
    padding: 1.75rem 1.2rem;
  }

  .sobre-mi-title {
    font-size: 1.4rem;
  }

  .sobre-mi-content p {
    font-size: 0.95rem;
  }

  .sobre-mi-btn {
    width: 100%;
    text-align: center;
  }
}

/******************************************
**              GALERÍA                  **
******************************************/

.gallery-section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.gallery-item img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;      /* ⭐ CUADRADO */
  object-fit: cover;        /* llena el cuadro */
  border-radius: 8px;       /* ⭐ menos redondeado */
  cursor: pointer;

  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.gallery-item img:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
  filter: brightness(1.02);
}


/* Modal oscuro que encaje con el fondo */
.gallery-modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
}

.gallery-modal-content .carousel-item img {
  max-height: 80vh;
  object-fit: contain;
  border-radius: 18px;
  margin: 0 auto;
}

/* Botón de cierre arriba a la derecha */
.gallery-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 10;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/******************************************
**   DESCUBRÍ LO QUE PODÉS TRANSFORMAR   **
******************************************/

.transform-section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.transform-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 3.5rem 3.2rem;
  border-radius: 48px;

  /* ⭐ FONDO TRANSPARENTE, ELEGANTE Y REALISTA */
  background: rgba(13, 5, 22, 0.28); /* 🎯 capa muy tenue */
  backdrop-filter: blur(18px);       /* efecto vidrio suave, NO placa */
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
  color: #f6e9ff;
  text-align: center;
  font-family: "Work Sans", sans-serif;
}

/* Título amarillo */
.transform-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffce00;
  margin-bottom: 1.8rem;
  font-family: Lora;
  font-style: Italic;
  display: inline-block;       /* necesario */
  transform: skewX(+10deg);     /* reduce inclinación */
}

/* Chips morados */
.transform-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.2rem;
  max-width: 700px;
}

.transform-tag {
  padding: 0.45rem 1.3rem;
  border-radius: 999px;
  border: 1px solid #BE68E5A3;
  background: #7600930a;
  color: #EBD2FF;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Texto */
.transform-text p {
  max-width: 820px;
  margin: 0 auto 0.9rem;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #EBD2FF;
}

/* Último párrafo sin margen extra abajo */
.transform-text p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .transform-card {
    padding: 2.5rem 2rem 2.7rem;
    border-radius: 32px;
  }

  .transform-title {
    font-size: 1.9rem;
  }

  .transform-text p {
    font-size: 0.98rem;
  }
}

@media (max-width: 576px) {
  .transform-card {
    padding: 2.2rem 1.4rem 2.4rem;
  }

  .transform-title {
    font-size: 1.6rem;
  }

  .transform-tag {
    font-size: 0.9rem;
    padding: 0.4rem 1.1rem;
  }

  .transform-text p {
    font-size: 0.95rem;
  }
}

/******************************************
**      SESIONES PSICOTERAPIA ONLINE     **
******************************************/

.sesiones-section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.sesiones-card {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

/* Columna imagen */
.sesiones-img {
  flex: 0 0 40%;
}

.sesiones-img img {
  width: 100%;
  height:520px;
  max-height: 520px;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

/* Columna texto */
.sesiones-content {
  flex: 1;
  color: #EBD2FF;
  font-family: "Work Sans", sans-serif;
}

/* Título */
.sesiones-title {
  font-size: 2.3rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  max-width: 650px;
  color: #EBD2FF;
}

/* partes destacadas del título */
.sesiones-accent-purple {
  color: #BB70DD;
  font-family: "Lora", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 2.8rem;
}

.sesiones-accent-yellow {
  color: #FFCE00;
  font-family: "Lora", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 2.8rem;
}

/* Párrafos */
.sesiones-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.9rem;
  max-width: 700px;
}

/* Botón */
.sesiones-btn {
  margin-top: 1.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  border: 1px solid #14091D;
  background: #BE68E5;
  color: #1a0522;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 12px 12px 4px 0px #29123A3D inset;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.sesiones-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .sesiones-card {
    flex-direction: column;
    padding: 0 0.5rem;
  }

  .sesiones-img {
    width: 100%;
    flex: none;
  }

  .sesiones-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .sesiones-title {
    font-size: 1.7rem;
  }

  .sesiones-content p {
    font-size: 0.96rem;
  }

  .sesiones-btn {
    width: 100%;
    text-align: center;
  }
}

/******************************************
**      PRÓXIMO TALLER BIONEUROEMOCIÓN    **
******************************************/

.taller-section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.taller-card {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

/* Columna de texto */
.taller-content {
  flex: 1;
  color: #EBD2FF;
  font-family: "Work Sans", sans-serif;
}

/* Tag superior */
.taller-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.9rem;
  border: 1px solid #BE68E54D;
  color: #ffffff;
  margin-bottom: 1rem;
}

/* Título */
.taller-title {
  font-size: 2.3rem;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.taller-title-accent {
  color: #ffce00;
  font-family: "Lora", serif;
  font-style: italic;
  font-weight: 700;
}

/* Párrafos */
.taller-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 700px;
}

/* Botones */
.taller-buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.taller-btn-primary {
  padding: 0.9rem 2rem;
  border-radius: 999px;
  border: 1px solid #14091D;
  background: #BE68E5;
  color: #1a0522;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
  box-shadow: 12px 12px 4px 0px #29123A3D inset;
  transition: 0.15s ease;
}

.taller-btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.taller-btn-secondary {
  padding: 0.9rem 2rem;
  border-radius: 999px;
  border: 2px solid #ffce00;
  background: transparent;
  color: #ffce00;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s ease;
}

.taller-btn-secondary:hover {
  background: rgba(255, 206, 0, 0.15);
  transform: translateY(-2px);
}

/* Imagen a la derecha */
.taller-img {
  flex: 0 0 40%;
}

.taller-img img {
  width: 100%;
  height: 630px;
  border-radius: 18px;
  object-fit: cover;
}

.taller-img img {
  width: 100%;
  height: 630px;
  border-radius: 18px;
  object-fit: cover;
}

/* Tablets (menos de 992px) */
@media (max-width: 991px) {
  .taller-img img {
    height: 480px;
  }
}

/* Mobile grande (menos de 768px) */
@media (max-width: 768px) {
  .taller-img img {
    height: 360px;
  }
}

/* Mobile chico (menos de 576px) */
@media (max-width: 576px) {
  .taller-img img {
    height: 260px;
  }
}


/* Responsive */
@media (max-width: 992px) {
  .taller-card {
    flex-direction: column-reverse;
  }

  .taller-img {
    width: 100%;
  }

  .taller-title {
    font-size: 2rem;
  }
}

/******************************************
**              CONTACTO                 **
******************************************/

.contact-section {
  padding: 4rem 0 5rem;
  position: relative;
  z-index: 1;
}

.contact-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #f6e9ff;
  font-family: "Work Sans", sans-serif;
}

.contact-title {
  font-family: "Lora", serif;
  font-size: 3rem;
  color: #d979ff;
  margin-bottom: 0.75rem;
}

.contact-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  color: #f3e4ff;
}

/* Formulario */
.contact-form {
  width: 100%;
}

.contact-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.contact-field {
  flex: 1;
  text-align: left;
}

.contact-field.full {
  flex: 0 0 100%;
}

.contact-field label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: #f6e9ff;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: none;
  outline: none;

  background: rgba(255, 255, 255, 0.9);
  color: #2b153b;
  font-size: 0.95rem;
  font-family: "Work Sans", sans-serif;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.contact-field textarea {
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #9a86b6;
}

.asterisco-color {
    color: #ce35dc;
}

/* Botón */
.contact-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.contact-btn {
  padding: 0.9rem 2.6rem;
  border-radius: 999px;
  border: 1px solid #14091D;
  background: #BE68E5;
  color: #1a0522;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.8);
  box-shadow: 12px 12px 4px 0px #29123A3D inset;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}


.contact-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-row {
    flex-direction: column;
  }

  .contact-card {
    padding: 0 0.5rem;
  }

  .contact-title {
    font-size: 2.1rem;
  }
}

/******************************************
**                FOOTER                 **
******************************************/

.footer-section {
  padding: 3rem 0 2rem;
  text-align: center;
  background: #0b0612 !important; /* fondo oscuro elegante */
  margin-top: 4rem;
  position: relative;
  z-index: 50;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  color: #e9d7ff;
  font-family: "Work Sans", sans-serif;
}

.footer-title {
  font-family: "Hidayatullah", serif;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.footer-subtitle {
  color: #d5c4e8;
  margin-bottom: 1.6rem;
  font-size: 1rem;
}

.footer-socials {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 1.8rem;
}

.footer-socials img {
  width: 32px;
  height: 32px;
  filter: brightness(1) invert(0);
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-socials img:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.footer-divider {
  width: 85%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  margin: 1.8rem auto;
}

.footer-copy {
  color: #d5c4e8;
  font-size: 0.95rem;
}

.footer-socials i {
  font-size: 28px;
  color: #ffffff;
  opacity: 0.85;
  transition: 0.2s ease;
}

.footer-socials i:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/*=============== FLOATING BUTTONS ===============*/

.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 50%;
  border: none;
  cursor: pointer;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: #ffffff;
  font-size: 26px;

  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
  transition: 0.25s ease;
}

/* WhatsApp button */
.whatsapp-btn {
  background: #25D366; /* verde whatsapp */
  color: white;
  text-decoration: none;
}

/* Scroll top hover */
.float-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.45);
}

/* Ocultar el botón de volver arriba al inicio */
#btnTop {
  display: none;
}

.gallery-modal-content .carousel-control-prev-icon,
.gallery-modal-content .carousel-control-next-icon {
  display: none !important;
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 30; /* más alto que el caption */
}

@media (max-width: 768px) {

  /* Botones generales */
  .sobre-mi-btn,
  .sesiones-btn,
  .taller-btn-primary,
  .taller-btn-secondary,
  .contact-btn,
  .carousel-caption button {
    padding: 10px 16px !important;  /* menos padding */
    font-size: 0.9rem !important;   /* tipografía un poco más chica */
    border-radius: 18px !important; /* menos pill para verse mejor en mobile */
    width: auto !important;         /* evita que se estiren demasiado */
    max-width: 220px;               /* límite visual */
    margin-left: auto;
    margin-right: auto;
  }

  /* Botones que van uno debajo de otro */
  .taller-buttons button,
  .contact-actions button {
    width: 100% !important; /* estos sí deben ocupar ancho */
  }

  /* Botón de carrusel específicamente */
  .carousel-caption button {
    max-width: 180px !important;
  }
}
