
body{
    font-family: 'Poppins', sans-serif;
}

/* Estilos del botón */
    .btn-fucsia {
      /* Estructura y tipografía */
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 28px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: #ffffff;
      text-decoration: none;
      
      /* Fondo fucsia moderno con degradado suave */
      background: linear-gradient(135deg, #ff1493, #d10074);
      border: none;
      border-radius: 50px; /* Bordes completamente redondeados */
      
      /* Sombra y transiciones */
      box-shadow: 0 8px 20px rgba(255, 20, 147, 0.35);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    /* Icono de flecha animado */
    .btn-fucsia svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.3s ease;
    }

    /* Efectos al pasar el cursor (Hover) */
    .btn-fucsia:hover {
      background: linear-gradient(135deg, #ff33a1, #e0007d);
      box-shadow: 0 12px 25px rgba(255, 20, 147, 0.5);
      transform: translateY(-3px); /* Se eleva un poco */
    }

    .btn-fucsia:hover svg {
      transform: translateX(4px); /* La flecha avanza */
    }

    /* Efecto al hacer clic (Active) */
    .btn-fucsia:active {
      transform: translateY(-1px);
      box-shadow: 0 5px 12px rgba(255, 20, 147, 0.4);
    }

.menu{
    background-color: #fcfcfd;
    color: #0d0d0d;
    height: 70px;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
    -moz-border-radius:7px 7px 7px 7px; /* Firefox */ 
    -webkit-border-radius:7px 7px 7px 7px; /* Safari y Chrome */
    
    
     
}

.menu__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
}

.menu__links{
    height: 100%;
    transition: transform .5s;
    display: flex;
    
    
}

.menu__item{
    list-style: none;
    position: relative;
    height: 100%;
    --clip: polygon(0 0, 100% 0, 100% 0, 0 0);
    --transform: rotate(-90deg);
}

.menu__item:hover{
    --clip: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    --transform: rotate(0);
}

.menu__link{
    color: #070707;
    text-decoration: none;
    padding: 0 15px;
    display: flex;
    height: 100%;
    align-items: center;
    
    
}

.menu__link:hover{
    background-color: #fcfbfb;
}


.menu__arrow{
    transform: var(--transform);
    transition: transform .3s;
    display: block;
    margin-left: 3px;
}

.menu__nesting{
    list-style: none;
    transition:clip-path .3s;
    clip-path: var(--clip);
    position: absolute;
     z-index: 100;
    right: 0;
    bottom: 0;
    width: max-content;
    transform: translateY(100%);
    background-color: #fcfbfb;
    -moz-border-radius:7px 7px 7px 7px; /* Firefox */ 
    -webkit-border-radius:7px 7px 7px 7px; /* Safari y Chrome */
    
    
}

.menu__link--inside{
    padding: 10px 70px 10px 10px;
}

.menu__link--inside:hover{
    background-color: #56555547;
    -moz-border-radius:7px 7px 7px 7px; /* Firefox */ 
    -webkit-border-radius:7px 7px 7px 7px; /* Safari y Chrome */
    
}

.menu__hamburguer{
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    cursor: pointer;
    display: none;
    
    
    
}

.menu__img{
    display: block;
    width: 36px;
}

@media (max-width:800px){
    .menu__hamburguer{
        display: flex;
        
        
    }

    .menu__hamburguer--active{
        --transform: rotate(0);
        --background: #56555547;
        
        
    }

    .menu__hamburguer--show{
        display: flex;
        
        
        
    }

    .menu__item{
        --clip:0;
        overflow:hidden ;
        
    }

    .menu__item--active{
        --transform: rotate(0);
        --background: #56555547;
        
    }

    .menu__item--show{
        background-color: var(--background);
        
    }


    .menu__links{
        position: fixed;
        max-width: 200px;
        width: 100%;
        top: 70px;
        bottom: 0;
        right: 0;
        background-color: #f9f8f9;
        overflow-y: auto;
        display: grid;
        grid-auto-rows: max-content;
        transform: translateX(100%);
        z-index: 100;
        
    }

    .menu__links--show{
        transform: unset;
        width: 100%;
        
    }

    .menu__link{
        padding: 15px 0;
        padding-left: 30px;
        height: auto;
    }

    .menu__arrow{
        margin-left: auto;
        margin-right: 20px;
    }

    .menu__nesting{
        display: grid;
        position: unset;
        width: 100%;
        z-index: 100;
        transform: translateY(0);
        height: 0;
        transition: height .3s;
    }

    .menu__link--inside{
        width: 90%;
        margin-left: auto;
        border-left: 1px solid #56555547;
    }

   
}

