        /* Hojas de estilos - principal */

        /* Fuente de letra para index.html */
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

        /* Elemento raíz */
        :root {
          --pink-light: #FFD1DC;
          --pink-medium: #FFAEC0;
          --black: #1A1A1A;
          --white: #FFFFFF;
        }

        /* Engloba todos los elementos de la página */

        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }

        /********************************************/

        /* Header Section */
        header {
          background-color: var(--black);
          padding: 20px 0;
          position: fixed;
          width: 100%;
          top: 0;
          z-index: 1000;
          display: flex;
          align-items: center;
          justify-content: center;
        }

        /********************************************/

        /* Nav Section */
        .nav-container {
          display: flex;
          /* Reemplaza width: 1200px por max-width para mejor adaptabilidad */
          max-width: 1200px;
          width: 90%;
          /* Usar ancho relativo dentro del máximo */
          justify-content: space-between;
          align-items: center;
          /* border: 1px solid red; /* Eliminar bordes de depuración */
        }

        .logo {
          font-family: 'Playfair Display', serif;
          font-size: 28px;
          font-weight: 700;
          color: var(--pink-light);
          /* Eliminar este margen fijo que solo causa problemas de layout */
          display: block;
          /* border: 1px solid yellow; /* Eliminar bordes de depuración */
        }

        .nav-links {
          display: flex;
          list-style: none;
          padding: 0;
          /* Asegurar padding cero */
          margin: 0;
          /* Asegurar margen cero */
        }

        .nav-links li {
          margin-left: 30px;
        }

        .nav-links a {
          color: var(--white);
          text-decoration: none;
          font-weight: 400;
          transition: color 0.3s;
        }

        .nav-links a:hover {
          color: var(--pink-medium);
        }

        .gallery-redirect,
        .contact-redirect,
        .reviews-redirect,
        .about-redirect,
        .home-redirect {
          cursor: pointer;
        }

        /* 1. Contenedor principal del dropdown */
        .nav-links li.dropdown {
          position: relative;
          /* Importante para que el submenú se alinee con este li */
        }

        /* 2. Estilos del menú que se despliega */
        .dropdown-menu {
          position: absolute;
          top: 100%;
          /* Se coloca justo debajo del enlace "Servicios" */
          left: 0;
          background-color: #333333;
          /* Color de fondo (puedes usar var(--black) si la tienes) */
          min-width: 180px;
          list-style: none;
          padding: 10px 0;
          margin: 0;
          border-radius: 4px;
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);

          /* Estado inicial: oculto */
          display: none;
          z-index: 1000;
        }

        /* 3. Estilos de los enlaces dentro del submenú */
        .dropdown-menu li {
          margin: 0 !important;
          /* Quitamos el margen izquierdo heredado de .nav-links li */
        }

        .dropdown-menu li a {
          padding: 10px 20px;
          display: block;
          font-size: 14px;
          color: var(--white);
          transition: background 0.3s;
        }

        .dropdown-menu li a:hover {
          background-color: var(--pink-light);
          color: #1A1A1A;
          /* Cambiamos el texto a oscuro para contraste */
        }

        /* 4. Mostrar el menú al pasar el mouse (Hover) */
        .dropdown:hover .dropdown-menu {
          display: block;
        }

        /* ---------------------------------- */
        /* RESPONSIVIDAD */
        /* ---------------------------------- */

        @media (max-width: 920px) {

          /* Ocultar el menú de escritorio en móviles */
          .nav-links {
            display: none;
          }

          /* En móviles, centrar el logo */
          .nav-container {
            justify-content: center;
            width: 100%;
          }

          /* Asegurar que el logo no tenga margen extra */
          .logo {
            margin: 0 auto;
            text-align: center;
          }
        }

        /********************************************/

        /* Body Section */
        body {
          font-family: 'Poppins', sans-serif;
        }

        /********************************************/

        /* Hero Section */
        .hero-pattern {
          background-image: radial-gradient(#FFD1DC 1px, transparent 1px);
          background-size: 20px 20px;
        }

        .hero {
          height: 100vh;
          display: flex;
          align-items: center;
          margin-top: 50px;
          position: relative;
          overflow: hidden;
        }

        .hero-content {
          max-width: 600px;
          position: relative;
          z-index: 2;
        }

        .container-text-hero {
          width: 55%;
        }

        .hero-image,
        .container-text-hero {
          padding: 10px;
          margin: 10px;
        }

        .btn-gallery,
        .btn-gallery {
          text-align: center;
        }

        .hero-image {
          width: 45%;
          animation: fadeInRight 1.2s ease-out;
        }

        .hero-image img {
          width: 55%;
          height: 60%;
          border-radius: 10%;
          /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
        }

        @keyframes fadeInRight {
          from {
            opacity: 0;
            transform: translateX(50px);
          }

          to {
            opacity: 1;
            transform: translateX(0);
          }
        }

        @media (max-width: 768px) {
          .hero-image {
            padding: 20px;
            width: 100%;
            height: auto;
          }

          #home.container {
            margin-top: 200px;
          }

          #home {
            margin-top: 100px;
          }

          .container-text-hero {
            width: 100%;
          }

        }

        /********************************************/

        /* About Section */
        .scroll-animation {
          opacity: 0;
          transform: translateY(30px);
          transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .scroll-animation.visible {
          opacity: 1;
          transform: translateY(0);
        }

        .about-container {
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          gap: 40px;
        }

        .about-content {
          flex: 1;
          min-width: 300px;
        }

        /********************************************/

        /* Reviews Section */
        .review-card {
          position: relative;
          overflow: hidden;
          border-radius: 15px;
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
          transform: rotate(calc(var(--rotation) * 1deg));
          --rotation: 0;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          margin-bottom: 30px;
        }

        .review-card:nth-child(1) {
          --rotation: -3;
          top: 10px;
        }

        .review-card:nth-child(2) {
          --rotation: 2;
          left: -10px;
        }

        .review-card:nth-child(3) {
          --rotation: -3;
          right: 15px;
        }

        .review-card:hover {
          transform: rotate(0deg) scale(1.05);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
          z-index: 10;
        }

        .review-image img {
          width: 92%;
          height: 100%;
          object-fit: contain;
          transition: transform 0.5s ease;
        }

        .review-card:hover .review-image img {
          transform: scale(1.1);
        }

        /********************************************/