*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

html{
    scroll-behavior: smooth;

}

body{
    background-color: #030F10;
    overflow-x: hidden!important;
    
}

header{
    height: 30vh;
    width: 100vw;
}

#Sobre_Nosotros, #Servicios, #faq{
    padding-top: 20px;
}

#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px; /* grosor de la línea */
    background: #E76606; /* color de tu marca */
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease-out;
}


.navbar{
    font-family: "Lato", sans-serif;
    position: absolute;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar a{
    font-family: "Lato", sans-serif;
    color: rgb(255, 255, 255);
}

.navbar .logo img{
    width: 8rem;
    height: auto;
    margin-left: 2rem;
    max-width: 100%;
}


.navbar .nav-links ul{
    display: flex;
    justify-content: center;
    position: relative;
}

.navbar .nav-links ul li{
    margin: 0 25px;
    font-size: 0.9rem;
}


.cta_btn {
    position: relative; /* Necesario para usar ::before y ::after */
    border: 2px solid #C75500;
    font-weight: bolder;
    padding: 0.5rem 0.3rem;
    border-radius: 50px;
    outline: none;
    font-size: 1rem;
    cursor: pointer;
    margin-right: 3rem;
    max-width: 215px;
    width: 100%;
    text-align: center;
    background: transparent;
    color: #fff;
    overflow: hidden;/* Para ocultar el efecto fuera del borde */
    transition: color 0.3s ease;
}

/* Efecto arrastre del color (fondo que se desliza) */
.cta_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;  /* Comienza fuera del botón */
    width: 100%;
    height: 100%;
    background: #C75500; /* Color del efecto */
    border-radius: 50px;
    transition: all 0.6s ease;/* Suaviza la animación */
    z-index: -1;
}

.cta_btn:hover::before {
    left: 0; /* Se desliza dentro */
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Línea invisible inicialmente */
.nav-links a:not(.cta_btn_menu)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px; /* espacio debajo del texto */
    width: 100%;
    height: 2px;
    background: #C75500;
    transform: scaleX(0);
    transform-origin: center; /* fin de la línea*/
    transition: transform 0.3s ease;
}

/* Al hacer hover, aparece la línea */
.nav-links a:hover:not(.cta_btn_menu)::after{
    transform: scaleX(1);
    transform-origin: center; /* Inicio de la línea*/
}


.navbar .menu-hamburger{
    display: none;
    color: white;
    position: absolute;
    top: 60px;
    right: 30px;
    font-size: 25px;
}


.cta_btn_menu{
    display: none;
}

/* RESPONSIVE DESIGN */

@media screen and (max-width: 900px) {

    .navbar{
        padding: 0;
    }

    .navbar .logo img{
        position: absolute;
        top: 50px;
        left: 20px;
        width: 6rem;
        z-index: 20;
    }

    .navbar .menu-hamburger{
        display: block;
    }

    .menu-hamburger{
        font-size: 20px!important;
        z-index: 1000;
    }

.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #abe1dc23;
    backdrop-filter: blur(8px);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.5s ease;
    z-index: 1000;
}

.mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
    .nav-links ul{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar .nav-links ul li{
        margin: 15px 0;
        font-size: 1.2em;
    }

    .cta_btn{
        display: none;
    }

    .cta_btn_menu {
        display: block;
        bottom: -5%; /* 📍 posición debajo de los enlaces */
        background-color: #fff;
        color: #C75500!important;
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
        border: none;
        font-size: 1rem;
        text-align: center;
        width: 50%;
        max-width: 250px;
        border-radius: 50px;
    }

}

@media screen and (max-width: 1200px) {


    .nav-links ul {
        gap: 0.5rem;
        margin: 0 2rem;
    }

    .nav-links li{
        font-size: 0.9rem!important;
        margin: 0 10px; /* antes 25px */
    }

    .cta_btn{
        width: 18%!important;
        max-width: 215px;
        font-size: 0.7rem!important;
    }

    .navbar .logo img{
        width: 7rem;
        height: auto;
        margin-left: 0.5rem;
        max-width: 100%;
    }

}

.header-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Black Han Sans", sans-serif;
    margin-top: 3rem;
}

.main-title{
    color: #fff;
    font-size: 5rem;
    font-weight: 900;
  /* Borde más delgado y limpio */

  /* Capa corrida blanca sutil */
    text-shadow:
    1px 1px 0 #000000,
    2px 1px 0 #000000,
    2px 2px 0 #000000,
    4px 4px 0 #ffffff;
}

.main-subtitle{
    font-size: 1.7rem;
    color:#fff ;
    font-weight: 900;
}

.main-subtitle span{
    color: #C75500;
}

/* RESPONSIVE DESIGN */

@media screen and (max-width: 900px){
    .main-title{
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 600px){
    .main-title{
        font-size: 3rem;
    }
}

.carrousel-container {
    margin-top: 4rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.carrousel-container::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    width: 80%;
    height: 50%;

    background: radial-gradient(
        circle,
        rgba(54, 207, 182, 0.39),
        rgba(199, 85, 0, 0)
    );

    filter: blur(60px);  /*suaviza los bordes */
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
} 




/* contenedor de imágenes */
.carrousel-img {
    display: flex;
    gap: 45px;
    width: max-content;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* estilo base de cada imagen */
.carrousel-img img {
    max-width: 400px;
    max-height: 250px;
    border-radius: 15px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 1px 2px 10px #abe1dc88;
    will-change: transform;
    transition: transform 400ms cubic-bezier(0.03, 0.98, 0.52, 0.99),
            box-shadow 0.4s ease;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1);
    cursor: pointer;
    
}

/* efecto al pasar el mouse */
.carrousel-img img:hover {
    transform: perspective(1000px) rotateX(-20deg) rotateY(-10deg) scale3d(1.05, 1.05, 1.05);
}

/* RESPONSIVE DESIGN  */

@media screen and (max-width: 600px){

    .carrousel-img{
        display: flex;
        flex-direction: column;
    }

    .carrousel-img img{
        width: 300px;
        height: 200px;
    }
}

@media screen and (max-width: 1200px) {

    .carrousel-img img{
        width: 300px;
        height: 200px;
    }

}

.about-us{
    margin-top: 4rem;
}

.subtitle{
    color:#fff;
    font-family: "Black Han Sans", sans-serif;
    font-size: 1.8rem;
    text-align: start;
    padding-left: 10%;
    text-shadow:
    1px 1px 0 #000000,
    2px 1px 0 #000000,
    2px 2px 0 #000000,
    3px 3px 0 #ffffff;
}

.subtitle span{
    color:#C75500;
    text-shadow:
    1px 1px 0 #000000,
    2px 1px 0 #000000,
    2px 2px 0 #000000,
    3px 3px 0 #C75500;
}



/* RESPONSIVE DESIGN   */

@media screen and (max-width: 900px){

    .subtitle{
        text-align: center!important;
        padding-left: 0;
        font-size: 1.5rem;
        
    }
}

.container-about-us{
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 40px 0;
}

.card-about-us{
    background:linear-gradient(to bottom,#030F10,#1E2A29);
    padding: 2rem;
    border-radius: 30px;
    height: auto;
    max-height: 450px;
    width: 350px;
    flex-wrap: wrap;
}

.icon-card{
    color: #C75500;
    text-shadow: 0px 5px 3px #000000;
    font-size: 2rem;
    padding: 0.5rem;
}

.text-title{
    font-family: "Noto Sans", sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: #ABE1DC;
    padding: 0.2rem;
    text-shadow: 0px 4px 3px #000000;
}

.text-paragraph{
    padding: 0.5rem;
    font-family: "Lato", sans-serif;
    color: #fff;
    font-weight: 400;
    font-size: 0.9rem;
}


/* RESPONSIVE DESIGN   */

@media screen and (max-width: 900px){

    .container-about-us{
        margin: 3rem 0.5rem;
        padding-left: 20px;
        padding-right: 20px;
        display: flex;
        justify-content: center;
    }

    .card-about-us{
        padding: 1rem;
    }

    .text-title{
        font-size: 1.1rem;
    }

    .icon-card{
        font-size: 1.8rem;
    }

}


.values{
    margin-top: 4rem;
}

.container-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 4rem;
    padding: 40px 1rem;
    justify-items: center;
    align-items: stretch; /* 💪 hace que todas las cards tengan la misma altura */
}


.card-values {
    background: linear-gradient(to right, #030F10, #1E2A29); 
    padding: 2rem 20px;
    border-radius: 30px;
    height: 200px; /* mismo alto */
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
}


.title-values{
    font-family: "Noto Sans", sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: #ABE1DC;
    text-align: start;
    padding-bottom: 10px;
    padding-left: 10px;

}

.paragraph-values{
    padding: 0.3rem;
    font-family: "Lato", sans-serif;
    color: #fff;
    font-weight: 400;
    font-size: 0.9rem;
}


/* RESPONSIVE DESIGN */
@media screen and (max-width: 900px){

    .container-values{
        margin: 0;
    }

    .card-values{
        max-width: 300px;
    }

    .title-values{
        font-size: 1.1rem;
    }

}


.section-hero {
    display: flex;
    justify-content: flex-end;
    padding: 3rem 0;
    margin: 0;
    overflow: hidden;
}

.img-bg {
    position: relative;
    background-image: url(/assets/img/mesaDeTrabajo.png);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 200px 0 0 200px;
    width: 75%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.img-bg::before {
    content: "";
    position: absolute;
    inset: 0; /* ocupa todo el contenedor */
    border-radius: 200px 0 0 200px;
    box-shadow: 5px 10px 35px #abe1dccc;
    z-index: -1; /* detrás del contenido */
}

.hero-img {
    height: 140%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 10;
}

/* Texto principal */
.hero-content .hero-title {
    position: relative;
    left: -20%;
    text-align: start;
    font-family: "Black Han Sans", sans-serif;
    color: #baf3f0;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-content span {
    color: #ff8a00;
    font-weight: 500;
}

/* STICKERS */
.sticker {
    position: absolute;
    background-color: #d35400;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    transform: rotate(-5deg);
    opacity: 0;
    z-index: 8;
    font-weight: 400;
}

/* Sticker superior: arriba a la derecha */
.sticker-top {
    top: -10px;
    right: 50%;
    font-family: "Black Han Sans", sans-serif;
    line-height: 1;

}



/* Sticker inferior: abajo a la izquierda */
.sticker-bottom {
    bottom: -10px;
    font-family: "Black Han Sans", sans-serif;
    left: 120px;
    letter-spacing: 0.5px;
    transform: rotate(6deg);
}



/* CÍRCULO de código */
.circle-icon {
    position: absolute;
    bottom: -20px;
    right: 36%;
    width: 55px;
    height: 55px;
    background: linear-gradient(145deg, #aef1ee, #6cd0c9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #222;
    box-shadow: 0 4px 20px #ABE1DC;
    z-index: 1000;
}

.circle-icon span{
    color: #000000;
    font-family:'Noto Sans', sans-serif;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ESTRELLAS a la izquierda del texto */
.stars {
    position: absolute;  
    top: 150px;
    left: -20px;
    transform: translateY(-50%);
    z-index: 9;
}

.stars img {
  width: 80px;         /* 🔹 Tamaño base */
  height: auto;        /* 🔹 Mantiene proporción */
  object-fit: contain; /* 🔹 Evita deformaciones */
}

/* Animación flotante del círculo */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.circle-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content .hero-title {
    animation: zoomIn 0.8s ease forwards;
}


/* Brillo de las estrellas */
@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.stars {
    animation: sparkle 2s ease-in-out infinite alternate;
}

/* Sticker con entrada tipo pop */
@keyframes fadeInPop {
    0% { opacity: 0; transform: scale(0.8) rotate(-10deg); }
    100% { opacity: 1; transform: scale(1) rotate(-5deg); }
}

.sticker {
    animation: fadeInPop 0.8s ease forwards;
}


/* 🔹 Animación inicial tipo pop (ya la tienes) */
@keyframes fadeInPop {
    0% { 
        opacity: 0; 
        transform: scale(0.8) rotate(-10deg) translateY(10px); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1) rotate(-5deg) translateY(0); 
    }
}

/* 🔹 Animación flotante continua */
@keyframes floatStickerTop {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-8px) rotate(-4deg); }
}

@keyframes floatStickerBottom {
    0%, 100% { transform: translateY(0) rotate(6deg); }
    50% { transform: translateY(-6px) rotate(7deg); }
}

/* 🔹 Aplicación */
.sticker-top {
    animation: fadeInPop 0.8s ease forwards, floatStickerTop 3s ease-in-out infinite;
}

.sticker-bottom {
    animation: fadeInPop 0.8s ease forwards, floatStickerBottom 3.5s ease-in-out infinite;
}




/* 📱 RESPONSIVE — hasta 1200px (tablets o pantallas medianas) */
@media (max-width: 1280px) {

    .section-hero {
        flex-direction: column;
        align-items: end;
        justify-content: center;
        padding: 2rem 0;
    }

    .img-bg {
        width: 85%;
        height: 350px;
        border-radius: 150px 0 0 150px;
        position: relative;
        margin: 0;
    }

    .img-bg::before {
        content: "";
        position: absolute;
        inset: 0; /* ocupa todo el contenedor */
        border-radius: 200px 0 0 200px;
        box-shadow: 5px 5px 15px #abe1dccc;
        z-index: -1; /* detrás del contenido */
    }

    .hero-img {
        height: 120%;
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .hero-content .hero-title {
        font-size: 1.6rem;
        left: -10%;
        margin-top: 1rem;
    }


    .sticker-top {
        top: -5px;
        right: 35%;
        font-size: 0.9rem;
    }

    .sticker-bottom {
        left: 80px;
        bottom: -5px;
        font-size: 0.9rem;
    }

    .circle-icon {
        right: 40%;
        bottom: -10px;
        width: 45px;
        height: 45px;
    }

    .stars {
        left: -10px;
        font-size: 1.3rem;
    }
} 


/* 📱 RESPONSIVE — hasta 900px (celulares) */
@media (max-width: 600px) {

    .section-hero {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1.5rem 0;
        margin: 0;
        overflow: hidden;
    }

    .img-bg {
        position: relative;
        width: 100%;                     /* 🔹 Ocupa todo el ancho */
        height: 250px;                   /* 🔹 Más compacta */
        border-radius: 120px 0 0 120px;      /* 🔹 Curva solo al lado izquierdo */
        background-position: right center; /* 🔹 Imagen pegada al lado derecho */
        background-size: cover;
        margin: 0;
    }

    .img-bg::before {
        content: "";
        position: absolute;
        inset: 0; /* ocupa todo el contenedor */
        border-radius: 200px 0 0 200px;
        box-shadow: 5px 5px 15px #abe1dccc;
        z-index: -1; /* detrás del contenido */
    }

    .hero-img {
        height: 90%;
        position: absolute;
        right: 0;                        /* 🔹 Pegada al borde derecho */
        bottom: 0;
        margin: 0;
        z-index: 10;
    }


    .hero-content .hero-title {
        font-size: 0.7rem;
        left: -23%;
        font-weight: 400;
        text-align: start;
        margin-top: 1rem;
        padding: 0 1rem;
        line-height: 1.2;
    }

  /* 🔹 Stickers más pequeños y mejor ubicados */
    .sticker-top {
        top: 5px;
        right: 20%;
        font-size: 0.5rem;
        padding: 0.3rem 0.5rem;
        transform: rotate(-3deg);
    }

    .sticker-bottom {
        left: 30px;
        bottom: 5px;
        font-size: 0.5rem;
        padding: 0.3rem 0.5rem;
        transform: rotate(4deg);
    }

  /* 🔹 Círculo más pequeño y centrado */
    .circle-icon {
        right: 42%;
        bottom: -10px;
        width: 35px;
        height: 35px;
        font-size: 0.7rem;
        
    }

  /* 🔹 Estrellas más pequeñas */
    .stars {
        top: 10px;
        left: 5px;
        font-size: 0.9rem;
    }

    .stars img {
        width: 40px;         /* 🔹 Tamaño base */
        height: auto;        /* 🔹 Mantiene proporción */
        object-fit: contain; /* 🔹 Evita deformaciones */
    }
}


/* 📲 Tablets (como iPad vertical/horizontal) */
@media (min-width: 601px) and (max-width: 1024px) {
    .img-bg {
        width: 100%;
        height: 360px;
        border-radius: 180px 0 0 180px;
        background-position: center right;
    }

    .img-bg::before {
        content: "";
        position: absolute;
        inset: 0; /* ocupa todo el contenedor */
        border-radius: 200px 0 0 200px;
        box-shadow: 5px 5px 15px #abe1dccc;
        z-index: -1; /* detrás del contenido */
    }


    .hero-img {
        height: 100%;
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .hero-content .hero-title {
        font-size: 1.4rem;
        left: -50px;
    }

    .circle-icon {
        width: 50px;
        height: 50px;
        bottom: -10px;
        right: 34%;
    }

    .stars img {
        width: 50px;         /* 🔹 Tamaño base */
        height: auto;        /* 🔹 Mantiene proporción */
        object-fit: contain; /* 🔹 Evita deformaciones */
    }
}



.banner{
    margin: 6rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-container{
    padding: 2rem 1rem;
    width: 60%;
}

.banner-container .banner-title{
    font-size: 2rem;
    font-family: "Noto Sans", sans-serif;
    color: #E76606;
    text-align: center;
    font-weight: 900;

}



.banner-container .banner-text{
    font-family: "Noto Sans", sans-serif;
    color: #fff;
    font-weight: 400;
    padding: 20px;
    font-size: 1rem;
}

.banner-container a{
    font-size: 0.8rem;
    font-family: "Noto Sans", sans-serif;
    max-width: 245px;
    width: 100%;
}

.banner-btn{
    border: 2px solid #C75500;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    max-width: 235px;
    width: 100%;
    text-align: center;
    background: transparent;
    color: #fff;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.banner-btn:hover{
    background-color: #C75500;
    transform: scale(1.08);

}

/* RESPONSIVE DESIGN  */
@media (max-width: 600px) {
    .banner-container .banner-title{
        font-size: 1.5rem;
    }

    .banner-container{
        width: 90%;
    }

    .banner-container .banner-text{
        font-size: 0.8rem;
    }
}






.services{
    margin-top: 4rem;
}

.services-section{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 5rem 5rem;
}

.service-item{
    border-bottom: 2px solid #fff;
    padding-bottom: 1rem;
    margin: 0 7%;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0 7%;
}

.service-header h3{
    color: #ABE1DC;
    font-family: "Black Han Sans", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2rem;
    
}

.arrow-circle {
    width: 60px;
    height: 60px;
    background-color: #c75500;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-family: "Black Han Sans", sans-serif;
    font-weight: 900;
    transition: all 0.3s ease;
}

.arrow-circle:hover {
    transform: translateY(3px);
}

/* Rotar flecha */
.arrow-circle.active {
    transform: rotate(180deg);
    background-color: transparent;
    border: 3px solid #E76606;
    box-shadow: 2px 4px 15px #C75500;
}

.service-description {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.7s ease;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 3.1rem;
}

.service-description.active {
    max-height: 2000px; /* suficiente para mostrar el contenido */
    opacity: 1;
}

.service-container {
    animation: fadeInUp 2s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-services{
    position: relative;
    /* background-color: #646464; */
    width: 100%;
    max-width: 270px;
    border-radius: 10px;
    text-align: center;
    padding: 0.3rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;

}

.card-services:hover{
    transform: scale(1.01);
}

.card-services img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0;
    padding: 0;
    filter: blur(1px); 
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
}

.card-services:hover img{
    opacity: 0;
}

.card-services .title-card-services{
    font-family:'Noto Sans', sans-serif;
    position: absolute;
    top: 4%;
    left: 3%;
    text-align: start;
    z-index: 2;
    color: white;
    padding: 0.6rem;
    font-weight: 800;
    font-size: 1.1rem;
    text-shadow: 3px 0 2px rgb(7, 6, 6);
}

.hover-galeria{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #030F10, #1E2A29); 
    opacity: 0;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.card-services:hover .hover-galeria {
    opacity: 1;
}

.hover-galeria p{
    color: #fff;
    font-family: 'Noto Sans Adlam', sans-serif;
    font-size: 1rem;
    text-align: start;
    font-weight: 400;
}

.hover-galeria p span{
    color: #ABE1DC;
    font-weight: 600;
}

/* RESPONSIVE DESIGN */
@media (max-width: 600px) {

    .services-section {
        margin: 5rem 2rem;
        gap: 1.5rem;
    }

    .service-item {
        margin: 0;
    }

    .service-header {
        padding: 0;
        
    }

    .service-header h3 {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }

    .arrow-circle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .service-description {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .card-services {
        width: 100%;
        max-width: 250px;
        
    }

    .card-services img {
        height: 350px;
    }

    .card-services .title-card-services {
        font-size: 1rem;
    }

    .hover-galeria p {
        font-size: 0.9rem;
    }



    .service-description {
        flex-direction: column;
        align-items: center;
        transition: none;
    }


}


/* div Marquee */

.marquee {
    width: 100%;
    display: flex;
    align-items: center;
    height: 100px;
    overflow: hidden;
    background-color: #ABE1DC;
    position: relative;
    white-space: nowrap;
    margin: 6rem 0;
}

.marquee-content {
    display: inline-flex; /* Importante: duplicación horizontal */
    animation: scroll-left 7s linear infinite;
}

.marquee-content span {
    font-size: 2.8rem;
    font-weight: bolder;
    font-style: italic;
    font-family: 'Noto Sans Adlam', sans-serif;
    font-weight: 900;
    color: #030F10;
    /* text-shadow: 2px 5px 10px #000000; */
    text-shadow: 2px 5px 10px #ffffff8f; 
    padding-right: 4rem; /* Espacio entre las repeticiones */
}
    
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* RESPONSIVE DESIGN  */
@media (max-width: 768px) {

    .marquee-content span{
    font-size: 2.2rem;
    }
}


/* PREGUNTAS FRECUENTES */

.faq{
    padding: 2rem 0;
    padding-bottom: 3rem;
}

.faq h3{
    font-family: "Black Han Sans", sans-serif;
    color: #fff;
    font-size: 1.8rem;
    margin: 1.5rem 0;
    text-align: center;
    font-weight: 500;
    
}

.faq_div{
    max-width: 65%;
    margin: 10px auto;
}

.accordion{
    color: #fff;
    cursor: pointer;
    background-color: #030F10;;
    font-size: 1.2rem;
    width: 100%;
    padding: 2rem 2.5rem;
    border: none;
    outline: none;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-family: 'Noto Sans Adlam', sans-serif!important;
}


.accordion i{
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.accordion i:hover{
    transform: translateY(3px);
}

.active-faq, .accordion:hover{
    background-color: #002722;
}

.answer{
    font-family: 'Noto Sans Adlam', sans-serif;
    padding: 1rem 2rem 2.5rem 2rem;
    background-color: #030F10;;
    display: none;
}

.answer p{
    font-family: 'Noto Sans Adlam', sans-serif;
    color: #E1E1E1;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 500;
}

.faq_div{
    border-bottom: 2px solid rgba(255, 255, 255, 0.603);
}

.faq_div.active{
    border: none;
}

/* RESPONSIVE DESIGN  */
@media (max-width: 768px) {

    .faq h3{
    font-size: 1.6rem;
    }

    .accordion{
        text-align: start;
        font-size: 1.1rem;
    }

    .faq_div{
        max-width: 85%;
    }

    .answer p{
        font-size: 1.1rem;
    }
}

.contacto{
    background:linear-gradient(to bottom,#030F10,#000000);
}

.last_banner{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 0;
}

.last_banner_container{
    width: 100%;
}

.last_banner_container p{
    font-size: 1.6rem;
    color: #fff;
    font-weight: 900;
    font-family: "Lato", sans-serif;
}

.last_banner_container a{
    margin: 1.8rem 0;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    display: inline-block; /* Necesario para aplicar padding y border */
    background-color: #C75500;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    margin-bottom: 1rem;
    transition: 0.4s;
    font-family: "Lato", sans-serif;
}

.last_banner_container a:hover{
    background-color: #fff;
    color: #C75500;
    font-size: 1.3rem;
    transform: scale(1);
}

/* RESPONSIVE DESIGN */

@media (max-width:768px){
    .last_banner_container{
        margin: 0 10px;
    }

    .last_banner_container p{
        font-size: 1.1rem; 
    }

    .last_banner_container a{
        font-size: 1rem;
    }

    .last_banner_container a:hover{
        font-size: 1.1rem;
    }

}

.contact-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

/* .contact-info{
    flex-direction: column;

} */

.contact-info-icons{
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-info-icons:hover{
    color: #E76606;
    transform: translateY(-6px);
}

.contact-info-icons i{
    font-size: 2rem;
    color: #fff;
    background-color: #C75500;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 1px 1px 2px #ffffff;
}
.contact-info-icons .fa-location-dot {
    font-size: 2.2rem;
    padding: 10px 13px;
}

.contact-info-icons .fa-whatsapp {
    font-size: 2.2rem;
    padding: 10px 11px;
}

.contact-info-icons p{
    font-size: 1rem;
    color: #fff;
    font-family: 'Noto Sans Adlam', sans-serif;
}

form{
    background: #102729;
    padding: 30px 30px;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 0 20px #abe1dc62;
    font-size: 16px;
    margin-bottom: 40px;
    border-radius: 15px;
    box-sizing: border-box;
    border: black;
}

.form_input{
    font-family: 'Noto Sans Adlam', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    border: none;
}

fieldset{
    border:none;
    padding: 0 5px 20px 5px;
    margin: 20px;
}

label{
    color: #fff;
    font-size: 0.9rem;
    padding-left: 10px;
    line-height: 2;
}

input, textarea{
    width: 100%;
    box-sizing: border-box;
    padding: 10px 8px;
    border: 1px solid #AEAEAE;
    background: transparent;
    border-radius: 5px;
    color: #fff;
    font-size: 0.9rem;
}

textarea{
    resize: vertical;
    min-height: 102px;
    min-width: 100%;
}

input:focus,
textarea:focus{
    border-color: #AEAEAE;
    outline: none;
    box-shadow: none;
}

.btn_enviar {
    display: flex;
    justify-content: flex-end; 
}

.btn{
    background-color: #fff;
    color: #000;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 50px;
    border: transparent;
    text-align: center;
    font-size: 0.9rem;
    transition: 0.4s;
    margin: 0 30px;
    cursor: pointer;
    font-family: 'Noto Sans Adlam', sans-serif;
}

.btn:hover{
    color: #C75500;
    font-size: 1rem;
}

/* RESPONSIVE DESIGN */

@media (max-width:768px){
    .contacto{
        padding: 0 25px;
        
    }

    fieldset{
        margin: 10px 0;
    }

}





footer{
    background-color: #000;
    padding-top: 1rem;
}

.footer{
    padding-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding-bottom: 2rem;
    border-top: 1px solid #ffffff38;
}

.footer-media-icons{
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    align-items: center;
    font-family: 'Noto Sans Adlam', sans-serif;
    font-weight: 500;
    font-size: 1rem;
}

.footer-media-icons i{
    font-size: 1.6rem;
    color: #fff;
    transition: all 0.3s ease;
}


.footer-media-icons p{
    color: #fff;
    transition: all 0.3s ease;
}


.footer-media-text{
    color: #fff;
    font-family: 'Noto Sans Adlam', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 1.2rem 0;
}

.footer-text-title{
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-media-text a{
    color: #fff;
}

.fa-linkedin:hover, .fa-tiktok:hover, .fa-instagram:hover, .footer-media-icons p:hover{
    color: #E76606;
    transform: translateY(-6px);
}

.footer-media-text a:hover{
    color: #E76606;
}


.copyright{
    text-align: center;
    padding-top: 20px;
    color: #fff;
    text-align: center;
    font-family: 'Noto Sans Adlam', sans-serif;
    font-size: 1rem;
    padding-bottom: 1rem;
}

/* RESPONSIVE DESIGN */

@media (max-width:768px){
    .footer{
        gap: 1rem;
    }

    .footer-media-text{
        font-size: 0.9rem;
    }

    .footer-media-icons{
        font-size: 0.9rem;
    }

    .footer-media-icons i{
        font-size: 1.5rem;
    }

    .copyright{
        font-size: 0.8rem;
    }

}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    border-radius: 50%;   
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden; /* evita grietas en móvil */
}

.whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.whatsapp-btn a {
    color: white;
    font-size: 30px;
    display: flex;
}


/* RESPONSIVE DESIGN*/
@media (max-width: 480px) {
    .whatsapp-btn {
        width: 42px;
        height: 42px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn a {
        font-size: 28px;
    }
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

body {
    position: relative;
}

header,
main,
section,
footer {
    max-width: 100%;
    overflow-x: hidden;
}

header {
    width: 100%;
}

.carrousel-container {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.carrousel-img {
    max-width: 100%;
}

img {
    max-width: 100%;
}

[data-aos="fade-right"],
[data-aos="fade-left"],
[data-aos="fade-up-left"],
[data-aos="zoom-out-left"] {
    overflow-x: hidden;
}
