/* font-family: "Plus Jakarta Sans", sans-serif;*/
/* Multiplicar los valores en píxeles de ilustrator por 0,873 */

/* GENERAL_______________________________________________ */

:root{
	/* TIPOGRAFÍA */
	
	font-family: "Plus Jakarta Sans", sans-serif;

	/* PALETA */

	--morado-harmony: #8359fa;
	--verde-harmony: #00bf7d;
	--rosa-harmony: #ff8df5;
	--oscuro-harmony: #201b24;
	--claro-harmony: #f0eeff;
	--negro-puro: #000000;
	--blanco-puro: #ffffff;

}

html {
	scroll-behavior: smooth;
  	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none;  /* IE y Edge */
}

*{
	box-sizing: border-box;
	cursor: none !important;
}

body{
	background-color: var(--claro-harmony);
	margin: 0;
	transition: background-color 0.3s ease;
	position: relative;
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
	display: none; /* Chrome, Safari y Opera */
}


/* PANTALLA DE CARGA🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️ */

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--morado-harmony);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

#contenido {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.subir {
    animation: slideUp 0.5s cubic-bezier(0.7, 0, 1, 1) forwards;
	animation-delay: 0.1s;
}

#lottie-logo {
    width: 40vw; 
    height: auto;
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

/* Barra de progreso ________________________________________________*/

#progress-bar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px; /* grosor de la barra */
  background: transparent;
  z-index: 9999;
}

#progress-bar {
  height: 100%;
  width: 0%;
  background: var(--verde-harmony); /* color de la barra */
  transition: width 0.1s ease-out;
}

/* CTA Búho 🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️*/


#cta-buho {
  position: fixed;
  right: calc(-350*((0.873px*0.2) + (0.045vw*0.8))); /* rama un poco fuera de pantalla */
  top: 80%;
  transform: translateY(-50%) scale(1);
  width: calc(600*((0.873px*0.2) + (0.045vw*0.8)));
  height: calc(300*((0.873px*0.2) + (0.045vw*0.8)));
  z-index: 999;
  cursor: pointer;
  transition: transform 0.7s ease, right 0.4s ease;
  pointer-events: auto;
}

#cta-buho.scroll-activo {
  transform: translateY(-170%) scale(2.5);
  right: -150px;
}



/* CURSOR🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️ */

#cursor-animado {
  position: fixed;
  width: 100px; /* Tamaño del cursor animado */
  height: 100px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

#click-humo {
  position: fixed;
  width: 120px;  /* ajusta al tamaño real de tu animación */
  height: 120px;
  pointer-events: none;
  z-index: 9998; /* justo debajo del cursor */
  display: none;
  /* CENTRAR desde el punto de clic */
  transform: translate(-50%, -50%);
}

/* HEADER ⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️*/

header{
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
	left: 0px;
	top: 0px;
	width: 100vw;
	padding: 20px;
	z-index: 199;
}

/* Logo header */

#logo-animado {
  width: 50px; 
  cursor: pointer;
}

.headerLogo{
	display: flex;
	justify-content: space-between;
	align-items: center;
	transform: translateY(-10px);
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none; /* evita que se pueda clicar cuando está oculto */
}

.headerLogo.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.headerLogo img{
	height: 49px;
	margin-left: 5px;
}

/* Menú de hamburguesa 🟰🟰🟰🟰🟰🟰🟰🟰🟰🟰🟰🟰🟰🟰🟰*/

.nav-menu {
  position: relative;
}

#menu-btn {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  top: 17px;
  right: 30px;
  z-index: 1000;
}

#menu-animado {
  width: 50px;
}

.menu-content {
  position: absolute;
  top: 50%;
  right: 25px;
  transform-origin: top right;
  transform: scale(0) translateY(-50%);
  background-color: white;
  border-radius: 15px;
  padding: 15px 20px;
  /* box-shadow: 4px 4px 0px 0px var(--morado-harmony); */
  display: flex;
  align-items: center;
  gap: 50px;
  transition: transform 0.3s cubic-bezier(0.9, 0, 0.1, 1);
}

.menu-content.active {
  transform: scale(1) translateY(-50%);
}

.menu-content ul {
  list-style: none;
  padding: 0;
  padding-right: 100px;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0;
  display: flex;
  gap: calc(100*((0.873px*0.2) + (0.045vw*0.8)));
}

.menu-content li a {
  text-decoration: none;
  color: var(--oscuro-harmony);
  font-size: 1rem;
  transition: color 0.2s ease;
}

.menu-content li a:hover {
  color: var(--morado-harmony);
}

.menu-content a.selected{
	color: var(--morado-harmony);
}

.menu-content a.idioma{
	width: 24px; /* tamaño final del círculo */
	height: 24px;
	/* display: inline-block; */
	display: none;
	background-color: var(--morado-harmony); /* opcional: fondo de respaldo */
	background-image: url('/ruta/a/tu-bandera.svg');
	background-size: cover;       /* o 'contain' si prefieres */
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	text-decoration: none;
	margin: 0 20px;
}

/* SECCIONES🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢 */

.S1,.S2,.S3,.S4,.S5,.S6,.S7{
	max-width: calc(1500*((0.873px*0.2) + (0.045vw*0.8)));
	margin: 0 auto;
}

main{
	margin-top: calc(130*((0.873px*0.2) + (0.045vw*0.8)));
}


/* TEXTOS🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢 */

h1{
	display: none;
}

h2{
	color: var(--morado-harmony);
	font-size: calc(90*((0.873px*0.4) + (0.045vw*0.6)));
	font-weight: 800;
	line-height: calc(100*((0.873px*0.4) + (0.045vw*0.6)));
	margin-top: 0;
}

h3{
	color: var(--morado-harmony);
	font-size: calc(72*((0.873px*0.4) + (0.045vw*0.6)));
	font-weight: 700;
	line-height: calc(80*((0.873px*0.4) + (0.045vw*0.6)));
	margin: calc(50*((0.873px*0.4) + (0.045vw*0.6))) 0;
}

h4{
	color: var(--verde-harmony);
	font-size: calc(42*((0.873px*0.4) + (0.045vw*0.6)));
	font-weight: 500;
	margin: calc(30*((0.873px*0.4) + (0.045vw*0.6))) 0 calc(20*((0.873px*0.4) + (0.045vw*0.6)));
}

h5{
	color: var(--oscuro-harmony);
	font-size: calc(40*((0.873px*0.4) + (0.045vw*0.6)));
	font-weight: 400;
	margin: 0;
}

P{
	color: var(--oscuro-harmony);
	font-size: calc(24*((0.873px*0.4) + (0.045vw*0.6)));
	margin: 0;
	margin-bottom: calc(20*((0.873px*0.4) + (0.045vw*0.6)));
}

/* BOTONES 🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢 */

button{
	border: none;
}

button:hover{
	cursor: pointer;
}

.boton{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	color: var(--blanco-puro);
	font-size: calc(36*((0.873px*0.4) + (0.045vw*0.6)));
	text-decoration: none;
	padding: 20px calc(70*((0.873px*0.4) + (0.045vw*0.6)));
	background-color: var(--verde-harmony);
	border-radius: calc(25*((0.873px*0.4) + (0.045vw*0.6)));
	height: calc(87*((0.873px*0.4) + (0.045vw*0.6)));

	position: relative;
	z-index: 2;
}

.nube-hover {
  position: absolute;
  width: 900%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1; /* Debajo del botón */
  pointer-events: none;
}

.boton-wrapper {
  position: relative;
  display: inline-block;
}

.boton-wrapper-2 {
  position: relative;
  display: none;
}

/* CONTENEDORES 🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢 */

ul{
	padding-left: calc(0*((0.873px*0.4) + (0.045vw*0.6)));
}

li{
	list-style: none;
}

.flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* SECCIÓN 1 (Hero) 1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣ */

.S1{
	margin-top: 0px;
	position: relative;
}

.S1 .flex{
	margin-top: calc(250*((0.873px*0.4) + (0.045vw*0.6)));
}

#ver-reel {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  z-index: 100;
}

/* SECCIÓN 2 (Candelabro) 2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣ */

.S2{
	margin-top: calc(200*((0.873px*0.4) + (0.045vw*0.6)));
	margin-bottom: 50px;
	position: relative;
}

.S2 .separador{
	display: flex;
}

.S2 div .parrafosS2{
	width: calc(500*((0.873px*0.4) + (0.045vw*0.6)));
}

.S2 h3{
	width: calc(870*((0.873px*0.4) + (0.045vw*0.6)));
}

#candelabro{
	position: absolute;
	width: calc(550*((0.873px*0.2) + (0.045vw*0.8)));
	height: calc(550*((0.873px*0.2) + (0.045vw*0.8)));
}

/* El color del que se vuelve el fondo al apagar el candelabro */
body.fondo-negro {
  background-color: var(--oscuro-harmony);
  color: var(--oscuro-harmony); /* si se usa currentColor */
  transition: background-color 0.7s ease;
}

body.fondo-negro p{
	color: var(--claro-harmony);
	transition: color 0.7s ease;
}

body.fondo-negro li span{
	color: var(--claro-harmony);
	transition: color 0.7s ease;
}

body.fondo-negro .conteneReview{
	background-color: var(--negro-puro);
	transition: background-color 0.7s ease;
}

#separadorHero {
  color: var(--claro-harmony);
  transition: color 0.3s ease;
}

#separadorHero.fondo-negro {
  color: var(--oscuro-harmony) !important; /* si se usa currentColor */
  transition: color 0.7s ease;
}

#candelabro{
	position: absolute;
	left: calc(1770*(0.045vw*0.6));
	bottom: calc(-30*((0.873px*0.4) + (0.045vw*0.6)));
}

/* SECCIÓN 3 (Cómo lo hago) 3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣ */

.S3{
	padding-bottom: 50px;
	margin-top: 100px;
}

.flechaAnimada{
	width: calc(60*((0.873px*0.4) + (0.045vw*0.6)));
	flex-shrink: 0; /* Evita que la flecha se haga pequeña */
	margin-top: calc(25*((0.873px*0.4) + (0.045vw*0.6)));
}

.titulo-con-flecha{
	display: flex;
	align-items: center;
	gap: calc(20*((0.873px*0.4) + (0.045vw*0.6)));
}

.pasos{
	display: grid;
	width: 100%;
	grid-template-columns: repeat(2, 1fr); /* 2 columnas de igual ancho */
	grid-template-rows: repeat(3, auto);   /* 3 filas, alto automático */
	gap: 20px 60px; /* Separación entre elementos (horizontal y vertical) */
}

.S3 p{
	padding-left: calc(45*((0.873px*0.4) + (0.045vw*0.6)));
	width: 90%;
}

/* SECCIÓN 4 (Mini protfolio)4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣ */

/* Video */

.conteneVideo {
  position: relative;
  width: 80%;
  max-width: calc(1500*((0.873px*0.4) + (0.045vw*0.6)));
  padding-top: 37%; /* Proporción */
  overflow: hidden;
  border-radius: calc(30*((0.873px*0.4) + (0.045vw*0.6)));
  margin: 0 auto;
}

.conteneVideo video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center;
}

video.modo-fullscreen {
  object-fit: contain !important;
  background-color: black; /* opcional para rellenar los bordes */
}

.contenedor li p{
	width: 73%;
	max-width: calc(1450*((0.873px*0.4) + (0.045vw*0.6)));
	margin: 0 auto;
	margin-bottom: 10px;
	font-size: calc(18*((0.873px*0.4) + (0.045vw*0.6)));
}

.contenedor ul:active{
	cursor: grabbing;
}

/* Pasar video */

.cambiaCartas{
	margin-bottom: 45px;
}

.swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	background: var(--morado-harmony);
	opacity: 0.2;
}

.swiper-pagination-bullet-active{
	background-color: var(--verde-harmony);
	opacity: 1;
}

.swiper-slide-button{
	color: var(--verde-harmony);
}

/* Enlaces portfolio */

.enlacesPortfolio{
	display: flex;
	width: 100%;
	justify-content: space-between;
	margin-top: calc(50*((0.873px*0.4) + (0.045vw*0.6)));;
	align-items: first baseline;
}

.botonPortfolio{
	font-size: calc(32*((0.873px*0.4) + (0.045vw*0.6)));
	color: var(--verde-harmony);
}

.botonPortfolio:hover{
	color: var(--rosa-harmony);
}

/* SECCIÓN 5 (Otros servicios)5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣ */

.S5{
	margin-bottom: 150px;
}

.S5 h3{
	margin-top: 0;
}

.servicios{
	display: flex;
	justify-content: space-between;
	position: relative;
}

.contenedor-bola{
	position: relative;
	display: flex;
	justify-content: center;
}

.contenedor-bola img{
	position: absolute;
	z-index: 99;
	width: 451px;
	bottom: -85px;
	transform: translateY(4.5%);
}

.servicios li {
  font-size: calc(36*((0.873px*0.3) + (0.045vw*0.7)));
  margin-bottom: calc(70*((0.873px*0.3) + (0.045vw*0.7)));
  cursor: pointer;
  transition: all 0s;
  position: relative;
  z-index: 10;
  color: var(--oscuro-harmony);
}

.servicios li.activo {
  color: var(--blanco-puro);
  transition: all 0.2s;
}

.bola {
  width: 632px;
  height: 632px;
  border-radius: 50%;
  background-color: var(--rosa-harmony); 
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.bola video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.nube-hover {
  position: absolute;
  left: -18%;
  top: 20%;
  transform: translateY(-40%);
  width: 135%;
  z-index: -10;
  pointer-events: none;
}

.servicios .nube-hover {
  position: absolute;
  left: -18%;
  top: 20%;
  transform: translateY(-40%);
  width: 100%;
  z-index: -10;
  pointer-events: none;
}

.nube-hover-mini {
  position: absolute;
  left: -11%;
  top: 20%;
  transform: translateY(-40%);
  width: 40%;
  z-index: -10;
  pointer-events: none;
}

.nube-hover-larga {
  position: absolute;
  left: -18%;
  top: 20%;
  transform: translateY(-40%);
  width: 135%;
  z-index: -10;
  pointer-events: none;
}



/* SECCIÓN 6 (Reviews)6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣ */

.conteneReview{
	user-select: none;
	background-color: var(--blanco-puro);
	width: calc(550*((0.873px*0.4) + (0.045vw*0.6)));
	height: calc(450*((0.873px*0.4) + (0.045vw*0.6)));
	padding: calc(60*((0.873px*0.4) + (0.045vw*0.6)));
	padding-top: calc(40*((0.873px*0.4) + (0.045vw*0.6)));
	border-radius: calc(25*((0.873px*0.4) + (0.045vw*0.6)));
	margin: 0 auto;
}

.nombre{
	font-size: calc(36*((0.873px*0.4) + (0.045vw*0.6)));
	font-weight: 500;
	margin-bottom: 3px;
}

.puesto{
	font-size: calc(20*((0.873px*0.4) + (0.045vw*0.6)));
	color: var(--morado-harmony);
	margin-bottom: calc(20*((0.873px*0.4) + (0.045vw*0.6)));
}

.review{
	font-size: calc(24*((0.873px*0.4) + (0.045vw*0.6)));
	font-style: italic;
}

.contenedorTestimonios ul:active{
	cursor: grabbing;
}

.contenedorTestimonios{
	padding-bottom: calc(34*((0.873px*0.4) + (0.045vw*0.6)));
	margin-bottom: 100px;
	margin-top: 70px;
}


/* SECCIÓN 7 (Formulario)7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️ */

.S7{
	display: flex;
	flex-direction: column;
	margin-bottom: calc(300*((0.873px*0.4) + (0.045vw*0.6)));
}

.S7 h2{
	width: calc(900*((0.873px*0.4) + (0.045vw*0.6)));
}

.S7 form{
	margin-top: calc(200*((0.873px*0.4) + (0.045vw*0.6)));
}

#formulario input, #formulario textarea{
	all: unset;
	box-sizing: border-box;
	background-color: var(--blanco-puro);
	width: 100%;
	border: none;
	border-radius: calc(25*((0.873px*0.4) + (0.045vw*0.6)));
	margin-top: calc(10*((0.873px*0.4) + (0.045vw*0.6)));
	margin-bottom: calc(30*((0.873px*0.4) + (0.045vw*0.6)));
	padding: calc(20*((0.873px*0.4) + (0.045vw*0.6)));
}

#formulario input:focus, #formulario textarea:focus{
	outline: 2px solid var(--morado-harmony);
}

#formulario input:valid{
	outline: 2px solid var(--verde-harmony);
	background-color: var(--blanco-puro);
}

#formulario input:-webkit-autofill,
#formulario textarea:-webkit-autofill{
	box-shadow: 0 0 0 1000px var(--blanco-puro) inset;
}

#formulario input:not(:placeholder-shown),
#formulario textarea:not(:placeholder-shown) {
  background-color: var(--blanco-puro);
}


#formulario textarea{
	max-width: 100%;
	min-width: 100%;
	min-height: 200px;
}

#formulario label{
	color: var(--morado-harmony);
	padding-left: calc(20*((0.873px*0.4) + (0.045vw*0.6)));
	margin-top: 100px;
}

.enlacesPortfolio h5{
	width: 35%;
	font-size: calc(34*((0.873px*0.4) + (0.045vw*0.6)));
}

.S7 .enlacesPortfolio{
	align-items: center;
}

/* Placeholders */

input::placeholder,
textarea::placeholder {
  /* Estándar moderno */
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--morado-harmony);
  opacity: 0.5;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* Chrome, Safari, Opera */
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--morado-harmony);
  opacity: 0.5;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 4-18 */
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--morado-harmony);
  opacity: 0.5;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--morado-harmony);
  opacity: 0.5;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--morado-harmony);
  opacity: 0.5;
}

/* FOOTER ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ */

footer{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--morado-harmony);
	padding: 50px;
	margin-top: calc(100*((0.873px*0.4) + (0.045vw*0.6)));
}

footer ul{
	margin: 0;
	color: var(--claro-harmony);
	text-align: center;
}

footer img{
	height: 55px;
}

.redesSociales{
	min-width: 255px;
	display: flex;
	justify-content: end;
}

.redesSociales img{
	padding-left: 30px;
}

.redesSociales a:hover{
	all: unset;
	cursor:pointer;
}

footer a:link{
		color: var(--claro-harmony);
		text-decoration: none;
}

footer a:hover{
		color: var(--claro-harmony);
		text-decoration: underline;
}

footer a:visited{
	color: var(--claro-harmony);
	text-decoration: none;
}

























/* 🍊🍊🍊🍊🍊🍊🍊🍊🍊🍊🍊MEDIA Q 1🍊🍊🍊🍊🍊🍊🍊🍊🍊🍊🍊🍊 */

@media screen and (max-width: 1700px) {
  /* LOGO HEADER*/

	.headerLogo img{
		display: none;
	}

	/* Búho*/

	#cta-buho.scroll-activo {
		transform: translateY(-190%) scale(2.5);
		right: -190px;
	}


	/* BOLA MÁGICA*/

	.bola {
	  width: 450px;
	  height: 450px;
	}

	.contenedor-bola img{
		width: 351px;
		transform: translateY(-16.4%);
	}
}






















/* 🍓🍓🍓🍓🍓🍓🍓🍓🍓🍓🍓MEDIA Q 2🍓🍓🍓🍓🍓🍓🍓🍓🍓🍓🍓🍓🍓 */

@media screen and (max-width: 992px) {

	*{
		cursor: pointer !important;
	}

	html, body {
		width: 100%;
		max-width: 100%; /* Obliga a que el límite sea el ancho de la pantalla */
		overflow-x: hidden !important; /* El important fuerza la prioridad */
		position: relative; 
	}


  	/* PANTALLA DE CARGA🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️ */

	#loader {
		width: 100%;
		height: 100%;
	}
	#lottie-logo {
		width: 70vw; 
	}

	/* Barra de progreso */

	#progress-bar-container {
		height: 10px; /* grosor de la barra */
	}

	/* CTA Búho 🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️*/


	#cta-buho {
        /* Deja de seguir a la pantalla y se ancla al final de la web */
        position: absolute !important; 
        
        /* Anulamos el top y usamos bottom para pegarlo abajo */
        top: auto !important; 
        bottom: 470px !important; /* 👈 Cambia esto para subirlo o bajarlo respecto al footer */
        
        /* Recuperamos tu configuración exacta para esconder la rama y el tamaño */
        right: -90px !important; 
        transform: scale(3) !important; 
    }

    /* Anulamos la clase scroll-activo en móvil para evitar que JS intente moverlo */
    #cta-buho.scroll-activo {
        /* Mantenemos exactamente los mismos valores para que no dé "saltos" */
        right: -210px !important;
        transform: scale(1.8) !important;
        bottom: 100px !important; /* Debe ser igual al de arriba */
    }

	/* CURSOR🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️🅾️ */

	#cursor-animado {
		display: none;
	}

	/* BOTONES 🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢 */

	.boton{
		box-sizing: content-box;
		display: flex;
		justify-content: center;
		text-align: center;
		align-self: center;
		font-size: 26px;
		padding: 15px 40px;
	}

	.hablemos{
		padding: 25px 40px;
		width: 300px;
	}

	.boton-wrapper-2 {
		display: inline-block;
		margin-top: 140px;
	}

	.cambiar{
		display: none;
	}

	/* SECCIONES🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢 */

	.S1,.S2,.S3,.S4,.S5,.S6,.S7{
	max-width: 90%;
	margin: 0 auto;
	}

	/* TEXTOS🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢🟢 */

	h2{
		font-size: 200%;
		line-height: 110%;
		text-align: center;
		max-width: 610px;
	}

	h3{
		font-size: 250%;
		line-height: 110%;
		max-width: 610px;
	}

	h4{
		display: inline-block;
		font-size: 150%;
		font-weight: 600;
		max-width: 610px;
	}

	h5{
		font-size: 150%;
		max-width: 610px;
	}

	P{
		font-size: 110%;
		max-width: 500px;
	}


	/* HEADER ⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️*/

	header{
		padding-top: 30px;
		width: 100%;
		background-color: var(--claro-harmony);
		transition: background-color 0.3s ease;
	}

	.headerLogo {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  	}

	/* El color del que se vuelve el fondo al apagar el candelabro */
	header.fondo-negro {
	background-color: var(--oscuro-harmony);
	transition: background-color 0.7s ease;
	}
	
	/* Menú de hamburguesa 🟰🟰🟰🟰🟰🟰🟰🟰🟰🟰🟰🟰🟰🟰🟰*/

	.menu-content ul {
		flex-direction: column;
	}

	.menu-content.active {
  	transform: scale(1) translateY(-10%);
	}

	.headerLogo img{
		display: block;
		height: 40px;
		margin-left: 5px;
	}

	.headerLogo #logo-animado{
		height: 45px;
	}

	/* Menú de hamburguesa */

	#menu-btn {
  		top: 28px;
	}

	.menu-content.active {
  		transform: scale(1) translateY(-7%);
	}

	.menu-content li a {
  		font-size: 1.4rem;
	}

	/* SECCIÓN 1 (Hero)1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣1️⃣ */

	.S1{
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 90px;
	}

	.S1 h2{
		font-size: 250%;
	}

	.S1 h2 br{
		display: none;
	}

	.S1 h5{
		margin-bottom: 30px;
		margin-top: 19rem;
		font-size: 150%;
	}	

	.S1 .flex{
		flex-direction: column;
		margin-top: 270px;
		justify-content: center;
		align-items: center;
	}

	/* SECCIÓN 2 (Candelabro) 2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣2️⃣ */

	.S2{
		margin-top: 75px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.S2 h3{
		width: 100%;
		max-width: 500px;
	}

	.S2 .separador{
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.S2 div .parrafosS2{
		width: 100%;
		max-width: 500px;
	}

	#candelabro{
		position: inherit;
		margin-top: 30px;
		width: 70%;
		max-width: 600px;
		height: auto;
	}

	
	/* El color del que se vuelve el fondo al apagar el candelabro */
	body.fondo-negro {
	background-color: var(--oscuro-harmony);
	transition: background-color 0.7s ease;
	}	

	/* SECCIÓN 3 (Cómo lo hago) 3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣3️⃣ */
	
	.S3{
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-top: 100px;
	}

	.S3 h3{
		margin: 0;
		width: 100%;
		max-width: 500px;
	}

	.S3 ul{
		width: 100%;
	}

	.S3 li{
		display: flex;
		flex-direction: column;
		align-items: left;
	}

	.S3 p{
		padding-left: 0;
		text-align: left;
	}

	.flechaAnimada{
		display: none;
	}

	.titulo-con-flecha{
		flex-direction: column;
	}

	.pasos{
		grid-template-columns: repeat(1, 1fr); /* 2 columnas de igual ancho */
		gap: 20px 60px; /* Separación entre elementos (horizontal y vertical) */
	}
	
	/* SECCIÓN 4 (Mini protfolio)4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣4️⃣ */
	.S4{
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 80px;
	}
	
	/* Video */

	.conteneVideo {
		padding-top: 50dvh; /* Proporción */
	}

	.swiper-slide-button{
		display: none;
	}

	/* Enlaces portfolio */

	.enlacesPortfolio{
		flex-direction: column;
		align-content: center;
		justify-content: center;
		margin-top: 20px;
	}

	.botonPortfolio{
		font-size: 20px;
		text-align: center;
		padding-bottom: 30px;
	}

	/* SECCIÓN 5 (Otros servicios)5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣5️⃣ */

	.S5{
		margin-top: 45px;
		margin-bottom: 100px;
		display: flex;
		flex-direction: column;
		align-content: center;
	}

	.S5 h3{
		align-self: center;
		margin: 0;
		margin-bottom: 15px;
		text-align: center;
	}

	.servicios{
		display: flex;
		flex-direction: column;
		align-content: center;
		position: relative;
	}

	.contenedor-bola img{
		width: 70%;
		max-width: 300px;
		right: 50%;
		top: 338px;
		transform: translateX(50%);
	}

	.servicios ul{
		display: flex;
		flex-direction: column;
		align-content: center;
	}

	.servicios li{
		font-size: 125%;
		align-self: center;
		padding-bottom: 0px;
	}

	.bola {
		width: 360px;
		height: 360px;
		align-self: center;
	}


	.servicios .nube-hover {
		left: -18%;
		top: 20%;
		transform: translateY(-40%);
		width: 135%;
	}

	.nube-hover-mini {
		left: -48%;
		top: 20%;
		transform: translateY(-40%);
		width: 200%;

	}

	a.boton{
		font-size: 130%;
		padding: 10px 35px;
	}




	/* SECCIÓN 6 (Reviews)6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣6️⃣ */

	.S6{
		display: flex;
		flex-direction: column;
		align-content: center;	
	}

	.S6 h3{
		align-self: center;
		width: 85%;
	}

	.conteneReview{
		display: flex;
		flex-direction: column;
		justify-content: center;
		user-select: none;
		width: 85%;
		height: 300px;
		box-shadow: 7px 7px 20px -15px var(--morado-harmony);
	}

	.nombre{
		font-size: 150%;
		font-weight: 500;
		line-height: 28px;
	}

	.puesto{
		font-size: 100%;
		margin-bottom: 20px;
	}

	.review{
		font-size: 90%;
	}

	.contenedorTestimonios{
		padding-bottom: 40px;
		margin-bottom: 100px;
		margin-top: 30px;
	}

	/* SECCIÓN 7 (Formulario)7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️⃣7️ */

	.S7{
		margin-bottom: 375px;
	}
	
	.S7 h2{
		width: 90%;
		font-size: 250%;
		margin: 0 auto;
	}

	.S7 h5{
		width: 100%;
		padding-bottom: 40px;
	}

	.S7 .enlacesPortfolio{
		margin-top: 0;
	}

	/* FOOTER ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ */
	footer{
		flex-direction: column;
		gap: 30px;
	}

	.redesSociales{
		justify-content: center;
	}


}