*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;


}

body {
    margin: 0;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: block;
}

.logo img {
    width: 180px;
    margin: auto;
}
li{
    list-style: none;

}
a{
    text-decoration: none;
    color: #000000;
    font-size: 0.9rem;
}
.navbar a:not(.active):hover {
    color: #038036; 
}

.active {
    color: #fff;
    background-color: #038036; 
    padding: 11px 50px;
    border-radius: 7px; 
}



header{
    width: 100%;
    background-color: #ffffff;
    position: fixed;
    z-index: 10000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.navbar{
    position: relative;
    width: 80%;
    max-width: 1350px;
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .links{
    display: flex;
    gap: 2rem;
}
.navbar .toggle{
    color: #038036;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}
.redes-sociales{
    display: flex;
    gap: 30px;

}
.redes-sociales a{
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
}

.menu_desplegable.open + .toggle .redes-sociales {
    display: none;
}

/*MENU DESPLEGABLE*/
.menu_desplegable{
    display: none;
    position: fixed;
    right: 2.5rem;
    top: 80px;
    height: 0;
    width: 300px;
    background: #ffffff;
    backdrop-filter: blur(15px);
    border-radius: 14px;
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.4);
}
.menu_desplegable.open{
    height: 242PX;
}

.menu_desplegable li{
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu_desplegable li:last-child{
    display: flex;
    gap: 30px;
}

/*DISEÑO RESPONNSIVE*/
@media (max-width: 970px) {
    .navbar .links,
    .navbar .redes-sociales {
        display: none;
}
.navbar .toggle {
    display: block;
}
.menu_desplegable {
    display: block;
}
}
@media (max-width: 576px) {
    .menu_desplegable{
        left: 2.5rem;
        width: unset;
    }
}


.whatsapp-button {
    width: 80px;
    height: 80px;
    position: fixed;
    bottom: 65px;
    right: 15px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    font-size: 50px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
    animation-delay: 0.4s;  
}

.whatsapp-button{
    opacity: 0;
    transform: translatex(20px); /* Empiezan desplazados hacia abajo */
    animation: entradaDesdeDerechaS 1s forwards;
    animation-delay: 1s;
}

.whatsapp-button :hover{
    transform: scale(1.1);
}

@keyframes entradaDesdeDerechaS {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*CARRUSEL*/

.main-container {
    position: absolute;  /* Necesario para que el contenedor absoluto se centre */
    width: 100%;        /* Asegura que ocupe toda la ventana */
    height: 20%;       /* Asegura que ocupe toda la ventana */
}

.rueda-container {
    position: absolute;
    top: 50%;            /* Posiciona el centro del contenedor en el centro vertical */
    left: 50%;           /* Posiciona el centro del contenedor en el centro horizontal */
    transform: translate(-50%, -50%); /* Ajusta para centrar el elemento */
    z-index: 100;
    align-items: center;
}

.rueda-container img {
    width: 120px;        /* Ajusta el tamaño según necesites */
    animation: girar 8s linear infinite;
}

@keyframes girar {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



.slider{
    top: 72px;
    max-width: 100vw;
    height: 90vh;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
}
.slider .list{
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}
.slider .list img{
    width: 100vw;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}
.slider .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
    
}
.slider .buttons button{
    z-index: 1001;
    font-size: 55PX;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0);
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
    opacity: 0.7;
    border-radius: 50%;
    
}


.slider .puntos{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slider .puntos li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}
.slider .puntos li.activo{
    width: 30px;
}

@media screen and (max-width: 478px){
    .slider .list .item:nth-child(3) img {
        overflow: hidden;
        left: 300px;
    }
    .slider{
        height: 92vh;
    }

}

/*CARRUSEL_contenido*/

/*SLIDER IMAGEN 1*/
.letras {

    font-family: montserrat;
    font-weight: 700;
    width: 45%;
    margin: auto;
    position: absolute;
    top: 53%;
    left: 28%;  
    transform: translateY(-50%);
    z-index: 1000;
    text-align: center;  
}

.letras img{
    animation-delay: 0,5s;
    width: 58%;
    margin-bottom: 4.8%;
    transform: translateY(-50%);
    animation: entradaDesdeArriba 1s forwards;
}
.letras div {
    font-size: 2.1rem;
    color: #fff; 
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}


.butt {
    margin-top: 30px; 
}

.butt a {
    font-family: montserrat_bold;
    font-weight: 500;
    width: 250px; 
    display: inline-block; 
    font-size: 17px;
    background-color: #038036;
    color: #fff;
    border: none;
    padding: 20px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
    overflow: hidden;
    margin: 5px;
}

.butt .but_1::after {
    content: "";
    width: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: calc(-100% - 80px);
    border-bottom: 80px solid #6A952F;
    border-right: 80px solid transparent;
    transition: .3s ease-in-out all;
    z-index: -1;
}

.butt .but_1:hover::after {
    left: 0;
}

.butt .but_2 {
    border: 1px solid #fff; 
    background-color: transparent;
}

.butt .but_2:hover {
    background-color: #ffffff42; 
    color: #fff; 
}

.letras .letra_1, .letras .letra_3 {
    opacity: 0;
    transform: translateX(50px); /* Empiezan fuera de la pantalla a la derecha */
    animation: entradaDesdeDerecha 1s forwards;
}

.letras .letra_2 {
    opacity: 0;
    transform: translateX(-50px); /* Empiezan fuera de la pantalla a la izquierda */
    animation: entradaDesdeIzquierda 1s forwards;
}

/* Animación para la entrada de los botones */
.butt .but_1 {
    opacity: 0;
    transform: translateY(20px); /* Empiezan desplazados hacia abajo */
    animation: entradaDesdeAbajo 1s forwards;
    animation-delay: 0.4s;
}

.butt .but_2 {
    opacity: 0;
    transform: translateY(20px);
    animation: entradaDesdeAbajo 1s forwards;
    animation-delay: 0.8s; 
}

/* Media queries para hacer responsive */
@media screen and (max-width: 870px) {
    .letras {
        left: 12.2%;
        width: 70%; 
        text-align: center;
    }
    .letras div{
        font-size: 2rem;
    }
    .butt a {
        width: 60%; 
    }
}

@media screen and (max-width: 570px) {
    .letras {
        font-size: 0.4rem;
        width: 75%; 
    }
    .letras img{
        width: 85%;
        margin-bottom: 8%;
    }
    .letras div{
        font-size: 1.4rem;
    }
    .butt a {
        width: 80%;
    }
}

/* Animación para la entrada desde la derecha */
@keyframes entradaDesdeDerecha {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animación para la entrada desde la izquierda */
@keyframes entradaDesdeIzquierda {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animación para la entrada desde abajo */
@keyframes entradaDesdeAbajo {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*SLIDER IMAGEN 2*/

/* Estilos generales */
.letras_one {
    font-family: montserrat;
    font-weight: 500;
    width: 50%;
    position: absolute;
    top: 55%;
    left: 25%;    
    transform: translateY(-50%);
    z-index: 1000;
    text-align: center;  
}

.letra_0 {
    font-family: montserrat;
    font-weight: 600;
    line-height: 1;
    animation: entradaDesdeArriba 1s forwards;
    animation-delay: 0,9s;
    
}
.letras_one img{
    width: 50%;
    animation-delay: 0,5s;
}

.letra_0.grande{
    opacity: 0;
    transform: translateX(50px); /* Empiezan fuera de la pantalla a la derecha */
    animation: entradaDesdeDerecha 1s forwards;
}
.letra_0.mediana{
    font-weight: 400;
    margin: auto;   
    width: 85%;
    line-height: 1.1; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateX(50px); /* Empiezan fuera de la pantalla a la derecha */
    animation: entradaDesdeIzquierda 1s forwards;
}

.letras_one div {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff; 
}

/* Botón */
.butt_one {
    position: relative;  
    margin-top: 30px;
    overflow: hidden;
}

.butt_one a {
    font-family: montserrat_bold;
    font-weight:900;
    font-size: 17px;
    background-color: #038036;
    color: #fff;
    padding: 20px 20px;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    position: relative; 
    z-index: 10; 
    overflow: hidden;
}

.butt_one{
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px); 
    animation: entradaDesdeAbajo 1s forwards;
    animation-delay: 0.4s;

}

.butt_one a::after {
    content: "";
    width: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: calc(-100% - 80px);
    border-bottom: 80px solid #6A952F;
    border-right: 80px solid transparent;
    background-color: #6A952F;
    transition: .3s ease-in-out all;
    
}

.butt_one a:hover::after {
    left: 0;
}

/* Media queries para hacer responsive */
@media screen and (max-width: 870px) {
    .letras_one {
        font-size: 1rem;
        width: 60%; 
        left: 20%; 
        text-align: center;
    }
    .letras_one div {
        font-size: 1.4rem;
    }
    .butt_one a {
        width: 50%; 
    }
}

@media screen and (max-width: 470px) {
    .letras_one {
        left: 18.5%;
        width: 63%;
    }
    .letras_one img{
        width: 100%;
    }
    .letra_0.mediana{
        width: 100%;
    }
    .letras_one div {
        font-size: 1.1rem;
        font-weight: 500;
    }
    .butt_one a {
        width: 100%; 
    }
}

/* Animación para entrada desde arriba hacia abajo */
@keyframes entradaDesdeArriba{
    from {
        transform: translateY(-30%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animación para entrada desde abajo hacia arriba */
@keyframes entradaDesdeAbajo_1{
    from {
        transform: translateY(80%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}



/* IMAGEN 3*/

.letras_two{
    margin: 0 auto;  
    position: absolute;
    top: 55%;  
    left: 50%;  
    transform: translate(-50%, -50%);  
    z-index: 1000;
    text-align: center;

}
.letras_two div{
    font-size: 2rem;
    color: #e6e1e1;
    font-family: Arial, Helvetica, sans-serif;
    font-weight:700;
    max-width: 800px; 
    line-height: 1.2;
    animation: entradaDesdeArriba_3 1s forwards;
    animation-delay: 0,9s;
    
}
.letra_32{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    margin: auto;
    width: 80%;
}

.letras_two img{
    width: 50%;
    margin-bottom: 30PX;
    animation: entradaDesdeArriba_3 1s forwards;
    animation-delay: 0,5s;
}


.butt_two {
    position: relative;  
    margin-top: 30px;
    overflow: hidden;
}

.butt_two a {
    font-family: montserrat_bold;
    font-weight:900;
    width: 250px;
    font-size: 17px;
    background-color: #038036;
    color: #fff;
    padding: 20px 20px;
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    position: relative; 
    z-index: 10; 
    overflow: hidden;
    animation: entradaDesdeAbajo_1 1s forwards;
    transform: translateY(-50%);
}

.butt_two a::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #6A952F;
    position: absolute;
    z-index: -1;
    top: -100%;
    left: 0;
    transition: .3s ease-in-out all;
}

.butt_two a:hover::after {
    top: 0;
    box-sizing: border-box;
}
.butt_two{
    opacity: 0;
    transform: translateY(20px); /* Empiezan desplazados hacia abajo */
    animation: entradaDesdeAbajo_3 1s forwards;
    animation-delay: 0.4s;

}
/* Media queries para hacer responsive */
@media screen and (max-width: 870px) {
    .letras_two {
        font-size: 0.8rem;
        width: 70%; 
        text-align: center;
        font-family: montserrat;
        font-weight: 600;
    }
    .letras_two div{
        font-size: 1.4rem;
    }
    .butt_two  a {
        width: 60%;
    }
}

@media screen and (max-width: 470px) {
    
    .letras_two  {
        font-size: 0.7rem;
        width: 70%; 
        text-align: center;
        font-family: montserrat;
        font-weight: 500;
    }
    .letras_two div{
        font-size: 1.1rem;
    }
    .butt_two  a {
        width: 80%; 
    }
    .letras_two img{
        width: 90%;
        margin-bottom: 5%;

    }
}

@keyframes entradaDesdeArriba_3{
    from {
        transform: translateY(-30%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

section{
    display: block;
}

/* INFORMACION */

.sumita{
    position: relative;
    padding: 3%;
    box-sizing: border-box;
    z-index: 3;

}
p{
    font-family: montserrat;
    font-weight: 600;
    color: #00170A;
    
}
.information{
    position: relative;
    margin: auto;
    width: 82%;
    max-width: 1350px;
    display: flex;

}
.somos_gr{
    font-size: 1.2rem;
    width: 45%;
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-left: 0%;
    box-sizing: border-box; 
    text-align: justify;
    line-height: 1.5;
    opacity: 0;
    transition: opacity 1s ease-out, transform 0.8s ease-out;
}
.somos_gr {
    transform: translateX(-100px);
}
    
.somos_gr img{
    padding-top: 8%;
    padding-bottom: 8%;
    width:  65%;
    display: block;
    margin: auto;
}
.conocenos{
    padding-top: 8%;
    margin: auto;

}
.conoc{    
    color: #fff;
    border: none;
    font-family: montserrat_bold;
    font-weight:900;
    width: 250px;
    font-size: 17px;
    background-color: #038036;
    padding: 20px 20px;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    position: relative; 
    z-index: 10; 
    overflow: hidden;
    animation: entradaDesdeAbajo_1 1s forwards;
    transform: translateY(-50%);
}     
.conocenos .conoc a {
    font-weight: 600;
    color: #fff;
}
.conocenos .conoc::after {
    content: "";
    width: 100%;
    position: absolute;
    z-index: -100000;
    top: 0;
    left: calc(-100% - 80px);
    border-bottom: 80px solid #6A952F;
    border-right: 80px solid transparent;
    transition: 0.3s ease-in-out all;
}

.conocenos .conoc:hover:after {
    left: 0;
}
.image{
    width: 50%;
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-right: 0%;
    opacity: 0;
    transition: opacity 1s ease-out, transform 0.8s ease-out;
}
.image {
    transform: translateY(100px);
}
.somos_gr.visible, .image.visible {
    opacity: 1;
    transform: translateX(0);
}
.image.visible {
    transform: translateY(0);
}

@media screen and (max-width: 1280px){

    .information{
        width: 100%;
    }
}
@media screen and (max-width: 780px){

    .somos_gr img{
        padding-top: 4%;
        width: 55%;
    }
    .information{
        padding-top: 5%;
        width: 95%;
        display: block;
        position: relative;
    }
    .somos_gr{
        width: 100%;
    }
    .information .image{
        z-index: 1000;
        padding-top:8%;
        padding-bottom:8%;
        width: 110%;
        left: -5%;
        position: relative;
    }
}
@media screen and (max-width: 470px) {
    .sumita{
        position: relative;
        
    }
    .somos_gr img{
        padding-top: 4%;
        width: 80%;
    }
    .information{
        padding-top: 5%;
        width: 95%;
        display: block;
        position: relative;
    }
    .somos_gr{
        width: 100%;
    }
    .information .image{
        z-index: 1000;
        padding-top:8%;
        padding-bottom:8%;
        width: 110%;
        left: -5%;
        position: relative;
    }
}
/* CARRUSEL DE CLIENTES */

.trabaj{
    padding: 3%;
    background-color:#f0ebeb;
    border-radius: 40px 40px 0 0;
}
h3{
    width: 100%;
    color: #038036;
    text-align: center;
    font-size: 2rem;
    font-family: montserrat_bold;
    font-weight: 700;
    padding: 2%;

}
.client-carousel {
    width: 100%;
    max-width: 1350px;
    margin: auto;
    display: flex;
    gap: 40px;
    overflow-x: auto; /* Solo permite el desbordamiento horizontal */
    overflow-y: hidden; /* Evita el desbordamiento vertical */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* Para mejorar la experiencia en dispositivos móviles */

}

.client-slide {
    flex: 0 0 auto;
    scroll-snap-align: start;
    margin: auto;
    opacity: 0;
    transform: translateY(60px); /* Trasladar hacia abajo y reducir escala */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.client-slide img {
    width: 200px; 
    height: auto; 
    padding: 5%;
}

.client-slide.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}


@media screen and (max-width: 470px){
    .client-carousel{
        width: 100%;
        margin: auto;
        margin-bottom: 10%;
    }
    .client-carousel img{
        width: 250px;
        margin-left: 25px; 
    }
}

@media screen and (max-width: 470px){
    .client-carousel{
        width: 95%;
        margin: auto;
        margin-bottom: 10%;
    }
    .client-carousel img{
        width: 300px;
        margin-left: 30px; 
    }
    h3{
        font-size:1.5rem ;
    }
}

/* Estilos iniciales para ocultar la tarjeta */
.tarjeta-personal {
    opacity: 0;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 1001;
    pointer-events: auto;
    transition: opacity 0.4s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(100%);
    padding-bottom: 50px;
}


/* Mostrar la tarjeta con animación */
.tarjeta-personal.show {
    opacity: 1;
    pointer-events: none;
    transform: translateY(0); /* Deslizar hacia arriba */
}

/* Fondo oscuro para el modo modal */
#modalBackground {
    display: none; /* Oculta el fondo por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

/* Estilos específicos de la tarjeta */
.target {
    pointer-events: all;
    margin-bottom: 0;
    position: relative;
    margin: auto;
    width: 355px;
    height: 300px;
    color: #e9e8e8;
    background: linear-gradient(to top,#09863b 0%,#003515 66%);
    text-align: center;
    border-radius: 30px 30px 0 0;
    padding-top: 80px;
    z-index: 1002;
    

}
.target::before {
    content: "";
    display: flex;
    pointer-events: all;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 12px;
    width: 95%;
    height: 90px;
    z-index: -10;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.13);
    transform-origin: bottom;
    transition: transform 0.5s, height 0.5s;
}



.target:hover::before {
    height: 181px;
    border-radius: 20px;
    animation: none; 
}



.target img {
    pointer-events: none;
    width: 140px;
    border-radius: 100%;
    position: absolute;
    top: -66px;
    left: 50%;
    transform: translateX(-50%);

}

.ame {
    margin: 38px 0 15px;
    transition: margin 0.5s; /
}
.target:hover .ame {
    margin: 30px 0 29px; 
}
.marcando{
    top: 125px;
    left: 50%;
    position: absolute; 
    
}
.marcando img{
    width: 40px;
    height: auto;
    border: none;
}
.ame h5 {
    margin: 10px 0 5px;
    font-size: 20px;
    letter-spacing: 0.4px;
    font-family: montserrat_regular;
    font-weight: 900;
}

.ame h6 {
    margin: 5px 0 px;
    font-size: 16px;
    color: #ccc;
    font-weight: 100;
    font-family: montserrat_regular;
}

.morkus {
    display: flex;
    gap: 28px;
    justify-content: center;
    align-items: center;
}

.morkus {
    display: flex;
    gap: 28px;
    justify-content: center;
    align-items: center;
}

.morkus a {
    z-index: 1001;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    color: #e9e8e8;
    font-size: 2.2rem;
    transition: color 0.3s;
    background-color: #111010;
    border-radius: 100px;
    pointer-events: all;
    transition: transform 0.27s ease-in-out;
}

.morkus a:hover {
    background-color: #000000;
    transform: scale(1.15);
    box-shadow: 0 9px 8px rgba(0, 0, 0, 0.7);
}


/* PIE DE PAGINA */

.ultim{
margin: auto;
width: 100%;
background-image: url(../Imagenes/font.png);
background-attachment: fixed; 
overflow: hidden;
box-sizing: border-box;
display: flex; 
justify-content: center; 
align-items: center; 
flex-direction: column;
padding: 2%;
}

.ultim .tifu{
    color: #fff;
    width: 82%;
    max-width: 1350px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 40px;
    padding: 45px 0px;
}

.sptun{
    font-family: montserrat_bold;
    margin: auto;
    width: 100%;
    padding: 20px;
    text-align: center;
    font-size:22px;
    color:#f0ebeb;
    background-color: #038036;
    border-radius: 50px;
    transition: all 300ms ease;
}

.sptun:hover{
    background-color: #6A952F;
}

.conta_tos {
    font-family: montserrat_bold;
    font-size: 18px;
    color: #fff;
    margin: auto;
    width: 250PX;
    justify-content: center;
    align-items: center;
    background-color: #038036; 
    border: none; 
    border-radius: 50px; 
    text-decoration: none;
    transition: all 300ms ease;
    padding: 20PX;
    text-align: center;
}



.conta_tos:hover {
    background-color: #5c7f28; 
}

.pie-pagina{
    position: relative;
    width: 100%;
    background-color: #00170A;
    text-align: center;
}

.pie-pagina .grupo-1{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 50px;
    padding: 45px 0px;

}
.pie-pagina .grupo-1 .box figure{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box{
    margin: 20px;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    flex-direction: column;
}
.box img{
        width:250PX;
    }
    .grid p{
        font-family: montserrat_bold;
    }
    .box p{
        font-family: montserrat;
        font-weight: 600;
    }
    .pie-pagina .grupo-1 .box p{
        color: #fff;
        margin-bottom: 10PX;
    }
    .re-social a {
        display: inline-flex; 
        justify-content: center; 
        align-items: center; 
        width : 70px;
        height: 70px; 
        font-size: 1.7rem;
        background-color: #038036; 
        color: #ffffff; 
        border-radius: 50%;
        margin: 7px; 
        text-decoration: none; 
        transition: all 300ms ease;
    }
    .re-social a:hover{
        background-color: #6A952F;
    
    }
    .pie-pagina .all-derechos{
        background-color: #038036;
        color: #fff;
        text-align: center;
        padding: 15PX 10PX;
    }
    .pie-pagina .all-derechos{
        font-size: 1.1rem;
    }
    .all-derechos img{
        height: 0.85rem;
    }

    @media screen and (max-width: 870px) {
    
        .pie-pagina .grupo-1{
            width: 80%;
            grid-template-columns: repeat(1,1fr);
            grid-gap: 40px;
            padding: 45px 0px;
        }
        .grupo-1 a img{
            width: 150PX;
        }
        .box{
            margin: 3px;
        }
        .ultim .tifu{
            grid-template-columns: repeat(1,1fr);
            width: 80%;
        }
        .sptun{
            font-size: 1.9rem;
        }
        .conta_tos{
            width: 60%;
        }
    }
    @media screen and (max-width: 470px) {
    
        .pie-pagina .grupo-1{
            width: 80%;
            grid-template-columns: repeat(1,1fr);
            grid-gap: 40px;
            padding: 45px 0px;
        }
        .grupo-1 a img{
            width: 70%;
        }
        .box{
            margin: 3px;
        }
        .ultim .tifu{
            grid-template-columns: repeat(1,1fr);
            width: 80%;
        }
        .sptun{
            border-radius: 20px;
            font-size: 1.5rem;
        }
        .conta_tos{
            width: 82%;
        }
    }
    