@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    scroll-behavior: smooth;
    text-decoration: none;
}

:root {
    --text-color:#f5f5f5;
    --hover-color:#64CCC5;
    --bg-color:#252A2E;
    --secon-bg-color:#292e33;
    --big-font: 3rem;
    --normal-font: 2rem;
    --neon-box-shadow: 0 0 .5rem #12f7ff;
    --h2-font: 3rem;
    --font-neon-text-shadow: 0 0 10px rgba(18,247,255,0.3),
    0 0 20px rgba(18,247,255,0.3),
    0 0 30px rgba(18,247,255,0.3),
    0 0 40px rgba(18,247,255,0.3),
    0 0 70px rgba(18,247,255,0.3),
    0 0 80px rgba(18,247,255,0.3),
    0 0 100px rgba(18,247,255,0.3),
    0 0 150px rgba(18,247,255,0.3);
}

::-webkit-scrollbar {
    height: 0;
    width: .5rem;
}

::-webkit-scrollbar-track {
    background: var(--secon-bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--hover-color);
    border-radius: 5rem;
}


body {
    font-family: "Poppins", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);

} 



header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 10%;
       
}

header.sticky {
    background: var(--bg-color);
    border-bottom: 1px solid var(--secon-bg-color);
    padding: 12px 10%;

}

.logo img {
    width: 60px;
    height: 60px;
}



span {
    color: var(--hover-color);
}

.navlist {
    display: flex;
}

.navlist a {
    display: inline-block;
    color: var(--hover-color);
    font-weight: 500;
    padding: 10px 15px;
    animation: slideAnimation 1s ease forwards;
    animation-delay: calc(.3s * var(--i));
    opacity: 0;
    
}

.navlist a:hover {
    color: var(--hover-color);
    text-shadow:0 0 10px rgba(18,247,255,0.6),
    0 0 20px rgba(18,247,255,0.6),
    0 0 30px rgba(18,247,255,0.6),
    0 0 40px rgba(18,247,255,0.6),
    0 0 70px rgba(18,247,255,0.6),
    0 0 80px rgba(18,247,255,0.6),
    0 0 100px rgba(18,247,255,0.6),
    0 0 150px rgba(18,247,255,0.6); ;
}



#menu-icon {
    font-size: 1.8rem;
    z-index: 10001;
    cursor: pointer;
    margin-left: 25px;
    background: #64CCC5;
    border-radius: 3px;
    color: var(--secon-bg-color);
    display: none;
}

section {
    padding: 100px 10%;
}

.description {
    font-family: "Poppins", sans-serif; 
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 40px;
    margin-top: 20px;
    color: #BDBDBD;
    
}

.separador {
  background-color: #64CCC5;
  height: 1px;
  border: none; /* Elimina el borde predeterminado */
}


.home {
    min-height: 100vh;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    grid-gap: 4em;
    margin-top: 30px;
}

.home-content {
    max-width: 600px;
}

.home-content h1 {
    font-size: var(--big-font);
    font-weight: 700;
    color: var(--hover-color);
}

.change-text {
    font-size: 1.5rem;
    font-weight: 600;
}

.change-text h3 {
    display: inline-flex;
    margin: 0;
    vertical-align: top;
}

.change-text h3 .word {
    position: absolute;
    display: flex;
    opacity: 0;
}

.change-text h3 .word .letter {
    transform-origin: center center 25px;
}

.change-text h3 .word .letter.out {
    transform: rotateX(90deg);
    transition: 0.32s cubic-bezier(0,6,0,0,7,0,2);
}

.change-text h3 .word .letter.in {
    transition: 0.38s ease;
}

.change-text h3 .word .letter.behind {
    transform: rotateX(-90deg);
}

.home-content p {
    color: #bdbdbd;
    line-height: 1.6;;
   
}

.info-box {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 450px;
    margin: 1rem 0 2rem;
    

}

.info-box h5 {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
    
}

.info-box span {
    font-size: .9rem;
    color: #bdbdbd;
}

.btn-box {
    display: flex;
    justify-content: space-between;
    width: 340px;
    height: 45px;
    margin-top: 60px;
    margin-bottom: 60px;
    gap: 5px;
}

.btn-box .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100%;
    background: var(--hover-color);
    color: var(--bg-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 600;
    transition: .6s;
    box-shadow: var(--neon-box-shadow);
    text-align: center;
    border-radius: 5px;
    position: relative; overflow: hidden;
    z-index: 1;
    border: 2px solid var(--hover-color);
}


#asesorate {
    
    background-color:#053B50;
    border-radius: 10px;
    border-style: solid 2px #64CCC5;
    padding: 10px 15px; 
    display: inline-block;
    text-align: center; 
    white-space: nowrap; 
    text-decoration: none;
    color: #BDBDBD;
 
}

@media (max-width: 768px) {
    #asesorate {

        display: inline-block; 
        margin-bottom: 20px;
        text-align: left;
        padding: 8px 12px;
        font-size: 0.9em;
    }
}

.btn:hover{
    color: var(--hover-color);
}


.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bg-color);
    width: 0;
    height: 100%; 
    z-index: -1;
    transition: .4s;
}

.btn:hover::before{
    width: 100%;
}



.social-icons {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;

}

.social-icons a {
    display: inline-flex;
    width: 25px;
    height: 80%;
    justify-content: center;
    align-items: center;
    background: var(--bg-color);
    color: var(--hover-color);
    border: 2px solid var(--hover-color);
    transition: .6s;
    box-shadow: 0 0 0.3rem #12f7ff;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.social-icons a i {
    font-size: 1.2rem;
}

.social-icons a:hover {
    color: var(--bg-color);
}

.social-icons a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--hover-color);
    transition: .6s;
    z-index: -1;
}

.social-icons a:hover::before {
    width: 100%;
} 



.home-image {
    position: relative;
}


.home p{
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.image-box {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    width: 350px;
    height: 350px;
    background: #12f7ff;
    border-radius: 50%;
    overflow: hidden;
}

.image-box::before {
    content: "";
    position: absolute;
    inset: -10px 140px;
    background: linear-gradient(315deg,#176B87,#252A2E);
    transition: 0.5s;
    animation: animate 4s linear infinite;

}


.image-box::after {
    content: "";
    position: absolute;
    inset: 6px;
    background: #252A2E;
    border-radius: 50%;
    z-index: 1;

}

.image-box:hover::before {
    inset: -20px 0px;
}

.content {
    position: absolute;
    inset: 30px;
    border: 6px solid #64CCC5;
    z-index: 3;
    border-radius: 50%;
    overflow: hidden;
}

 


@keyframes animate {
    0%{
        transform:  rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.content img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    pointer-events: none;

}




/* seccion Sobre Mi */

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 2em;
    background-color: var(--secon-bg-color);
}



.about .img-about {
    text-align: center;
    position: relative;
}

.about .img-about img {
    max-width: 400px;
    height: auto;
}

.about-content span {
    color: #fdfdfd;
    font-size: .8rem;
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content h2 {
    color: var(--hover-color);
    font-weight: 700;
    font-size: var(--normal-font)
}

.about-content h3 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: .2rem;
}

.about-content p {
    color: #fdfdfd;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.info-about1, .info-about2 {
    background: #053B50;
    font-size: .6rem;
    position: absolute;
    padding: 10px;
    width: 90px;
    height: 90px;
    border-radius: 69% 31% 66% 34% / 21% 30% 70% 79%;
    display: block;
    box-shadow: var(--neon-box-shadow);
    border: 1px solid var(--hover-color);
    outline: 2px solid var(--bg-color);
    z-index: 100;
    animation: morph 6s linear infinite;
  
}

.about span {
font-size: 0.8rem;
}

.info-about1 {
    left: 1%;
    top: 60%;
}

.info-about2 {
    left: 73%;
    top: 10%;
}


.img-about span{
    color: var(--hover-color);
    font-size: 1rem;
    font-weight: 600;
}


/* seccion Servicios */

.main-text {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
    color:var(--hover-color);
}

.main-text h2 {
    font-weight: 700;
    font-size: var(--normal-font);
}

.main-text span {
    color: #fdfdfd;
    font-size: .8rem;
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-text h3 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: .5rem;
    color: #fdfdfd;
    
    
}

.main-text p {
    color: #bdbdbd;
    line-height: 1.6;
    font-family: "Poppins", sans-serif; 

}

.section-services {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: 2rem;
    margin-top: 80px;
}

.section-services .service-box {
    flex: 1 1 18rem;
    padding: 1rem 1rem 1rem;
    text-align: center;
    background: var(--secon-bg-color);
    transition: transform .4s;
    border-radius: 10px;
    box-shadow: var(--neon-box-shadow);
    outline: 2px solid var(--bg-color)
}




.service-btn {
    width: auto;
    justify-content: center;

}

.service-box:hover {
    transform: translateY(-.9rem);
}

.service-icon {
    border: 1px solid var(--hover-color);
    padding: 1rem;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    border-radius: 50%;
    position: relative;
    color: var(--hover-color);
    box-shadow: var(--neon-box-shadow);
    outline: 2px solid var(--bg-color);
}

.service-box h3 {
    margin-top: 10px;
    font-size: 1.5rem;
}

.service-box li {
    margin: 2.5rem 0 3rem 0;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #bdbdbd;
    line-height: 0;
}








/* seccion Habilidades */

.skills {
    background: var(--secon-bg-color);
}

.skill-main {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-row-gap: 30px;
    grid-column-gap: 50px;

}

.skill-bar {
    margin-bottom: 2.3rem;
}

.skill-main h3 {
    margin-bottom: 2rem;
    font-size: var(--normal-font);
    text-align: center;
}

.skill-left .skill-bar .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.skill-left .skill-bar .bar {
    width: 100%;
    height: 10px;
    background-color: var(--bg-color);
    border-radius: 25px;
    margin-top: 10px;
    position: relative;
}

.skill-bar .bar span {
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    background: var(--hover-color);
    border-radius: 25px;
    box-shadow: var(--neon-box-shadow);

}

.skill-bar .bar .html {
    width: 80%;
    animation: html 2s;
}

.skill-bar .bar .css {
    width: 72%;
    animation: css 3s;
}

.skill-bar .bar .javascript {
    width: 55%;
    animation: javascript 4s;
}

.skill-bar .bar .wordpress {
    width: 70%;
    animation: wordpress 5s;
}

/* seccion keyframes */

@keyframes morph{
    0%,
    100%{
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    }
    30%{
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }
    60% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
    80% {
        border-radius: 69% 31% 66% 34% / 21% 30% 70% 79%;
    }

}




@keyframes html {
    0%{
        width: 0%;
    }

    100% {
        width: 80%;
    }

}

@keyframes css {
    0%{
        width: 0%;
    }

    100% {
        width: 72%;
    }

}

@keyframes javascript {
    0%{
        width: 0%;
    }

    100% {
        width: 55%;
    }

}

@keyframes wordpress {
    0%{
        width: 0%;
    }

    100% {
        width: 70%;
    }

}

@keyframes glow {
    0%{
        background: var(--bg-color);
        box-shadow: none;
    }

    100% {
        background: var(--hover-color);
        box-shadow: var(--neon-box-shadow);
    }
}

@keyframes slideAnimation{
    0%{
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}




/* seccion skill right */

.professional {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.box {
    margin: 10px 0;
    flex: 1 1 15rem;
    position: relative;

}


.circle {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.box .text {
    text-align: center;
    color: #fff;
    font-size: 1rem;
}

.box .text big{
    font: 400;
    letter-spacing: 1px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.box .text small {
    display: block;
    font-weight: 600;
}


.circle .points {
    width: 2px;
    height: 10px;
    background-color: var(--bg-color);
    position: absolute;
    border-radius: 3px;
    transform: rotate(calc(var(--i)*var(--rot))) translateY(-45px) ;
    animation: glow 0.04s linear forwards;
   
}


.points.marked {
    animation: glow 0.04s linear forwards;
    animation-delay: calc(var(--i)*0.05s);
}

/* seccion proyectos */

.fillter-buttons {
    margin: 2rem;
    text-align: center;
}

.fillter-buttons .button {
    background: none;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .4px;
    margin-left: 1.3rem;
    color: var(--text-color);
}

.fillter-buttons .button:hover{
    color: var(--hover-color);
}

.proyectos-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill , minmax(270px , 1fr));
    gap: 2rem;
}

.port-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #292e33;
    display: flex;
    grid-template-rows: 1fr auto;
    align-items: center;
    border: 2px solid var(--hover-color);
    box-shadow: var(--neon-box-shadow);

}


.port-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.port-image img {
    width: 100%;
    opacity: .5s;
    height: 100%;
    transition: .5s;
}


.port-content {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    background: linear-gradient(rgba(0,0,0,.9),#12f7ff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transition: 0.5s;
    padding: 0 2rem;
   
}

.port-content h3 {
    font-size: 1.5rem;
    font-weight: 600;    

}

.port-content p {
    font-size: .8rem;
    margin: 5px 0 15px 0;
}

.port-content a {
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--hover-color);
    outline: 2px solid #fff;

}

.port-content a i {
    font-size: 1.3rem;
    color: var(--secon-bg-color);

}

.port-box:hover .port-content {
    opacity: 1;
}

.port-box:hover .port-image img {
    transform: scale(1.1);
}

/* seccion Contacto */

.contact {
    background: var(--secon-bg-color);
    width: 100%;
}

.contact form {
    text-align: center;
    max-width: 30rem;
    margin: 1rem auto;
    margin-bottom: 3rem;
}

.contact form input,
.contact form textarea{
    width: 100%;
    color: #ffffff;
    background: #384046;
    margin-bottom: .8rem;
    border: none;
    border-radius: 5px;
    padding: .7rem;
}

.contact form textarea {
    resize: none;
}

.formbtn {
    display: flex;
    justify-content: center;
    width: 100%;
}


.formbtn .btn {
    cursor: pointer;
    font-size: 1rem;
    margin-top: -40px;

}

/* seccion footer*/

footer {
    padding: 1.8rem 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
 
}

footer p {
    color: #bdbdbd;
}

footer a {
    display: inline-flex;
    justify-content: center;
    color: var(--text-color);
    background: var(--hover-color);
    padding: .6rem;
    border-radius: 5px;

}

footer a i {
    font-size: 1rem;
    color: var(--secon-bg-color);
}

.contacto-footer a {
    background-color: #252A2E;
    font-size: 13px;
    font-family: "Poppins", sans-serif; 
    color: #bdbdbd;

}




.contacto-footer .bx{
    color:#64CCC5;
    width: 30px;
}

.copyright {
    font-size: 13px;
    font-family: "Poppins", sans-serif; 
    color: #bdbdbd;
}

/* parallax*/

.scroll-scale{
    opacity: 0;
    transform: scale(.9);
    transition: all 2s;
}



.scroll-bottom {
    opacity: 0;
    transform: translateY(300px);
    transition: 3s;
}

.scroll-top {
    opacity: 0;
    transform: translateY(-300px);
    transition: 3s;
    
}

.show-items {
    opacity: 1;
    transform: translateX(0);
}





/* break points*/

@media(max-width:991px) {
    header,
    header.sticky{
        padding: 15px 5%;
    }
    footer {
        padding: 15px 5%;

    }
    section {
        padding: 50px 5%;
    }
    .navlist a {
        padding: 8px 15px;
    }
    :root {
        --big-font: 2.2rem;
        --normal-font: 1.8rem;
        --neon-box-shadow: 0 0 .8rem #12f7ff;
        --h2-font: 3rem;
    }
    .home-content {
        margin-top: 5rem;
    }
    .social-icons {
        margin-top: 2rem;
    }
    

}

@media(max-width:768px){
    #menu-icon{
        display: block;
        transition: all .4s ease;
    }

    #menu-icon.bx-x{
        transform: rotate(-180deg);
    }


    .home{
        grid-template-columns: 1fr;
    }

    .home-image {
        margin-bottom: 5rem;
    }

 
    .navlist{
        display: flex;
        position: absolute;
        top: -1000px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-color);
        text-align: left;
        padding: 0 5%;
        transition: all .45s ease;
    }

    .navlist a {
    display: block;
    padding-bottom: 1rem;
    font-size: 1rem;
    }

    .navlist.open {
        top: 100%;

    }

  .home {
    grid-template-columns: 1fr;
  }

  .home-image {
   margin: 0 auto;
  }

  .about {
    flex-direction: column-reverse;
  }

  .skill-main{
    grid-template-columns: 1fr;
  }


}

@media(max-width:420px) {
    html{
        font-size: 80%;
    }
    footer p {
        font-size: .6rem;
    }

    .fillter-buttons .button{
        font-size: .8rem;
    }

    .img-about img{
        width: 300px;
    }

}



.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	z-index:100;
    margin-bottom: 100px;
}
.float:hover {
	text-decoration: none;
	color: #25d366;
    background-color:#12f7ff;
}

.my-float{
	margin-top:12px;
}


/* testimonial*/

.main-testimonial{
    text-align: center;
    margin-top: 60px;
}

.main-testimonial span{
    color: #fdfdfd;
    font-size: .8rem;
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
  
}

.main-testimonial h2{
    color: var(--hover-color);
    font-weight: 700;
    font-size: var(--normal-font)
}



.testimonios{
    width: 100%;
    max-width: 1200px;
    text-align: center;
    padding: 20px;
    padding-top: 80px;
    position: relative;
    background-position: center;
    margin: auto;
    margin-top: 40px;
}



.container-testimonials{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 80px;
    position: relative;
    margin-bottom: 10rem;
}

.testimonial{
    width: 340px;
    margin: 20px;
    background: #252A2E;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 0px 40px 5px black;
    
}

.testimonial h2{
    font-size: 1rem;
}

.photo-perfil1,
.photo-perfil2,
.photo-perfil3{
    margin: auto;
    width: 120px;
    height: 120px;
    background-size: cover;
    border-radius: 50%;
    position: relative;
    top: -60px;
    box-shadow: 0px 0px 30px -6px black;
}

.photo-perfil1{
    background-image: url(../img/flor2.jpg);
    background-position: center -10px;
    background-size: 166px;
}

.photo-perfil2{
    background-image: url(../img/german2.png);
    background-size: 163px;
    background-repeat: no-repeat;
    background-position: 0px 1px;
}

.photo-perfil3{
    background-image: url(../img/Fede.png);
    background-size: 230px;
    background-position: -78px -20px;
}


.testimonial h2{
    margin-top: -40px;
    font-family: "Poppins", sans-serif;
}

.testimonial h4{
    margin-top: 10px;
    color: var(--text-color);
    font-weight: 200;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-family: "Poppins", sans-serif;
}

.testimonial p{
    margin: .5rem 0 1.5rem 0;
    font-weight: 300;
    letter-spacing: 1px;
    color: #bdbdbd;
    line-height: 1.6;
    font-size: 0.9rem;
    font-style: italic;
 
    
    
   
}

.container-redes{
    margin-top: 20px;
}



.container-redes a{
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--hover-color);
    outline: 2px solid #fff;
    font-size: 12px;
    color: #252A2E;
}



/* COOKIES */
.aviso-cookies{
    display: none;
	background: #fff;
	padding: 20px;
	width: calc(100% - 40px);
	max-width: 300px;
    line-height: 150%;
	border-radius: 10px;
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 100;
	padding-top: 60px;
    box-shadow: 0px 2px 20px 10px rgba(222,222,222,.25);
	text-align: center;
}

.aviso-cookies.activo{
    display: block;
}

.aviso-cookies h3 {
    font-family: "Poppins", sans-serif;
    color:#252A2E;
}

.aviso-cookies .parrafo {
    font-family: "Poppins", sans-serif;
    color:#252A2E;
}

.aviso-cookies .galleta {
	max-width: 100px;
	position: absolute;
	top: -50px;
	left: calc(50% - 50px);
}

.aviso-cookies .titulo,
.aviso-cookies .parrafo {
	margin-bottom: 15px;
}

.aviso-cookies .boton {
	width: 100%;
	background: #595959;
	border: none;
	color: #fff;
	font-family: "Poppins", sans-serif;
	text-align: center;
	padding: 15px 20px;
	font-weight: 700;
	cursor: pointer;
	transition: .3s ease all;
	border-radius: 5px;
	margin-bottom: 15px;
	font-size: 14px;
}

.aviso-cookies .boton:hover {
	background: #000;
}

.aviso-cookies .enlace {
	color: #64CCC5;
	text-decoration: none;
	font-size: 14px;
}

.aviso-cookies .enlace:hover {
	text-decoration: underline;
}

.fondo-aviso-cookies {
	display: none;
	background: rgba(0,0,0,.20);
	position: fixed;
	z-index: 99;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
}

.fondo-aviso-cookies.activo {
	display: block;
}



body {
    cursor: url('../img/manito.png'), auto; /* Reemplaza 'ruta/a/tu/imagen.png' */

  }

  a:hover {
    cursor:url('../img/tiro.png'), auto ;
  }


/*Sección Scroll*/

/* CÓDIGO CSS PARA EL EFECTO SCROLL VELOCITY */

/* Estilos para la sección completa del efecto */
.scroll-velocity-section {
    width: 100%;
    /* Define la altura total de tu sección si lo necesitas */
    /* Por ejemplo, min-height: 400px; */
    background-color: #292e33; /* Fondo negro para esta sección, como en tu imagen */
    padding: 20px 0;
    
    /* Espacio vertical alrededor de los textos */
    box-sizing: border-box; /* Incluye padding y border en el ancho/alto total */
    /* Opcional: para que el contenido se desplace sobre un fondo fijo si lo deseas */
    /* position: sticky; top: 0; */
    box-shadow: var(--neon-box-shadow);
    outline: 2px solid var(--bg-color)
}


/* Contenedor principal de una línea de texto que se desplaza */
.scrolling-text-container {
    width: 100%;
    height: 80px; /* Altura de la franja de texto (ajusta si es necesario) */
    overflow: hidden; /* **CRUCIAL:** Oculta el contenido que se sale de los límites */
    white-space: nowrap; /* Evita que el texto se rompa en líneas */
    box-sizing: border-box;
    padding: 5px 0; /* Padding vertical para el texto dentro de la franja */
    margin-top: 15px;
    margin-bottom: 5px; /* Espacio entre las franjas de texto */
    position: relative; /* Necesario para que el z-index funcione si hay superposiciones */
    z-index: 1;
}

/* Contenedor interno que se anima horizontalmente */
.scrolling-text-wrapper {
    display: inline-block; /* **CRUCIAL:** Ocupa solo el ancho de su contenido */
    animation: scroll-left linear infinite; /* Animación predeterminada */
    animation-duration: 25s; /* Duración de la animación por defecto (ajusta esta velocidad base) */
    /* animation-play-state: paused;  Podrías pausarlo y solo activarlo con JS si quieres */
}

/* Para la línea que va en dirección inversa */
.scrolling-text-container.reverse .scrolling-text-wrapper {
    animation-direction: reverse; /* Invierte la dirección de la animación */
}

/* Estilo para cada elemento de texto individual (palabra o frase) */
.scrolling-text-item {
    display: inline-block; /* Permite que cada palabra tenga su propio espacio */
    font-size: 2em; /* Tamaño de fuente grande, ajusta según tu gusto */
    font-weight: 600; /* Más grueso que 'bold' */
    text-transform: uppercase; /* Convierte el texto a mayúsculas, como en tu imagen */
    margin-right: 50px; /* Espacio entre cada palabra/frase repetida */
    padding-right: 15px; /* Espacio extra al final de cada item */
    color: #12f7ff; /* Color ligeramente gris para el texto (casi blanco) */
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5); /* Ligera sombra para que resalte */
    /* Para mejorar la suavidad del texto en diferentes navegadores */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Definición de la animación para el desplazamiento hacia la izquierda */
@keyframes scroll-left {
    from {
        transform: translateX(0%);
    }
    to {
        /* Se desplaza el 50% de su propio ancho hacia la izquierda.
           Esto es clave para la ilusión de bucle continuo. */
        transform: translateX(-50%);
    }
}

/* Media Queries para responsividad */
@media (max-width: 768px) {
    .scrolling-text-container {
        height: 60px; /* Reduce la altura de la franja en tablets */
        padding: 5px 0;
    }
    .scrolling-text-item {
        font-size: 2.5em; /* Reduce el tamaño de fuente en tablets */
        margin-right: 30px;
        padding-right: 10px;
    }
    .scrolling-text-wrapper {
        animation-duration: 20s; /* Acelera un poco la animación en tablets */
    }
}

@media (max-width: 480px) {
    .scrolling-text-container {
        height: 45px; /* Aún más pequeño en móviles */
        padding: 5px 0;
    }
    .scrolling-text-item {
        font-size: 1.8em; /* Tamaño de fuente para móviles pequeños */
        margin-right: 20px;
        padding-right: 5px;
    }
    .scrolling-text-wrapper {
        animation-duration: 15s; /* Más rápido en móviles pequeños */
    }
}
/* FIN CÓDIGO CSS PARA EL EFECTO SCROLL VELOCITY */
