@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sixtyfour&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black--: #000;
  --white--: #f5f5f5;
  --purple--: #8a6cff;
  --dark-gray--: #1c1c1c;
  --gray--: #bdbdbd;
  --blue--: #5de6de;
  --font-body--: "Poppins", sans-serif;
  --font-title--: "Sixtyfour", sans-serif;
}


body {
  
  font-family: var(--font-body--);
  background-color: var(--black--);
  color: var(--white--);
  overflow-x: hidden;
}

ul { list-style: none; }

a {
  color: var(--blue--);
  font-size: 0.95rem;
  text-decoration: none;
}

a:hover {
  color: var(--purple--);
  text-shadow: 0 0 8px rgba(138, 108, 255, 0.6);
}

h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

h3 { font-size: 1.5rem; }

h1, h2, h3 {
  font-family: var(--font-title--);
  letter-spacing: 1px;
  color: var(--purple--);
}

strong { color: var(--blue--); }

p {
  color: #ccc;
  font-size: 1.1rem;
}

section { text-align: center; }

/* LOADER */
#loader {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url("../imagenes/fox.gif") 50% 50% no-repeat;
  background-size: 12rem;
}

#content {
  display: none;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 40px;
  position: fixed;
  z-index: 100;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  background-image: none;
}
.logo img { height: 4rem; }

nav {
  display: flex;
  justify-content: flex-end;
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav li {
  position: relative;
}

nav a {
  color: var(--white--);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
  color: var(--purple--);
  transform: scale(1.05);
}

/* SUBMENÚ */
.submenu {
  position: absolute;
  top: 100%;
  background-color: rgba(20, 20, 20, 0.95);
  display: none;
  flex-direction: column;
  min-width: 180px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.submenu li a {
  color: var(--white--);
  padding: 0.8rem 1.2rem;
  display: block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.submenu li a:hover {
  background-color: var(--blue--);
  color: var(--dark-gray--);
}

.mostrar-submenu:hover > .submenu { display: flex; }

/* BOTÓN VOLVER ARRIBA */
#btnTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  background-color: var(--purple--);
  color: var(--white--);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease, background-color 0.3s ease;
  z-index: 999;
}

#btnTop svg { width: 24px; }

#btnTop:hover {
  transform: scale(1.1);
  background-color: #c3a3ff;
}

#btnTop.show {
  opacity: 1;
  visibility: visible;
}

/* SLIDER */
.banner {
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 1s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    cursor: pointer;
    filter: brightness(50%);
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    width: 90%;
    max-width: 800px;
}

.slide-text p {
    font-family: var(--font-title--);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: 1px;
    
    opacity: 0;
    animation: fadeInText 1s ease forwards;
    line-height: 1.2;
    word-wrap: break-word;
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MAIN */
main {
  background: var(--black--);
  padding: 7rem 15rem;
  text-align: center;
}

/* INTRO */
.intro {
  padding: 6rem 2rem;
  background: var(--black--);
}

.intro p {
  color: var(--gray--);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* CATEGORÍAS */
.categorias {
  padding: 5rem 2rem;
  background: var(--black--);
  color: var(--white--);
}

.categorias p {
  margin: 3rem;
}

.categorias-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.categoria {
  background-color: rgba(30, 30, 30, 0.9);
  border-radius: 14px;
  overflow: hidden;
  width: 260px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
  perspective: 800px;
}

.categoria img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(0.8) contrast(1.1);
  transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
  backface-visibility: hidden;
  position: relative;
  z-index: 1;
}

.categoria h3 {
  font-size: 1.2rem;
  margin: 1.2rem 0;
  transition: color 0.3s ease;
}

.categoria::before {
  content: "Ver más →";
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: var(--white--);
  background: rgba(123, 79, 255, 0.9);
  transform: rotateY(90deg);
  backface-visibility: hidden;
  transition: transform 0.6s ease, opacity 0.4s ease;
  opacity: 0;
  font-size: 1.2rem;
  letter-spacing: 1px;
  border-radius: 14px;
  z-index: 2;
}

.categoria:hover::before {
  transform: rotateY(0deg);
  opacity: 1;
}

.categoria:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(138, 108, 255, 0.3);
}

.categoria:hover img {
  transform: scale(1.08);
  filter: brightness(0.6) contrast(1.2);
}

.categoria:hover h3 {
  color: var(--white--);
}

/* SECCIONES PREVIEW */
.preview {
  padding: 5rem 2rem;
  background: linear-gradient(to bottom, #0a0a0a, var(--black--));
  color: var(--white--);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.preview p {
  max-width: 750px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  color: var(--gray--);
  font-weight: 300;
}

/*PARALLAX*/
.parallax {
  height: 600px;
  width: 100vw;
  margin-left: calc(-1 * 15rem);
  margin-right: calc(-1 * 15rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  color: var(--white--);
  padding: 2rem 3rem;
  border-radius: 12px;
  max-width: 700px;
  text-align: center;
}

.parallax-content h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.parallax-content p {
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-family: var(--font-title--);
  margin-bottom: 1.2rem;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
}

.parallax-content a {
  font-size: 1.8rem;
}

.parallax-content cite {
  display: block;
  font-size: 1.1rem;
  color: var(--purple--);
  font-style: normal;
  letter-spacing: 1px;
}

.parallax-1 {
  background-image: url('../imagenes/parallax_img.webp');
}

.parallax-2 {
  background-image: url('../imagenes/parallax_img2.webp');
  height: fit-content;
}

.parallax-2 .parallax-content p{
  font-family: var(--font-body--);
}

.parallax-3 {
  background-image: url('../imagenes/muna.webp');
}

.parallax-3 .parallax-content h2{
  color: var(--blue--);
}

.parallax-3 .parallax-content p{
  font-family: var(--font-body--);
}

/* GALERIA */
.galeria-preview, .galeria-categoria {
  padding: 6rem 5%;
  background-color: var(--black--);
  color: var(--white--);
  text-align: center;
}

.galeria-preview .contenedor-texto {
  max-width: 750px;
  margin: 0 auto 3rem;
}

.galeria-preview p, .galeria-categoria p {
  line-height: 1.7;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  justify-items: center;
  align-items: center;
  margin: 2rem auto 0;
  max-width: 80%;
}

.galeria-item {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.galeria-item:nth-child(1),
.galeria-item:nth-child(3),
.galeria-item:nth-child(5),
.galeria-item:nth-child(7) {
  transform: translateY(-20px);
}

.galeria-item:nth-child(2),
.galeria-item:nth-child(4),
.galeria-item:nth-child(6),
.galeria-item:nth-child(8) {
  transform: translateY(20px);
}

.galeria-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* GALERÍA EN CATEGORIAS */
.galeria-categoria {
  padding: 6rem 0;
}

.galeria-categoria .galeria-grid{
  max-width: 100%;
}

.galeria-categoria-item {
  margin-bottom: 1.2rem;
  overflow: hidden;
  border-radius: 12px;
  opacity: 0;
  transform: scale(0.9) translateY(30px);
  transition: all 0.7s ease;
  display: inline-block;
  width: 100%;
}

.galeria-categoria-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.galeria-categoria-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.8);
}

.galeria-categoria-item.show {
  opacity: 1;
  transform: scale(1) translateY(0);
}

@keyframes fadeInContainer {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* EQUIPO */
.btn-muna {
  display: inline-block;
  background-color: var(--purple--);
  color: var(--white--);
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  border-radius: 50px;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(138, 108, 255, 0.4);
}

.btn-muna:hover {
  transform: scale(1.1);
  background-color: #a58fff;
  box-shadow: 0 0 25px rgba(163, 134, 255, 0.6);
}

.muna-section {
  padding: 100px 10%;
  text-align: center;
}

.muna-section p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FAQ */
.faq-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 0 12px rgba(138, 108, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(138, 108, 255, 0.25);
}

.faq-question {
  font-family: var(--font-title--);
  color: var(--purple--);
  font-size: 1.3rem;
  cursor: pointer;
  position: relative;
  padding-right: 25px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--purple--);
  transition: transform 0.3s ease;
}

.faq-question.open::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #ccc;
  font-family: var(--font-body--);
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 0.8rem;
  opacity: 0;
  transition: all 0.4s ease;
}

.faq-answer.open {
  max-height: 400px;
  opacity: 1;
}

/* BLOG */
.blog-section {
  padding: 120px 20px 100px;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.blog-section > p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #ccc;
  max-width: 750px;
  margin: 0 auto 70px;
  padding: 0 10px;
  font-family: var(--font-body--);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-content {
  padding: 30px 25px;
  text-align: left;
}

.blog-content h3 {
  color: var(--blue--);
  font-size: 1.4rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 1rem;
  color: var(--gray--);
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn-read {
  display: inline-block;
  padding: 10px 24px;
  background: var(--purple--);
  color: var(--white--);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-read:hover {
  background: #ffd6e0;
  color: #111;
  transform: translateY(-2px);
}

.blog-entrada {
    padding: 7rem 15rem;
    color: var(--white--);
    text-align: center;
}

.blog-entrada h1 {
    font-family: var(--font-body--);
    color: var(--purple--);
    text-shadow: 0 0 10px rgba(138, 108, 255, 0.4);
}

.blog-entrada img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(138, 108, 255, 0.3);
    margin-bottom: 3rem;
}

.blog-entrada h2 {
    font-family: var(--font-title--);
    color: var(--blue--);
    margin: 3rem 0 1.5rem;
}

.blog-entrada p {
    color: var(--gray--);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 30px auto;
    padding-bottom: 56.25%;
}

.video-container iframe {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.divider {
    height: 3px;
    background: linear-gradient(90deg, var(--purple--), var(--blue--), var(--purple--));
    margin: 4rem auto;
    animation: moveGradient 4s linear infinite;
}

.lista-sketchbook {
    padding-left: 0;
    text-align: left;
}

.lista-sketchbook li {
    margin-bottom: 10px;
}

@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* CONTACTO */
.contacto-form {
  padding: 0 0 6rem;
  background: var(--black--);
  color: var(--white--);
  display: flex;
  justify-content: center;
}

.form-contenedor {
  max-width: 700px;
  width: 100%;
  background-color: rgba(30, 30, 30, 0.9);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(138, 108, 255, 0.15);
  animation: fadeInContainer 1s ease forwards;
}

.campo {
  margin-bottom: 1.5rem;
  text-align: left;
}

.campo label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--purple--);
}

.campo input,
.campo textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid var(--blue--);
  border-radius: 10px;
  background-color: #1a1a1a;
  color: var(--white--);
  font-size: 1rem;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.campo input:focus,
.campo textarea:focus {
  box-shadow: 0 0 10px rgba(138, 108, 255, 0.6);
}

.campo textarea {
  resize: none;
}

/* AVISO Y PRIVACIDAD */
.legal-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(120, 80, 200, 0.2);
    color: #eaeaea;
    font-family: "Jost", sans-serif;
    line-height: 1.8;
}

.legal-section h1 {
    font-size: 2.5rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(180, 120, 255, 0.4);
}

.legal-section h2 {
    font-size: 1.6rem;
    margin-top: 35px;
    border-left: 4px solid var(--blue--);
    padding-left: 10px;
}

.legal-section p {
    color: var(--gray--);
    margin-bottom: 20px;
}

.legal-section a {
    color: var(--blue--);
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* ERROR 404 */
.error-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90vh;
  background: radial-gradient(circle at center, rgba(15, 15, 15, 1) 0%, rgba(5, 5, 5, 1) 100%);
  color: var(--white--);
  text-align: center;
  font-family: var(--font-title--);
  position: relative;
  overflow: hidden;
}

.error-container h1 {
  font-size: 7rem;
  color: var(--purple--);
  text-shadow: 0 0 20px rgba(138, 108, 255, 0.6);
  z-index: 2;
  animation: flicker 3s infinite;
  position: relative;
}

/* Capas del glitch */
.error-container h1::before,
.error-container h1::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  color: inherit;
  text-shadow: none;
  mix-blend-mode: screen;
}

/* Colores del glitch */
.error-container h1::before {
  color: #00fff9;
  animation: glitchBefore 2.5s infinite linear alternate-reverse;
}

.error-container h1::after {
  color: #ff00ff;
  animation: glitchAfter 2.5s infinite linear alternate-reverse;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.5; }
}

@keyframes glitchBefore {
  0% { transform: translate(0); }
  10% { transform: translate(-3px, -2px); }
  20% { transform: translate(3px, 2px); }
  30% { transform: translate(-2px, 1px); }
  40%, 100% { transform: translate(0); }
}

@keyframes glitchAfter {
  0% { transform: translate(0); }
  10% { transform: translate(2px, 3px); }
  20% { transform: translate(-2px, -3px); }
  30% { transform: translate(1px, -2px); }
  40%, 100% { transform: translate(0); }
}

.error-container p {
  color: #bdbdbd;
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.6;
  z-index: 1;
  font-family: var(--font-body--);
}

.error-container a {
  display: inline-block;
  background: var(--purple--);
  color: var(--white--);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(138, 108, 255, 0.4);
  z-index: 1;
}

.error-container a:hover {
  transform: scale(1.1);
  background-color: #a58fff;
  box-shadow: 0 0 25px rgba(163, 134, 255, 0.6);
}

/* --- FOOTER PEGADO ABAJO --- */
footer {
  background-color: #0b0b0b;
  color: #d4d4d4;
  font-family: var(--font-body--);
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contenido {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  gap: 3rem;
  padding: 0 2rem 3rem;
}

.footer-col {
  flex: 1 1 280px;
  max-width: 350px;
}

.footer-col h3.footer-logo {
  font-family: var(--font-title--);
  font-size: 1.8rem;
  color: var(--purple--);
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col p {
  line-height: 1.6;
  color: #bcbcbc;
  margin: 0 auto 1rem;
  max-width: 280px;
}

.footer-col ul li {
  margin: 0.6rem 0;
}

.footer-col ul li a,
.footer-social a {
  color: var(--gray--);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover,
.footer-social a:hover {
  color: var(--blue--);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* MEDIAQUERY */
@media (max-width: 768px) {
  body {
    font-size: 0.9rem;
    overflow-x: hidden;
  }
  
  main {
    padding: 6rem 0;
  }

  .blog-entrada {
    padding: 6rem 1rem;
  }

  h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  h3 {
    font-size: 1.2rem;
    text-align: center;
  }

  p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    padding: 0 1rem;
  }

  section {
    text-align: center;
    padding: 3rem 1rem;
  }

  header {
    padding: 20px;
    position: fixed;
    width: 100%;
    z-index: 1000;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    text-align: center;
    padding-top: 100px;
    z-index: 1500;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  nav ul.active {
    display: flex;
  }

  nav li {
    margin: 1.5rem 0;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    z-index: 2000;
    cursor: pointer;
  }

  .menu-toggle::before {
    content: "☰";
    font-size: 1.6rem;
    color: #fff;
  }

  .menu-toggle div {
    width: 28px;
    height: 3px;
    background: var(--white--);
    margin: 5px;
    transition: all 0.3s ease;
  }

  .menu-toggle.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .menu-toggle.active div:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active div:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .banner {
    height: 45vh;
  }

  .slide img {
    height: 45vh;
    object-fit: cover;
    filter: brightness(55%);
  }

  .slide-text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .slide-text h2 {
    font-size: 1.6rem;
  }

  .categorias-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .categoria {
    width: 90%;
    margin: 0 auto;
  }

  .parallax {
    margin-left: 0;
    margin-right: 0;
  }

  .parallax-content {
    padding: 1.5rem;
    max-width: 90%;
  }

  .parallax-content h2 {
    font-size: 1.8rem;
  }

  .parallax-content p {
    font-size: 1.2rem;
  }

  .galeria-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 95%;
  }

  .galeria-item {
    transform: none !important;
  }

  .galeria-categoria-item img {
    aspect-ratio: 1 / 1;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-card img {
    height: 180px;
  }

  .blog-content {
    text-align: center;
  }

  .form-contenedor {
    padding: 2rem 1.5rem;
    width: 90%;
  }

  .legal-section h1 {
    font-size: 1.8rem;
  }
  
  .legal-section h2 {
    font-size: 1.3rem;
  }
}