custom.css
body{
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  background-color: #FAF4F2; 
}

html, body {
  /*overflow-x: hidden;*/
  overscroll-behavior: none;
  touch-action: manipulation;
}

b{
  font-weight:500;
}

.pt-200{
  padding-top: 150px !important;
}
 
h2{
  font-family: "marlide-display-variable", sans-serif;
  font-weight: 300;
  font-size:3.375em;
  line-height: 1.1; 
}

/* Clase header inicial con opacidad baja */
.header-transparent {
  background-color: rgba(255, 255, 255, 0.15);

}

.header-transparent .nav-link{
  color: white;
}

/* Clase header cuando haces scroll */
.header-solid {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  color: #272726;
}

.header-top-solid{
  color:#272726;
}

.transition {
  transition: background-color 0.3 ease, box-shadow 0.3s ease;
}

.header-solid .nav-link{
  color: #272726;
}

/* header Tania */

.btn-pink{
  background-color: #FFBCF1;
  color: #272726;
  border: 0px;
}

.logo-header{
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* menú móvil */

#mobileMenu {
  background-color: #CA6E76 !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  padding-top: 5rem;
  transition: all 0.05s ease;
}

#mobileMenu > .d-flex {
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  justify-content: space-between;
  align-items: center;
  z-index: 1001;
  
}

#mobileMenu .nav-item{
  margin-bottom: 20px;
}

#mobileMenu img#logoMobile {
  height: 36px;
  z-index: 1001;
}

.navbar-collapse {
  background: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-collapse.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #CA6E76;
  z-index: 9999;
  padding-top: 5rem;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  animation: fadeInMenu 0.4s ease-in-out;
}

.navbar-collapse.collapse:not(.show) {
  display: none !important;
}

.navbar-collapse.collapsing:not(.show) {
  display: none !important;
}


.navbar {
  position: relative;
  z-index: 1000;
  background-color: transparent;
}

#closeMenuBtn {
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  z-index: 1001;
  padding: 0;
  margin: 0;
  margin-right:15px; 
}

#mobileMenu.show #closeMenuBtn {
  display: block;
}


@keyframes fadeInMenu {
  from {
    opacity: 0;
    
  }
  to {
    opacity: 1;
    
  }
}

.navbar-collapse.show .nav-link {
  color: white !important;
  text-transform: uppercase;

  font-size: 2.2rem;
  line-height: 1em;
}

/* Fondo del header móvil mientras el menú está abierto */
.navbar.navbar-expand-lg.show-header-bg {
  background-color: #CA6E76 !important;
}

/* hero */

.hero {
  height: 720px;
  overflow: hidden;
}

.hero-img {
  object-fit: cover;
  height: 100%;
}

.logo-sobre-hero {
  position: absolute;
  bottom: -30px; /* sobresale 30px hacia abajo */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  z-index: 2;
}

/* Estado inicial del logo */
.animate-logo {
  opacity: 0;
  transform: translate(-50%, 20px);
  animation: fadeSlideUp 1s ease-out forwards;
  animation-delay: 0.5s;
}

/* Animación */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.intro-text{
  font-size: 1.375em;
  line-height: 1.6;
}

.intro-line {
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 1rem;
  width: 100vw;
  max-width: 41.6667vw;
  z-index: 1;
}

.intro-line-global {
  position: absolute;
  left: 0;
  height: 1px;
  background-color: #000;
  width: calc((100% - 2 * var(--bs-gutter-x)) * 5 / 12 + var(--bs-gutter-x));
  z-index: 1;
  top: 62.7rem;
}

.coleccion-card {
  flex: 1 1 100%;
  text-decoration: none;
  color: inherit;
}

.coleccion-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.zoom-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 1;
}

.coleccion-img:hover .zoom-bg {
  transform: scale(1.1);
}

.coleccion-overlay {
  position: absolute;
  inset: 0;
  padding: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  color: white;
  text-align: left;
}

.coleccion-titulo {
  font-size: 1.5rem;
  margin: 0;
  font-family: "marlide-display-variable", sans-serif;
  font-weight: 300;

}

.coleccion-precio {
  font-size: 1rem;
  margin-top: 0.2rem;
  margin-bottom:0px;
}

.destacados{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.destacado-icon {
  width: 48px;
  height: 48px;
}

.destacado-title {
  font-size: 1.125em; /* 18px si body = 16px */
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.destacado-text {
  font-size: 1em; /* 16px */
  color: #444;
}

/* Sección con fondo oscuro que ocupa todo el ancho de la ventana */
.seccion-exclusiva {
  background-color: #272726;
  width: 100vw;
  position: relative;
  overflow: visible;
}


.seccion-exclusiva h2{
  font-weight:300;
  font-size: 3.5em;

}

.p-18{
  font-size: 1.125em;
  line-height: 1.5em;
}
/* Icono decorativo centrado que sobresale por arriba */
.icono-top {
  position: absolute;
  top: -59px; /* mitad de 118px */
  left: 50%;
  transform: translateX(-50%);
  width: 118px;
  height: 118px;
  z-index: 2;
}

/* Imagen que ocupa todo su contenedor */
.imagen-wrapper {
  height: 100%;
  overflow: hidden;
}

.imagen-wrapper img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* Botón */
.btn-custom {
  background-color: #FFBCF5;
  color: #272726;
  font-weight: 300;
  padding: 0.75rem 1.25rem;
  border-radius: var(--bs-border-radius-pill) !important;
  transition: all 0.3s ease;
}

.btn-custom-light:hover {
  background-color: #fff;
}

/* Sección completa */
.work-marquee {
  width: 100%;
  overflow: hidden;
  background-color: #ffbcf1;
  padding: 1rem 0;
}
.seccion-exclusiva .btn-mbl{
  display:none !important;
}

/* Contenedor de animación */
.marquee-track {
  width: 100%;
  display: flex;
  white-space: nowrap;
  overflow: hidden;
}

/* Contenido del marquee */
.marquee-content {
  display: flex;
  animation: scrollLoop 40s linear infinite;
  font-family: "marlide-display-variable", sans-serif;
  font-weight: 300;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #272726;
  font-size: 4rem;

}

/* Icono */
.icono-marquee {
  width: 32px;
  height: 32px;
}

.marquee-content span{
  display: block;
  margin-top:-12px;
}

.icono-marquee:last-child{
  margin-right: 2rem;
}

.seccion-parallax {
  position: relative;
  height: 500px;
  background-image: url('/img/parallax_v2.jpg'); /* Cambia esto por la ruta real */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Efecto parallax */
  width: 100%;
  overflow: hidden;
}

/* fallback iOS: sin fixed */
.ios .seccion-parallax {
  background-attachment: scroll;
}

.parallax-overlay {
  background-color: rgba(0, 0, 0, 0.3); /* Capa negra con opacidad */
  backdrop-filter: blur(1px);
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.parallax-content {
  color: white;
  padding: 1rem;
  max-width: 800px;
}

.parallax-title {
  font-size: 3.375em;
  margin-bottom: 3.5rem;
}

.parallax-button {

  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 2rem;
  transition: transform 0.3s ease;
}

.parallax-button:hover {
  transform: scale(1.05);
}




.seccion-suenos {
  width: 100%;
  background-color: #CA6E76;
  padding: 3rem 0;
}

.texto-suenos {
  font-size: 1.25rem; /* Ajuste de tamaño */
  color: #FFBCF1;
  text-align: center;
  margin-bottom: 2rem;

}

.listado-suenos {
  list-style: none;
  padding: 0;
  text-align: center;
  font-size: 4rem;
  color: #FFBCF1;
  text-transform: uppercase;
}

.listado-suenos li {
  margin: 0; /* Espaciado entre los items */
  transition: transform 0.3s ease, color 0.3s ease; /* Efecto de hover */
}

.listado-suenos li:hover {
  transform: translateY(-10px); /* Efecto de desplazamiento hacia arriba */
  color: #fff; /* Cambio de color al hacer hover */
}

.seccion-central {
  position: relative;
  background-color: #272726;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 5rem 0;
}

.seccion-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 80px; /* Padding general en desktop */
}

.seccion-image {
  max-height: 80%; /* Ajusta la altura de la imagen, si es necesario */
  width: auto; /* Mantiene la relación de aspecto de la imagen */
  max-width: 100%; /* La imagen no debe exceder el ancho del contenedor */
  margin-right: 20px;
}

.texto-izquierda,
.texto-derecha {
  font-size: 1.875em; /* 30px en em, ya que 30px / 16px = 1.875em */
}

.texto-izquierda {
  text-align: left;
  flex: 1; /* Toma el espacio restante */
}

.texto-derecha {
  text-align: right;
  flex: 1; /* Toma el espacio restante */
}

.texto-izquierda p, .texto-derecha p {
  margin: 0;
}


.seccion-contacto {
  position: relative;
  background-color: #272726;
  color: #FFBCF1;
  width: 100%;
  padding: 80px 20px;
  overflow: hidden;
  cursor: none; /* Ocultamos el cursor por defecto */
}

/* Container centrado */
.link-contacto {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.container-contacto {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.container-contacto h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 5.375em; /* 86px en em (86/16) */
  line-height: 1.1;
  margin-bottom: 20px;
}

.container-contacto p {
  font-size: 1.25em;
  font-weight: 400;
}

/* Cursor personalizado */
.cursor-circle {
  position: fixed;
  width: 120px;
  height: 120px;
  background-color: #FFBCF1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
  font-size: 0.875em;
  color: #272726;
  z-index: 9999;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cursor-circle span {
  text-align: center;
}

/* Mostrar cursor solo en esta sección */
.seccion-contacto:hover .cursor-circle {
  opacity: 1;
}

.footer {
  background-color: #272726;
  color: #fff;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.footer-container {
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 80px;
}

.footer-left,
.footer-right {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.footer-left {
  left: 0;
  padding-left: 80px;
  text-align: left;
}

.arrow-up{
  margin-right:10px;
  display: inline-block;
  animation: bounceUp 1.5s infinite ease-in-out;
  font-size: 1.2em;
}

@keyframes bounceUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.copyright{
  font-size: 1.25em;
  margin-bottom: 0.5rem;
}



.footer-right {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding-right: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.follow-trigger:hover + .social-icons {
  display: flex;
  opacity: 1;
}


.footer-right:hover .social-icons {
  display: flex;
}

.footer-center {
  margin: 0 auto;
}
.footer a {
  color: #FFBCF1;
  text-decoration: none;
}

.legal-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.85em;
}

.legal-links a:hover {
  text-decoration: underline;
}

.legal-links span {
  margin: 0 10px;
}

.footer .social-icons {
  margin-top: 0.8rem;
  background-color: #272726;
  padding-bottom: 0.8rem;
}

.social-icons {
  display: none;
  opacity: 0;
  flex-direction: row;
  gap: 0.5rem;
  margin-top: 0.5rem;
  transition: opacity 0.5s ease-in-out; /* Efecto de desvanecimiento */
}

/* Cuando se pasa el cursor sobre .footer-right (que contiene .follow-trigger), mostramos los iconos */
.footer-right:hover .social-icons {
  display: flex;
  opacity: 1;
}

/* Efecto hover sobre los enlaces de redes sociales */
.footer .social-icons a {
  margin-left: 0.5rem;
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Efecto hover en los iconos de redes sociales */
.footer .social-icons a:hover {
  transform: scale(1.2);
  opacity: 0.8; /* Hace que el icono se atenué un poco cuando se pasa el cursor */
}

.footer-logo {
  position: absolute;
  bottom: -70px; /* Lo empujamos fuera del footer sin scroll */
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.footer-logo img {
  width: 100%;
}

/* nuevo css */


.follow-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
  background: #272726;
  padding: 12px;
}

.follow-text {
  transition: opacity 0.3s ease;
}

.heart-icon {
  margin-left: 8px;
}

.social-icons {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  gap: 8px;
  display: flex;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.social-icons a {
  color: #FFBCF1;
  text-decoration: none;
  font-size: 0.85em;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.footer-left a {
  color: #fff;
}

.follow-wrapper:hover .social-icons {
  opacity: 1;
  pointer-events: all;
}

.follow-wrapper:hover .follow-text,
.follow-wrapper:hover .heart-icon {
  opacity: 0;
}

.social-links-mobile {
  display: none;
  color: #FFBCF1;
  margin-top: 2rem;
  font-size: 1em;
}

.logo-footer{
  height:18.75rem;
}


/* Animación continua */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.colecciones{
  background-color: white;
}

.coleccion-section {
  text-align: center;
  padding: 4em 1em;

}

.coleccion-subtitle {
  font-size: 1.125em; /* 18px */
  margin-bottom: 0.5em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coleccion-title {
  font-size: 5.375em; /* 86px */
  margin-bottom: 0.5em;
}

.coleccion-description {
  font-size: 1.25em; /* 20px */
  max-width: 40em;
  margin: 0 auto;
  line-height: 1.5;
  margin-bottom:3em;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25D366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
  display: block;
}

.accordion22 .accordion-button{
  font-size: 2rem;
  font-weight: 300;
}

.accordion-button:focus {
  outline: none;
  box-shadow: none;
}

.accordion-button .toggle-icon {
  font-size: 2rem;
  transition: transform 0.3s ease;
}



/* Opcional: mejora visual */
.accordion-button {
  background-color: transparent;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
}

.accordion-button:not(.collapsed){
  background: white;
}

.accordion-button:not(.collapsed){
  color: #272726;
  box-shadow: none;
}

.accordion-button:not(.collapsing){
  background: white;
}

.accordion-button:not(.collapsing){
  color: #272726;
  box-shadow: none;
}


.legal-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 30px;
}
.legal-container h1 {
  font-size: 3rem;
  color: #272726;
  margin-bottom: 20px;
  font-family: "marlide-display-variable", sans-serif;
  font-weight:300;
}
.legal-container h2 {
  font-size: 1.5rem;
  color: #272726;
  margin-top: 40px;
  font-family: "Manrope", sans-serif;
}
.legal-container p {
  margin-bottom: 16px;
}
.legal-container a {
  color: #CA6E76;
  text-decoration: none;
}
.legal-container a:hover {
  text-decoration: underline;
}

strong{
  font-weight: 600;
}

/* -------cookies banner -----------*/

.cookie-settings {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-settings.hidden {
  display: none;
}
.cookie-settings__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.cookie-settings__panel {
  position: relative;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  z-index: 10;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}
.cookie-settings h2 {
  margin-top: 0;
}
.cookie-option {
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.cookie-option label {
  flex: 1;
}
.cookie-option input[type="checkbox"] {
  transform: scale(1.4);
  margin-top: 6px;
}
.cookie-settings__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.cookie-settings__buttons button {
  background: #cc71b5;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
}
.cookie-settings__buttons button:nth-child(2) {
  background: #4caf50;
}
.cookie-settings__buttons button:nth-child(3) {
  background: #999;
}
.cookie-settings__buttons button:hover {
  opacity: 0.9;
}

.personalizada-hero-video {
  width: 100%;
  height: 80vh; /* o 60vh si prefieres más bajo */
  overflow: hidden;
  position: relative;
}

.personalizada-hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;     /* Hace el crop centrado */
  object-position: center center;
  z-index: 1;
}

.personalizada-hero-video .hero-texto {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;     /* Centra verticalmente */
  justify-content: center; /* Centra horizontalmente */
  text-align: center;
  padding: 0 2rem;
  color: white;
}

.personalizada-hero-video .hero-texto h2 {
  font-size: 5.375rem;
  font-weight: 300;
  line-height: 1.3;
}


.process-container {
  width: 100%;
  padding:50px 0px 100px 0px;
  background-color: #FAF4F2;
}

.process-container .title{
  position: sticky;
  top: 0px;
  align-self: flex-start;
  height: fit-content;
  box-sizing: border-box;
  flex: 1 1 50%;
  padding-top:100px;
}



.grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.spacer {
  display: none;
}

.title {
  grid-column: 2 / span 4;
  top: 2rem;
  align-self: start;
}



.content {
  grid-column: 7 / span 5;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  overflow-y: auto;
  padding-right: 1rem;
  padding-top: 100px;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-icon {
  color: #333;
  border-radius: 3rem;
  padding: 1rem 0.75rem;
  text-align: center;
  width: 60px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.step-number {
  font-weight: bold;
  font-size: 1rem;
}

.step-bar {
  width: 100%;
  height: 2px;
  background-color: #333;
  margin: 0.5rem 0;
}

.step-emoji {
  font-size: 1.5rem;
}

.text h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-top:1rem;
}

.text p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

.about-section {
  background-color: #780145;
  color: white;
  padding: 8rem 0 2rem 0;
  width: 100vw;
  overflow: visible;
}

.about-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;

  gap: 2rem;
}

.spacer {
  grid-column: 1 / span 1;
}

.about-title {
  grid-column: 2 / span 6;
}

.about-title h1 {
  font-family: 'Marlide Display', serif;
  font-size: 5.25em; /* 84px */
  line-height: 1.1;
  margin: 0;
  font-weight: 300;
}

.about-content {
  margin-top: 4rem;
}

.spacer-2 {
  grid-column: 1 / span 2;
}

.about-image {
  grid-column: 3 / span 4;
}

.about-image img {
  width: 100%;
  height: auto;

}

.about-text {
  grid-column: 7 / span 4;
  font-family: 'Manrope', sans-serif;
  font-size: 1em;
  line-height: 1.6;
  padding-left: 2em;


}

.destacados-aboutus{
  background-color: #FAF4F2;
}

.destacados-aboutus .destacado-item{
  background-color: white;
  border-radius: 20px;
  padding: 3em;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
  border: 3px solid white;
}

.destacados-aboutus .row > div {
  display: flex;
}

.destacados-aboutus .destacado-item:hover {
  border: 3px solid #FFBCF1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #FFEBFB;
}

/* detalle colección */
.hero-coleccion {
  position: relative;
  height: 530px;

  background-size: cover;
  background-position: center;
  color: white;
}

.portadacoleccion-overlay{
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1.5;
}

.hero-coleccion.saona{
  background-image: url('/img/portada_saona.jpg');
}

.hero-coleccion.aiguablava{
  background-image: url('/img/portada_aiguablava.jpg');
}

.hero-coleccion.zahara{
  background-image: url('/img/portada_zahara.jpg');
}

.hero-coleccion.camelia{
  background-image: url('/img/portada_camelia.jpg');
}

.hero-coleccion.primula{
  background-image: url('/img/portada_primula.jpg');
}

.hero-coleccion.lirio{
  background-image: url('/img/portada_lirio.jpg');
}


.hero-coleccion .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.hero-coleccion h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 5.375em;
  margin: 0;
}

.hero-coleccion p {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.5em;
  margin: 0.5rem 0 0 0;
}

/* Layout principal */
.detalle-coleccion {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 5rem;
}

.col-info {
  flex: 1 1 50%;
  padding-top: 4rem;
  box-sizing: border-box;
}

.col-info h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 2em ;
}

.col-info .precio {
  font-weight: bold;
  margin-bottom: 2rem;
  font-size: 1.3em;
}

.col-info .descripcion {
  margin-bottom: 2rem;
  font-size: 1em;
}

.opciones-invitacion {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.opciones-invitacion figure {
  text-align: left;
  max-width: 300px;

}

.opciones-invitacion .tipo-invitacion{
  font-weight:500;
}

.opciones-invitacion img {
  width: 200px;
  height: auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  margin-bottom: 1rem;
}

.incluye h3,
.caracteristicas h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  margin-top: 3rem;
  font-size: 1.2em;
}

.incluye hr,
.caracteristicas hr {
  border: none;
  border-top: 1px solid #000;
  margin-top: 0.5rem;
}

.imagenes-incluye {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;

}

.imagenes-incluye img{
  margin-bottom: 1rem;
}

.imagenes-incluye figure {
  text-align: left;
  max-width: 200px;
}

.imagenes-incluye img {
  width: 100%;
  height: auto;
}

.caracteristicas ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

/* Imagen fija */
.col-imagen-fija {
  flex: 1 1 50%;
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: fit-content;
  padding-top: 2rem;
  box-sizing: border-box;
}

.col-imagen-fija img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.col-imagen-fija.imgRight{
  padding-left: 2rem;
}
.col-imagen-fija.imgLeft{
  padding-right: 2rem;
}

.presupuesto-form {
  padding-top: 2rem;
  padding-bottom: 3rem;
  font-family: 'Manrope', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.presupuesto-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

}

.presupuesto-form .form-group legend{
  font-size: 1rem;
  font-weight: 600;
}

.presupuesto-form label {
  font-weight: 600;
}

.presupuesto-form input[type="text"],
.presupuesto-form input[type="email"],
.presupuesto-form input[type="date"],
.presupuesto-form select,
.presupuesto-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 50px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  background-color: white;
}

/* Personaliza la flecha del select */
.presupuesto-form select {
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

/* Radio buttons y checkbox */
.presupuesto-form fieldset {
  border: none;
  padding: 0;
}

.presupuesto-form fieldset label {
  display: inline-flex;
  align-items: center;
  margin-right: 1.5rem;
  gap: 0.5rem;
  font-weight: 400;
}

.presupuesto-form input[type="radio"],
.presupuesto-form input[type="checkbox"] {
  accent-color: #000;
}

/* Área de texto */
.presupuesto-form textarea {
  border-radius: 2rem;
  resize: vertical;
}

/* Política de privacidad */
.presupuesto-form .check label {
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.presupuesto-form .check a {
  color: #000;
  text-decoration: underline;
}

/* Botón */
.presupuesto-form button {
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  background-color: #000;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.presupuesto-form button:hover {
  background-color: #333;
}

.error-message {
  color: #e63946;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.contacto{
  padding:200px 30px;
}

.contacto .content{
  padding-top: 0px;
}

.contacto .presupuesto-form{
  padding-top: 0px;
}

.contacto{
  background-color: #272726;
  color: white;
}

.contacto .presupuesto-form .check a{
  color:white;
}

#contacto-form input[type="text"]{
  background-color: #ffffff21;
  color:white;
}

#contacto-form input[type="email"]{
  background-color: #ffffff21;
  color:white;
}

#contacto-form input[type="date"]{
  background-color: #ffffff21;
  color:white;
}
#contacto-form select{
  background-color: #ffffff21;
  color:white;
}
#contacto-form presupuesto-form textarea{
  background-color: #ffffff21;
  color:white;
}

.contacto .presupuesto-form button{
  background-color: #FFBCF1;
  color:#272726;
}

.contacto .presupuesto-form button:hover{
  background-color: white;
}
/* SOBRE MI PORTADA */

.sobre-mi {
  width: 100vw;
  min-height: 100vh;
  background-color: #780145;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  box-sizing: border-box;
}


.sobre-mi .titulo {
  font-family: "marlide-display-variable", sans-serif;
  font-size: 18em;
  font-weight: 100;
  text-align: center;
  color: white;
}

.sobre-mi p{
  color:white;
  font-size: 1em;
}

/* Imagen en diagonal */
.foto-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  perspective: 1000px;
  margin-top: -110px;
}

.foto-sobre-mi {
  width: 400px;
  max-width: 80%;
  transform: rotate(-4deg);
  transition: transform 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.foto-sobre-mi:hover {
  transform: rotate(0deg);
}

/* Contenido a dos columnas */
.contenido {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.columna {
  flex: 1;
  font-size: 18px;
  line-height: 1.6;
}

/* Firma */
.firma {
  width: 200px;
  text-align: display;
  display: block;
  float: right;
  margin-top: 2em;
}

.firma img {
  max-width: 200px;
  height: auto;
}


/* SOBRE MI CARACTERÍSITICAS */

.caracteristicas {
  width: 100%;
}

.caracteristica {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.container-sobremi {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  width: 100%;
  align-items: center;
}

.aboutus h3 {
  grid-column: span 6;
  font-size: 2.4rem;
  font-weight: 500;
  margin:0px;
}

.aboutus .descripcion {
  grid-column: span 6;
  font-size: 1rem;
  line-height: 1.6;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

/* Estado activo
.caracteristica.active .titulo,
.caracteristica.active .descripcion {
  opacity: 1;
  transform: translateY(0);
}

.caracteristica.active .descripcion {
  max-height: 500px;
}*/

.divider {
  width: 100vw;
  height: 1px;
  background-color: #ddd;
}

/* -----404 -------*/

.pagina-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
  width: 100%;
  background-color: #f9f7f4; /* color neutro suave */
  padding: 2rem;
}


.pagina-404 .emoji {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.pagina-404 h1 {
  font-size: 6rem;
  margin: 0;
  font-weight: 700;
  color: #272726;
}

.pagina-404 p {
  font-size: 1.2rem;
  margin: 1rem 0 2rem;
  color: #272726;
}
.pagina-404 .btn{
  font-size: 1.2rem;
}

 #cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   max-width: 100%;
   background: #000000a9;
   padding: 20px;
   font-size: 15px;
   line-height: 1.5;
   z-index: 1000;
   display: none;
  font-family: "Manrope", sans-serif;
  color:white;
  backdrop-filter: blur(2px);     /* aplica blur al fondo */
  -webkit-backdrop-filter: blur(2px); /* soporte para Safari */
  
 }

#cookie-banner-content {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 10px;
}

#cookie-banner-content strong{
  font-size: 1.3em;
  margin-bottom: 14px;
  display: inline-block;
}

#cookie-banner-buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#cookie-banner-buttons button {
  background-color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

#cookie-banner-buttons button:hover {
  background-color: #f3f3f3;
  
}

#cookie-banner-buttons button.primary {
  background-color: #FFBCF1;
  color: rgb(0, 0, 0);
  
  
}

#cookie-banner-buttons button.primary:hover {
  background-color: #e19cd2;
  
}

@media (max-width: 600px) {
  #cookie-banner-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  #cookie-banner-buttons button {
    width: 100%;
  }
  .footer-logo{
    top:20px;
  }
  .footer{
    padding-bottom:0px
  }
}

/*-----PORTFOLIO------*/

.portfolio-grid {
  display: block;
  position:relative;
}

.grid-sizer, .portfolio-grid-item{
    width: 33.33%;
}

.portfolio-grid-item {
  float: left;
  padding: 0.5rem;
  box-sizing: border-box;
}

.portfolio-grid-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
  .portfolio-grid-item a:hover img {
    transform: scale(1.02);
  }

.portfolio-section{
  margin: 0 auto;
  margin-bottom: 8rem;
  padding: 2rem;
  max-width: 1200px;

}

.portfolio-section h2{
  text-align: center;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
  transition: opacity 0.3s ease;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.thankyou .content{
  max-width: 900px;
  display: inline-block;
  padding: 0px;
}

.thankyou .content h1{
  font-family: "marlide-display-variable", sans-serif;
  font-weight: 300;
  font-size: 3.375em;
  line-height: 1.1;
  margin-bottom: 3rem;
}

.thankyou .content h2{
  font-family: "Manrope", sans-serif;
  font-size: 2em;
  font-weight: 400;
  margin-bottom: 1rem;
}

.social-links-thankyou, .social-links-thankyou a{
  color: #f9a4e7 !important;
  text-decoration: none;
}
  .social-links-thankyou a:hover{
    text-decoration: underline;
  }






/* ---------MEDIAQUERIES ------------*/


@media (max-width: 1230px) {
  .seccion-image{
    width: 300px;
  }
}

@media (max-width: 991.98px) {
  .intro-line-global {
    display: none !important;
    width: 200px;
  }

}

@media (max-width: 992px) {
  .navbar-toggler{
    border: 0px;

  }

  .navbar-toggler:focus-visible {
    outline: none;
    border:0px;
  }

  .footer-left, .footer-right {
    display: none !important;
  }

  .footer-center{
    width:100%;
  }

  .footer-left,
  .footer-right {
    display: none;
  }

  .social-icons {
    display: none !important; /* Oculta iconos si se mostraban en hover */
  }

  .social-links-mobile {
    display: block;
  }

  .footer-center {
    text-align: center;
    padding: 0 1.5rem;
  }

  .footer a {
    display: inline;

  }

  .footer-container{
    padding: 0px;
  }

  .logo-footer{
    height:10.75rem;
  }

  .logo-header{
    display:none;
  }

  .about-image,
  .about-text {
    grid-column: 1 / -1;
  }

  .about-text{
    padding-left: 0px;
  }

  .about-content{
    margin-top: 1rem;
  }

  .hero-coleccion{
    height: 300px;
    margin-bottom: 2em;
  }

  .hero-coleccion h1{
    font-size: 3em;;
  }

  .col-imagen-fija.imgRight{
    padding:0px;
    padding-top: 2rem;
  }

  .col-imagen-fija.imgLeft{
    padding:0px;
    
  }

  .detalle-coleccion .col-info{
    flex:100%;
  }

  .col-imagen-fija{
    position: relative;
    padding-top: 0px;
  }

}


@media (min-width: 992px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 80px;
  }

  .footer-left,
  .footer-right {
    text-align: left;
    width: 20%;
  }

  .footer-center {
    width: 60%;
    text-align: center;
  }

}


@media (min-width: 768px) {
  .coleccion-card {
    flex: 1 1 calc(50% - 1rem);
  }
}

/* Tablet portrait */
@media screen and (min-width: 600px) and (max-width: 899px) and (orientation: portrait) {
  .listado-suenos{
    line-height: 4rem;
  }
    .listado-suenos li{
      margin-bottom: 20px;
    }

  .sobre-mi .titulo{
    font-size: 14em;
  }
}


@media (max-width: 768px) {

  .container{
    padding-left:30px;
    padding-right:30px;
  }

  .hero{
    height: 400px;
  }

  .logo-sobre-hero {
    bottom:-8px;
    width:93%;
  }

  .listado-suenos, .parallax-title {
    font-size: 2.1rem;
    line-height: 1em; /* Reducimos el tamaño de la tipografía en móviles */
    margin-bottom: 2.5rem;
  }

  .listado-suenos li{
    margin-bottom: 20px;
  }

  .seccion-parallax{
    height:300px;
    background-position: center center;
    background-size: auto;
  }

  .seccion-content {
    flex-direction: column;
    padding: 20px; /* Padding más pequeño en móviles */
    align-items: center;
    display: block;
  }

  .seccion-image {
    margin: 20px auto;
    max-width: 80%;
    display: block;
  }

  .texto-izquierda, .texto-derecha {

    font-size: 2em; /* Ajusta el tamaño del texto para móvil */
  }

  .texto-derecha {
    margin-top: 20px;
    line-height: 34px;
  }

  .container-contacto h2 {
    font-size: 2.5em;
  }

  .container-contacto p {
    font-size: 1em;
  }

  .cursor-circle {
    width: 80px;
    height: 80px;
    font-size: 0.75em;
  }

  .social-icons {
    display: flex !important;
  }

  .footer-right {
    position: static;
    padding: 0;
    align-items: center;
    margin-top: 1rem;
  }

  .follow-trigger {
    display: none;
  }

  .logo-footer{
    height:5.75rem;
  }

  .copyright{
    font-size: 1em;
  }

  .seccion-central,.seccion-suenos{
    padding: 3rem 0;
  }

  .seccion-exclusiva{
    padding-top: 4rem !important;
  }

  .seccion-contacto{
    padding: 30px 20px;
  }

  .coleccion-title {
    font-size: 3em; /* Reduce título en móviles */
  }

  .grid-container {
    grid-template-columns: 1fr;
  }

  .title {
    grid-column: 1 / -1;
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }

  .content {
    grid-column: 1 / -1;
    max-height: none;
    overflow: visible;
    padding: 0;
  }

  .step {
    flex-direction: row;
  }

  .step-icon {
    width: 50px;
  }

  grid {
    grid-template-columns: 1fr;
  }

  .about-title {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 2rem;
  }

  .about-title h1 {
    font-size: 3em;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .aboutus .grid{
    gap:0px;
  }

  .aboutus h3,  .aboutus .descripcion {
    grid-column: span 12;
    padding-top: 3rem;
  }

  .aboutus .descripcion {
    padding-top: 1rem;
  }



  .contenido {
    flex-direction: column;
    gap: 20px;
  }

  .titulo {
    font-size: 36px;
  }

  .foto-sobre-mi {
    width: 100%;
    max-width: 100%;
  }

  .firma {
    text-align: center;
  }

  .firma img {
    margin: 0 auto;
  }

  .col-info h2 {
    font-size: 1.5em;
  }
  .col-info .precio{
    font-size: 1.2em;
  }

  .seccion-intro{
    padding-bottom: 0px !important;
  }

  .coleccion-titulo{
    font-size: 2em;
  }

  .coleccion-precio{
    font-size: 1.2em;
  }

  .seccion-exclusiva h2{
    font-size: 2.6em;
    padding-top: 20px;
  }

   

   .seccion-exclusiva .btn-desktop{
    display:none !important;
   }

   .seccion-exclusiva .btn-mbl{
    display:block !important;
   }

   .seccion-exclusiva .btn-mbl .btn-custom{
    width: 100%;
   }

   .seccion-exclusiva .text-white{
    margin-top: 0px !important;
    margin-bottom: 2em;
   }
   
   .pt-200{
    padding-top: 120px !important;
   }
   
   .detalle-coleccion{
    padding-bottom: 2em;
   }

   .col-info{
    padding-top: 2em;
   }

   .opciones-invitacion{
    display: block;
   }

   .opciones-invitacion figure{
    width: 100%;
    margin:0 auto;
    margin-bottom: 2em;
   }

   .opciones-invitacion img{
    width: 100%;
   }

   .personalizada-hero-video .hero-texto h2{
      font-size: 3em;
   }

   .personalizada-hero-video{
    height: 40vh;
   }

   .process-container .title{
    padding-top: 0px;
    position: relative;
   }

   h2{
    font-size: 2.5em;
   }

   .intro-text, .coleccion-description{
    font-size: 1.1em;
    
  }

  .destacados{
    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  .grid-sizer, .portfolio-grid-item {
    width: 50%;
  }

  .sobre-mi .container{
    padding: 12px;
  }

  .sobre-mi .titulo{
    font-size: 6.5em;
    line-height: 0.8em;
    margin-top: 30px;
  }
  .foto-wrapper{
    margin-top: -8px;
  }

  .contacto{
    padding: 100px 12px 0px 12px;
  }

  .contacto .title{
    margin-bottom: 0px;
  }
  .legal-container{
    padding: 60px 0px;
  }

  .thankyou .content h1{
    font-size: 2.5em;
    margin-bottom: 2rem;
  }
  .thankyou .content h2{
    font-size: 1.5em;
    line-height: 1.2em;
  }


}
