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

    body {
      font-family: "Georgia", "Times New Roman", serif;
      background-color: rgb(248, 248, 248);
      color: #222;
      line-height: 1.4;
    }

    /* --- Bloqueo visual hasta aceptar/rechazar --- */
    #page-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgb(30 30 30 / 43%);
      /* Oscurece la página */
      z-index: 9998;
      backdrop-filter: blur(4px);
      /* desenfoque opcional */
      transition: opacity 0.3s ease;
    }

    /* --- Banner de cookies --- */
    #cookie-banner {
      position: fixed;
      margin-left: 30em;
      transform: translateX(-50%);
      background: #fff;
      padding: 20px 10px 0px 10px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(56, 56, 56, 0.3);
      z-index: 9999;
      text-align: center;
      max-width: 50em;
      font-size: 16px;
      display: none;
      margin-bottom: 15px;
      /* oculto por defecto */
    }

    #cookie-banner button {
      margin: 10px 5px;
      padding: 8px 16px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      margin-bottom: 20px;
    }

    #acceptCookies {
      background-color: #4CAF50;
      color: white;
    }

    #rejectCookies {
      background-color: #f44336;
      color: white;
    }

    @media (max-width: 768px) {
      #cookie-banner {
        margin-left: 23.3em;
        padding: 20px 10px 0px 10px;
        font-size: 16px;
        display: none;
        width: 40em;
      }
    }
@media (max-width: 480px) {
 #cookie-banner {
        margin-left: 11.7em;
        padding: 20px 10px 0px 10px;   
        width: 20em;
      }
}
    /* Header */
    header {
      width: 100%;
      background: #f5dcba;
      top: 0;
      left: 0;
      z-index: 100;
    }

    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;

    }

    .menu {
      display: flex;
      gap: 20px;
    }

    .menu-link {
      text-decoration: none;
      color: #333;
      font-weight: 500;
    }

    /* --- Menú hamburguesa --- */
    .menu-toggle {
      display: none;
      cursor: pointer;
    }


    /* --- Responsivo --- */
    @media (max-width: 768px) {
      .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px;
        right: 20px;
        background-color: rgb(231, 149, 122);
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 15px;
        width: 200px;
        z-index: 100;
      }

      .menu a {
        padding: 10px 0;
        text-align: right;
        border-bottom: 1px solid #080808;
      }

      .menu-toggle {
        display: block;
        color: black;
        margin-right: 20px;
        font-size: 30px;
      }

      .menu.show {
        display: flex;
      }

    }

    .logo {
      width: 150px;
      margin-left: 15px;
    }

    .menu-link {
      display: flex;
      padding-left: 12px;
      text-decoration: none;
      font-size: 1.3rem;
      color: rgb(119, 64, 57);
    }

    .menu-link:hover {
      color: #252525;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger span {
      height: 3px;
      width: 25px;
      background: #333;
      margin: 4px 0;
      border-radius: 5px;
    }

    .submenu {
      display: none;
      position: absolute;
      background-color: rgb(231, 149, 122);
      list-style: none;
      padding: 5px;
      border-radius: 5px;
    }

    .services-Link a {
      display: flex;
      padding-left: 22px;
      text-decoration: none;
      font-size: 1.3rem;
      color: rgb(119, 64, 57);
    }

    li.services-Link {
      list-style-type: none;
    }

    .services-Link:hover .submenu {
      display: block;
      width: 210px;
    }

    .submenu li {
      padding: 5px 0px 0px 10px;
      color: white;
      line-height: 22px;
    }

    .submenu li a {
      padding: 5px 0px 0px 10px;
      color: white;
      line-height: 25px;
      font-size: 17px;
    }

    .banner-text p {
      width: 90%;
    }

    .navbar {
      display: flex;
      justify-content: left;
    }

    .fotoLaura {
      width: 420px;
      margin-left: 20px;
      margin-right: 20px;
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        text-align: center;
      }

      .banner-text {
        padding: 1rem;
        font-size: 25px;
      }

      .banner-text h1 {
        font-size: 4rem;
        margin-bottom: 20px
      }

      .banner-text p {
        width: 660px;
      }

      li {
        font-size: 14px;
      }

      .submenu {
        font-size: 14px;
        display: none;
        position: absolute;
        list-style: none;
        padding: 10px;
        border-radius: 5px;

      }

      ul {
        display: flex;
        gap: 20px;
        margin-right: 10px;
      }

      .menu-link {
        display: flex;
        padding-left: 17px;
      }

      .logo {
        margin-right: 32em;
      }
    }

    @media (max-width: 480px) {
      .logo {
        margin: 0px;
      }

      .menu-toggle {
        margin-left: 5em;
      }

      .navbar {
        margin-top: 20px;
      }

      .menu.show {
        margin-top: 20px;
      }

      .fotoLaura {
        width: 320px;
      }
    }


    /* Banner Section */
    .banner-text {
      padding: 2rem;
      display: flex;
      gap: 2rem;
      flex-direction: column;
      flex: 1;
    }

    .banner-text h1 {
      font-size: 4rem;
      font-weight: normal;
      line-height: 1;
      margin-top: 20px;
    }

    .banner-text p {
      font-size: 1.3rem;
      color: #413f3f;
      text-align: justify;
      margin-bottom: 20px;
    }

    .btn_banner {
      background-color: rgb(231, 149, 122);
      text-decoration: none;
      color: rgb(253, 252, 252);
      padding: 10px;
      border-radius: 10px;
      margin-bottom: 40px;
    }

    .banner-buttons {
      margin-bottom: 30px;
    }

    .btn_banner:hover {
      background-color: rgb(240, 126, 84);

    }

    .banner-text h1,
    .banner-text p,
    .banner-buttons {
      opacity: 0;
      transform: translateX(-50px);
      animation: fadeInLeft 0.8s forwards;
    }

    .banner-text h1 {
      animation-delay: 0.2s;
    }

    .banner-buttons {
      animation-delay: 1s;
    }

    .banner-buttons a {
      transition: all 0.3s ease;
    }


    /* Animación */
    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }

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

    @keyframes slidein {
      from {
        margin-left: 100%;
        width: 300%;
      }

      to {
        margin-left: 0%;
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .banner-text {
        padding: 0px;
      }

      .banner-text p {
        font-size: 1.2rem;
        margin: 0px;
        width: 340px;
        margin-left: 10px;
        margin-bottom: 20px;
      }

      .banner-text {
        gap: 1rem;
      }
    }

    /* Curva container */

    .curva {
      position: relative;
      height: 200px;
      overflow: hidden;
      background-color: white;
    }

    .curva svg {
      position: absolute;
      top: -60px;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .slider {
      text-align: center;
      margin-top: -7em;
      background-color: white;
      overflow: visible;
      height: auto;
    }

    .frase {
      font-size: 1.4rem;
      margin-bottom: 15px;
      color: #333;
      position: relative;
      z-index: 2;
    }

    .autor {
      font-weight: bold;
      color: #555;
      position: relative;
      z-index: 2;
    }

    .botones {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
      z-index: 2;
    }

    .boton {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: 2px solid #333;
      background: transparent;
      cursor: pointer;
      transition: background 0.3s;
      z-index: 2;
    }

    .boton.activo {
      background: #333;
    }

    @media (max-width: 480px) {
      .curva {
        margin-top: -10px;
      }

      .slider {
        margin-top: -8em;
      }

      .frase {
        margin-top: -10px;
      }

      .aboutme {
        flex-direction: column;
      }

      .botones {
        padding-bottom: 25px;
      }
    }


    /*  Estilos Aboutme  */
    .aboutme {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
    }

    .text-left {
      text-align: justify;
      line-height: 32px;
      width: 500px;
      margin-bottom: 15px;
    }

    .text-right {
      margin-bottom: 5px;
      font-weight: bolder;
      text-align: justify;
      width: 500px;
    }

    .hidden {
      opacity: 0;
      transform: translateX(0) scale(0.95);
      transition: all 0.8s ease;
    }

    /* Animaciones */
    .show-left {
      opacity: 1;
      transform: translateX(0) scale(1);
      animation: slideInLeft 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    .show-right {
      opacity: 1;
      transform: translateX(0) scale(1);
      animation: slideInRight 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    /* Keyframes */
    @keyframes slideInLeft {
      from {
        transform: translateX(-120px) scale(0.9);
        opacity: 0;
      }

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

    @keyframes slideInRight {
      from {
        transform: translateX(120px) scale(0.9);
        opacity: 0;
      }

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

    .arrow-right-container {
      width: 160px;
      height: 10px;
      overflow: hidden;
      position: relative;
    }

    .arrow-right {
      width: 120px;
      height: 60px;
      border-right: 3px solid #fff;
      transform: rotate(30deg);
      position: absolute;
      animation: slideRight 1s infinite;
      background-color: chocolate;
    }

    #text-rightAbout {
      line-height: 35px;
    }

    /* animación de izquierda a derecha */
    @keyframes slideRight {
      0% {
        left: -30px;
        opacity: 0;
      }

      50% {
        left: 30px;
        opacity: 1;
      }

      100% {
        left: 70px;
        opacity: 0;
      }
    }

    @media (max-width: 768px) {
      .text-left {
        width: 250px;
        margin-left: 30px;
      }

      .text-right {
        width: 250px;
      }

      #text-rightAbout {
        line-height: 35px;
        margin-top: -50px;
      }
    }

    @media (max-width: 480px) {
      .text-left {
        width: 300px;
        margin-left: 0px;
        font-size: 18px;
      }

      #text-rightAbout {
        width: 300px;
        margin-top: 0px;
        margin-left: 8px;
        font-size: 18px;
      }
    }


    /*  Estilos Servicios  */
    .content-services {
      background-color: rgb(248, 248, 248);
      margin-top: -10px;
      margin-bottom: 40px;
    }

    .carousel {
      display: flex;
      gap: 20px;
      margin-top: 30px;
      justify-content: center;
    }

    .card {
      position: relative;
      overflow: hidden;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      width: 280px;

    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card img {
      width: 90%;
      height: auto;
      border-radius: 8px 8px 0 0;
      margin-top: 15px;
    }

    .card h3 {
      margin-top: 15px;
      font-size: 18px;
      color: #333;
    }

    .card a {
      display: inline-block;
      margin-top: 10px;
      color: #007BFF;
      text-decoration: none;
      font-weight: bold;
      margin-bottom: 30px;
    }

    .card a:hover {
      text-decoration: underline;
    }

    /* Hover Effect */
    .description {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 15px;
      font-size: 16px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      line-height: 24px;
    }

    .card:hover .description {
      opacity: 1;
      pointer-events: auto;
    }

    @media (max-width: 768px) {
      .carousel {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .card {
        display: flex;
        flex-direction: column;
        justify-self: center;
      }

      .card img {
        margin-left: 13px;
      }
    }

    @media (max-width: 480px) {
      .carousel {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
      }

      .card h3 {
        margin-bottom: 40px;
      }

      .card {
        width: 320px;
      }
    }

    /* Workshops */
    .container-workshops {
      display: flex;
    }

    .lado-izquierdoImg {
      opacity: 1;
      transform: translateX(0) scale(1);
    }

    .lado-izquierdoImg.play {
      animation: slideInLeft 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    .lado-izquierdoImg {
      width: 400px;
      margin-top: 20px;
      margin-left: 40px;
    }

    @keyframes slideInLeft {
      from {
        transform: translateX(-120px) scale(0.9);
        opacity: 0;
      }

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

    .lado-izquierdo-wrapper {
      overflow: visible;
    }

    /* Lado derecho */
    .faq {
      display: flex;
      flex-direction: column;
      margin-top: 20px;
      width: 47em;
      margin-left: 40px;

    }

    .faq h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      margin-top: -9px;
    }

    .faq-item {
      border-bottom: 1px solid #ddd;
      padding: 1rem 0;
      cursor: pointer;
    }

    .faq-item h3 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.1rem;
      margin: 0;
    }

    .faq-item p,
    .faq-item ul {
      display: none;
      margin-top: 0.5rem;
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .faq-item.active p,
    .faq-item.active ul {
      display: block;
    }

    .faq-item span {
      font-size: 1.5rem;
      color: rgb(231, 149, 122);
    }

    .btn_transparent {
      background: transparent;
      border: 1px solid rgb(231, 149, 122);
      padding: 0.8rem 1.5rem;
      color: rgb(231, 149, 122);
      font-size: 1.2rem;
      font-weight: bolder;
      border-radius: 40px;
      cursor: pointer;
      transition: background 0.3s ease;
      height: 50px;
    }

    .btn_transparent:hover {
      background: rgb(231, 149, 122);
      color: white;
    }


    @keyframes slideRight {
      0% {
        transform: translateX(0);

      }

      100% {
        transform: translateX(calc(20% - 100px));
      }
    }

    @media (max-width: 768px) {

      .faq {
        display: flex;
        flex-direction: column;
        width: 21em;
        padding: 0px;
      }

      .lado-izquierdoImg {
        width: 300px;
        margin-top: 40px;

      }

    }

    @media (max-width: 480px) {
      .container-workshops {
        display: flex;
        flex-direction: column;
      }

      .faq {
        width: 19em;
      }

      .faq-item.active p,
      .faq-item.active ul {
        line-height: 1.9;
        text-align: justify;
      }
    }

    /* Contacto */
    .contact-section {
      max-width: var(--container-width);
      margin: 40px auto;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 0;
      box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);
      overflow: hidden;
      border-radius: 6px;

    }

    /* Lado izquierdo */
    .contact-left {
      background: var(--lavanda);
      padding: 48px 36px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .contact-left h2 {
      margin: 0 0 6px 0;
      font-size: 36px;
      color: #0b0b0b;
      font-weight: 700;
      text-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 12px;
      color: #fff;
      font-size: 18px;
      color: #0b0b0b;
    }

    .contact-line {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      opacity: 0.95;
      color: #0b0b0b;
    }

    .contact-line a {
      color: black;
      text-decoration: none;
    }

    .redes-sociales a {
      color: #0b0b0b;
      text-decoration: none;
      margin-top: 20px;
    }

    .redes-sociales a:hover {
      color: rgb(192, 57, 45);
      text-decoration: none;
      margin-top: 20px;
    }

    /* Mapa */
    .map-wrap {
      margin-top: 12px;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }

    .map-wrap iframe {
      display: block;
      width: 100%;
      height: 240px;
      border: 0;
    }

    /* Lado derecho (formulario) */
    .contact-right {
      background: rgb(245, 203, 203);
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .right-intro {
      color: black;
      font-size: 17px;
      margin-bottom: 12px;
      line-height: 1.5;
      opacity: 0.95;
      text-align: justify;
    }

    form.contact-form {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .contact-form label {
      font-size: 13px;
      color: black;
      margin-bottom: 6px;
      display: block;
      font-weight: bolder;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea,
    .contact-form input[type="tel"] {
      width: 100%;
      padding: 10px 12px;
      border-radius: 6px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      font-size: 14px;
      outline: none;
    }

    .contact-form textarea {
      min-height: 120px;
      resize: vertical;
    }

    .privacy {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      margin-top: 6px;
    }

    .privacy input {
      width: 16px;
      height: 16px;
    }

    /* Botón centrado */
    .btn-wrap {
      display: flex;
      justify-content: center;
      margin-top: 8px;
    }

    .submit {
      background: var(--white);
      color: var(--text-dark);
      border: none;
      padding: 10px 22px;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 700;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      transition: transform .15s ease, box-shadow .15s ease;
    }

    .submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    }

    .submit:active {
      transform: translateY(0);
    }

    /* Pequeños ajustes visuales */
    .contact-left small {
      color: rgba(255, 255, 255, 0.95);
      display: block;
      margin-top: 4px;
      font-weight: 600;
    }

    .privacy label {
      margin: 0;
      font-size: 15px;
    }

    /* Responsivo */
    @media (max-width: 980px) {
      .contact-section {
        grid-template-columns: 1fr;
      }

      .contact-right {
        order: 2;
        padding: 24px;
      }

      .contact-left {
        order: 1;
        padding: 28px;
      }

      .map-wrap iframe {
        height: 200px;
      }

      .contact-right {
        display: flex;
        flex-direction: column;
        justify-self: center;
        width: 550px;
      }
    }

    @media (max-width: 480px) {
      .contact-section {
        display: flex;
        flex-direction: column;
      }

      .contact-left h2 {
        font-size: 28px;
        text-align: center;
      }

      .contact-line {
        display: flex;
        flex-direction: column;
        font-size: 20px
      }

      .contact-right {
        display: flex;
        flex-direction: column;
        justify-self: center;
        width: 350px;
        margin-left: 12px;
      }

      .contact-left {
        order: 1;
        padding: 18px;
      }

      .fa-solid,
      .fas {
        font-size: 20px;
      }

      .contact-form label {
        font-size: 15px;
      }
    }

    /* Estilo Whatsapp */

    .whatsapp-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
      z-index: 1000;
    }

    /* Botón de WhatsApp */
    .whatsapp-button {
      display: flex;
      align-items: center;
      background-color: #25d366;
      padding: 10px;
      border-radius: 50px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      text-decoration: none;
      position: relative;
      transition: background-color 0.3s;
    }

    /* Icono de WhatsApp */
    .whatsapp-icon {
      width: 30px;
      height: 30px;
    }

    /* Texto emergente */
    .whatsapp-text {
      margin-left: 10px;
      margin-right: 10px;
      color: white;
      font-size: 18px;
      font-weight: bold;
      white-space: nowrap;
    }

    /* Mostrar texto emergente al hacer hover */
    .whatsapp-button:hover .whatsapp-text {
      opacity: 1;
      transform: translateX(0);
    }

    /* Mostrar el botón cuando es visible */
    .whatsapp-container.visible {
      opacity: 1;
      visibility: visible;
      transform: translateX(-10px);
      transition: opacity 0.3s, transform 0.5s;
    }

    /* Cookies banner */

    #cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #414040;
      color: #fff;
      text-align: center;
      font-family: sans-serif;
      display: none;

    }

    #cookie-banner button {
      margin-left: 10px;
      padding: 6px 12px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      margin-top: -10px;

    }

    #acceptCookies {
      background: #4CAF50;
      color: #fff;
    }

    #rejectCookies {
      background: #f44336;
      color: #fff;
    }

    #cookie-banner a {
      color: #4FC3F7;
      text-decoration: underline;
      margin-left: 10px;
    }