.about-us{
    display: flex;
    flex-direction: column;
    padding: 1rem;
    align-items: center;
}
.about-us-title{
    font-family: var(--font-family-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tertiary-color);
    margin: 0 auto;
    padding: 1.688rem 0;
    text-transform: uppercase;
    /* word-spacing: .3rem; */

}
.about-us-subtitle{
    font-family: var(--font-family-text);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 auto;
    padding-bottom: 1.688rem;
}
.about-us-description{
    font-family: var(--font-family-text);
    font-size: 1rem;
    font-weight: 400;
    padding-bottom: .5rem;
}
.about-us-picture{
    margin: 0 auto;
    padding: 1.688rem 0;
}
.about-us-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.btn-know-more{
    text-decoration: none;
    /* display:inline-block; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-family-text);
    font-size: 1rem;
    font-weight: 400;
    min-width: 300px;
    min-height: 40px;
    width: auto;
    height: auto;
    background-color: var(--button-know-more-color);
    color: var(--white);
    border-radius: 4px;
    margin: 1rem 0; 
    padding: 0.5rem 12px;
    transition: all 0.3s ease;

}
.btn-know-more:hover{
    background-color: var(--button-know-more-color-hover);
}
@media (min-width: 768px){
    .about-us{
        padding: 1rem 2rem;
    }
    .about-us-title {
        font-size: 1.5rem; /* 24px */
    }
    .about-us-subtitle {
        font-size: 1.125rem; /* 18px */
    }
    .about-us-description {
        font-size: 1rem; /* 16px */
    }
    .btn-know-more {
        font-size: 1.125rem; /* 18px */
    }
}

@media (min-width: 1024px){
    .about-us{
        margin: 0 auto;
        padding:2.5rem 5rem;
        max-width: 1440px;
    }
    .about-us-title {
        width: 100%;
        margin:0;
        text-align: left;
    }
    .about-us-subtitle{
        width: 100%;
        text-align: left;
    }
    .btn-know-more {
        font-size: 1.25rem; /* 20px */
    }
}

/* services section */
.services{
    display: flex;
    flex-direction: column;
    padding: 1rem;
    align-items: center;
    padding-top:0
}
.services-title{
    font-family: var(--font-family-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tertiary-color);
    margin: 0 auto;
    padding: 1.688rem 0;
    text-transform: uppercase;
    /* word-spacing: .3rem; */

}
.services-subtitle{
    font-family: var(--font-family-text);
    font-size: 1.125rem;
    font-weight: 600;
    /* margin: 0 auto; */
    padding-bottom: 1.688rem;
}
.services-description{
    font-family: var(--font-family-text);
    font-size: 1rem;
    font-weight: 400;
    padding-bottom: .5rem;
    text-align: left;
    align-self: flex-start;
}
.services-picture{
    margin: 0 auto;
    padding: 1.688rem 0;
}
.services-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services-wrapper-cards{
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    /* gap: 1rem; */
    gap:2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem 0;
}
.services-card{
    background-color: var(--background-color-card);
    border-radius: 24px;
    width: 300px;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.services-card-banner{
    background-color: var(--secondary-color);
    border-radius: 24px 24px 0 0;
    width: 100%;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    padding-top: .5rem;
}
.services-card-banner-title{
    max-width: 100%;
    font-family: var(--font-family-text);
    font-size: 1rem;
    color: var(--tertiary-color);
    text-align: center;
    font-weight: 500;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    flex-shrink: 1;
}

.services-card-banner-image{
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.services-card-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: .5rem;
    align-items: center;
    flex-grow: 1;
}
.services-card-text{
    font-family: var(--font-family-text);
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    color: var(--color-text-card);
}

.btn-know-more{
    text-decoration: none;
    /* display:inline-block; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-family-text);
    font-size: 1rem;
    font-weight: 400;
    min-width: 300px;
    /* max-width: 300px; */
    min-height: 40px;
    width: auto;
    height: auto;
    background-color: var(--button-know-more-color);
    color: var(--white);
    border-radius: 4px;
    margin: 1rem 0; 
    padding: 0.5rem 12px;
    transition: all 0.3s ease;
}
.btn-know-more:hover{
    background-color: var(--button-know-more-color-hover);
}
@media (min-width: 768px){
    .services{
        padding: 1rem 2rem;
        padding-top:0
    }
    .services-title {
        font-size: 1.5rem; /* 24px */
    }
    .services-subtitle {
        font-size: 1.125rem; /* 18px */
        align-self: flex-start;
    }
    .services-description {
        font-size: 1rem; /* 16px */
    }
    .btn-know-more {
        font-size: 1rem; /* 18px */
    }
    .services-card{
        
        width: 400px;
        /* min-height: 290px; */
        
    }
    .services-wrapper-cards{
        width: 100%;
    }
    
}

@media (min-width: 1024px){
    .services{
        margin: 0 auto;
        padding:2.5rem 5rem;
        max-width: 1440px;
        padding-top:0
    }
    .services-title {
        width: 100%;
        margin:0;
        text-align: left;
    }
    .services-subtitle{
        width: 100%;
        text-align: left;
        align-self: flex-start;

    }
    .btn-know-more {
        font-size: 1rem; /* 20px */
    }
}
/* logros */
.achievements{
    color: var(--white);
    width: 100%;
    height: auto;
    padding: 1rem 0;
}
.achievements-wrapper{
    background-color: var(--primary-color);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.achievements-title{
    font-family: var(--font-family-title);
    color: var(--secondary-color);
    text-transform: uppercase;
    /* align-self: flex-start; */
    padding-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    align-self: center;
}
.achievements-year{
    font-family: var(--font-family-text);
    font-size:2rem;
    font-weight:500;
    padding-bottom: .5rem
}
.achievements-description{
    font-family: var(--font-family-text);
    font-size:1.25rem;
    font-weight: 400;
    text-align: center;
    padding-bottom: .5rem;
}
.achievements-date{
    font-family: var(--font-family-text);
    font-size:0.75rem;
    font-weight: 400;
    color: var(--secondary-color);
}
.achievements-wrapper-cards{
    display: flex;
    padding: 1rem 0;
    margin: 0 auto;
    width: 90%;
    font-family: var(--font-family-text);
    font-weight: 400;
    
}
.achievements-left-cards{
    width: 50%;
}
.achievements-right-cards{
    width: 50%;
}
.achievements-card{
    width: 100%;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: .5rem;
}
.achievements-card-number{
    font-size:2rem;
    font-weight: 500;
}
.achievements-card-text{
    font-size:0.75rem;
    text-align: center;
    min-height: 50px;
}
.achievements-card-last{
    color: var(--secondary-color);
}
.achievements-description .bold-year{
    font-weight: 700;
}
.bold-year span{
    font-weight: 400;
}
@media (min-width: 768px){
    /* Logros - Tablets */
    .achievements-title{
        font-size: 1.5rem;
        /* padding: 1rem 2rem; */
        /* align-self: center; */
        max-width: 1440px;
        /* margin: 0 auto; */
        width: 100%;
        text-align: center;


    }
     .archievements-wrapper{
        padding: 1rem 2rem;
     }
    .achievements-year{
        font-size: 2.25rem;
    }
    .achievements-description{
        font-size: 1.5rem;
    }
    .achievements-date{
        font-size: 1rem;
    }
    .achievements-card-number{
        font-size: 2.25rem;
    }
    .achievements-card-text{
        font-size: 1rem;
    }
}
@media (min-width: 1024px){
    .archievements{
        width: 100%;
        background-color: var(--primary-color);
        max-width: 1440px;
        padding:2.5rem 5rem;


    }
    .achievements-wrapper{
        margin: 0 auto;
        padding: 2.5rem 5rem;
        /* max-width: 1440px; */
    }
    .achievements-title {
        width: 100%;
        /* margin: 0 auto; */
        /* padding: 1rem 5rem; */
        max-width: 1440px;
        text-align: start;

    }
    .achievements-year{
        font-size: 2.5rem;
    }
    .achievements-description{
        font-size:2rem;
        max-width: 1000px
    }
    .achievements-date{
        font-size:1.5rem;
    }
    .achievements-card-number{
        font-size:2.5rem;
    }
    .achievements-card-text{
        font-size:1.5rem;
    }

}
@media (min-width: 1024px){
    .achievements-title {
        width: 100%;
        /* margin: 0 auto; */
        padding: 1rem 5rem;
        max-width: 1440px;
        text-align: start;

    }
}
/* testimonios */
.testimonials{
    padding: 1.688rem 1rem;
    text-align: center;
    background-color: var(--secondary-background-color);
}

.testimonials-title{
    color: var(--tertiary-color);
    font-family: var(--font-family-title);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    
}

/* Carousel Styles */
.testimonials-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    /* padding: 0 2rem; */ /* Espacio para los botones */
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center; /* Alineación de las tarjetas */
    flex-wrap: wrap;
    gap: 1rem;
    /* padding: 0 1rem; */
    /* width: 700px; */
}

.testimonial-card {
    /* background-color: var(--secondary-background-color); */
    background-color: #EEE4E4;
    border-radius: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    padding: 0; /* padding se manejará en secciones internas */
    flex: 0 0 calc(100% - 2rem); /* Restaurado para móvil */
    max-width: 400px; /* Aumentado el ancho máximo para móvil */
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Permite que las secciones internas controlen su ancho */
    text-align: center;
    min-height: 250px; /* Reducido la altura mínima y permitirá que el texto se adapte */
    overflow: hidden; /* Asegura que el border-radius se aplique a todo */
}

.testimonial-top-section {
    /* background-color: var(--primary-color-dark); */
    position: relative;
    height: 300px; /* Altura fija para la sección superior */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
}

.testimonial-bottom-section {
    background-color: var(--secondary-background-color-light); /* Color claro para la sección inferior */
    flex-grow: 1; /* Para que ocupe el espacio restante */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Empuja el autor hacia abajo */
    padding: 1.5rem;
    width: 100%;
}

.testimonial-image {
    width: 100%; /* Tamaño de imagen cuadrada */
    height: 100%;
    border-radius: 24px 24px 0 0;
    object-fit: cover;
    background-color: white; /* Para el icono de placeholder */
}

.testimonial-person-type {
    background-color: var(--secondary-color); /* Color amarillo/dorado para el tag */
    color: var(--primary-color); /* Color de texto oscuro para el tag */
    padding: 0.3rem 0.8rem;
    font-family: var(--font-family-text);
    font-size: 1rem;
    font-weight: 600;
    position: absolute;
    bottom: 4.5%;
    left: 0;
    transform: translateY(50%); /* Empuja el tag a la mitad de su altura fuera del contenedor */
    border-top-right-radius: 8px;
    border-bottom-right-radius: 0;
    z-index: 2; /* Para que esté por encima del contenido */
}

.testimonial-content {
    /* Esta clase ya no envuelve el texto y el autor como antes, 
       su contenido ahora está dividido entre top y bottom sections */
    /* Mantenerla si se usa en otro lugar, pero su rol en la tarjeta cambió */
    display: flex; /* Asegura que el contenido se ajuste */
    flex-direction: column; /* Apila el texto y el autor */
    align-items: center; /* Centra el texto horizontalmente */
}

.testimonial-text {
    font-family: var(--font-family-text);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center; /* Alineación central para el texto del testimonio */
}

.testimonial-author {
    font-family: var(--font-family-text);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    /* margin-top: auto; */ /* Ya no es necesario con space-between */
    align-self: flex-end; /* Alinea el autor a la derecha */
}

/* Read More Button (eliminado del JS) */
.read-more-btn { display: none; }

.carousel-btn {
    /* background-color: rgba(255, 255, 255, 0.5); */
    background-color:transparent;
    color: var(--primary-color);
    border: none;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    font-size: 2rem;
    /* border-radius: 50%; */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    

}
/* .carousel-btn:hover{
    transform: translateY(-50%) scale(1.1);
    color: var(--secondary-color);
} */

.prev-btn {
    left: 10px;
    
}

.next-btn {
    right: 10px;
    
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

.dot.active {
    background-color: var(--tertiary-color);
}

@media (min-width: 768px) {
    .testimonials{
        padding: 2.5rem 2rem;
    }
    .testimonial-card {
        flex: 0 0 auto; /* Permite que el max-width controle el tamaño */
        max-width: 600px; /* Nuevo max-width para tablet */
    }
    .testimonials-title{
        width: 100%;
        align-self: flex-start;
    }
}

@media (min-width: 1024px) {
    
    .testimonials-container {
        max-width: 1200px;
    }
    .testimonial-card {
        flex: 0 0 auto; /* Permite que el max-width controle el tamaño */
        max-width: 700px; /* Desired width for desktop */
    }
    .testimonials-title{
        width: 100%;
        text-align: left;
    }
    .testimonials{
        margin: 0 auto;
        padding:2.5rem 5rem;
        max-width: 1440px;
    }
    .testimonials-title {
        width: 100%;
        text-align: left;
    }
}

@media (min-width: 768px){
    .recent-blogs{
        padding: 1rem 2rem;
    }
}
@media (min-width: 1024px){
    .recent-blogs{
        margin: 0 auto;
        padding:2.5rem 5rem;
        max-width: 1440px;
    }
    .recent-blogs-title {
        width: 100%;
        font-size: 1.5rem; /* 24px */
        align-self: flex-start;
    }
}
/* que necesitamos */
.needs{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.needs-title{
    font-family: var(--font-family-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tertiary-color);
    padding: 1.688rem 0;
    text-transform: uppercase;
    margin: 0 auto;
}
.needs-wrapper{
    /* padding: 1rem; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}
.needs-wrapper-banner{
    min-height: 130px;
    min-width: 100%;
    background-color: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    font-family: var(--font-family-text);
    font-size: 1rem;
    font-weight: 600;
    color: var(--tertiary-color);
    align-items: center;
    justify-content: center;
}
.needs-banner-text{
    font-family: var(--font-family-text);
    font-size: 17px;
    font-weight: 600;
    padding: 1rem;
    text-align: center;
}
.needs-description{
    font-family: var(--font-family-text);
    font-size: 1rem;
    font-weight: 400;
    padding: 1rem 0;
    text-align: left;
}
.needs-list{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-decoration: none;
    list-style: none;
}
.needs-list-item{
    font-family: var(--font-family-text);
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
}
.needs-list-item-title{
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.25rem;
    color: var(--quaternary-color);
    font-weight: 600;
    padding: 1rem 0;
}
@media (min-width: 768px){
    .needs{
        padding: 1rem 2rem;
    }
    .needs-wrapper{
        padding: 1rem 0;
    }
    
    .needs-banner-text{
        font-size: 1.25rem;
    }
}
@media (min-width: 1024px){
    .needs{
        margin: 0 auto;
        padding:2.5rem 5rem;
        max-width: 1440px;
    }
    .needs-wrapper{
        padding: 1rem 0;
    }
    .needs-title{
        width: 100%;
        align-self: flex-start;
    }
    .needs-banner-text{
        font-size: 1.5rem;
    }
    .needs-description{
        align-self: flex-start;
    }
}
/* support section */
.support{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
}
.support-mail-container{
    width: 100%;
    text-align: start;
    font-family: var(--font-family-text);
    /* padding-bottom: 2rem; */
    font-size: 1rem;
    padding-left: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: .5rem;
}
.support-mail{
    display: flex;
    width: auto;
    flex-wrap: wrap;
}
.mail-donations{
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-wrap: wrap;
    color: #32ADE6;

}
.mail-donations:hover{
    text-decoration: underline;
    color: #32ADE6;
}
.support-title{
    font-family: var(--font-family-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tertiary-color);
    padding: 1.688rem 0;
    text-transform: uppercase;
    margin: 0 auto;
}
.support-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
    background-color: var(--white);
    /* border: 1px solid black; */
    border-radius: 16px;
    position: relative;
    padding: .5rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.264);

}


.support-card-content{
    font-family: var(--font-family-text);
    font-weight: 400;
    font-size: 12px;
    position: relative;
    flex-grow: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* gap: .5rem; */
}
.support-card-item-content-title{
    font-size: 12px;
    font-size: 1rem;
    font-weight: 600;
}
.support-hands-image{
    display: none;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    left: auto;
    z-index: 0;
    width: 200px;
    height: auto;
}

.support-hands-image-mobile{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.2;
    width: 200px;
    height: auto;
}
.support-amtena-logo{
    display: none;
}


.support-card-item-icon{
    width: 30px;
    height: 30px;
}
.support-card-title{
    font-family: var(--font-family-text);
    font-weight: 600;
    font-size: 1rem;
    color: #0F6CBD;
    padding:.5rem;
    padding-bottom: 0;
}
.support-card-item{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    /* border: 1px solid rgb(189, 72, 72); */
    gap: .5rem;
    z-index: 1;
    box-sizing: border-box;
    padding: 1rem;
}
.support-card-item-content{
    font-family: var(--font-family-text);
    font-weight: 400;
    box-sizing: border-box;
    flex-grow: 1;
}
.list-item-paragraph{
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
    flex-wrap: wrap;
    font-size: 12px;
    /* font-size: 1rem; */
    width: 100%;
}
.list-item-key{
    font-family: var(--font-family-text);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: inherit;
}
.list-item-value{
    font-family: var(--font-family-text);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
    flex-grow: 1;
    font-size: inherit;

}
.alias-text{
    color: var(--tertiary-color);
    font-weight: 700;
}
.mp-wrapper{
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    width: 100%;
    gap: 2rem;

}
.container-btn-support{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.btn-mp{
    text-decoration: none;
    /* display:inline-block; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-family-title);
    font-size: 1rem;
    font-weight: 400;
    /* min-width: 130px;
    min-height: 60px; */
    /* width: auto; */
    width: 200px;
    height: 60px;
    background-color: var(--button-know-more-color);
    color: var(--white);
    border-radius: 8px;
    margin: 1.5rem; 
    padding: 1rem;
    transition: all .3s;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.264); */
    gap: .5rem;
}
.btn-pp{
    /* background-color: var(--color-background); */
    background-color: #eee;
    border: 1px solid #C2C2C2;
    transition: all .3s;
}
.btn-mp:hover{
background-color: var(--button-know-more-color-hover);
}
.btn-pp:hover{
    background-color: #e2dddd;
}
.btn-mp:hover{
    transform: translateY(-3px) scale(1.0);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.095);
}
.btn-mp-image{
    width: 60px;
    height: auto;
}
.btn-mp-text{
    font-family: var(--font-family-text);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}
@media (min-width: 768px){
    .support-hands-image{
        display: block;
        position: absolute;
        top: 50%;
        left: 80%;
        transform: translate(-50%, -50%);
        z-index: 0;
        /* opacity: 0.1; */
        width: 200px;
        height: auto;
    }
    .support-card-item-icon{
        width: 50px;
        height: 50px;
    }
    .support-card-title{
        font-size: 1.25rem;
        align-self: flex-start;
    }
    .support-card-item{
        padding: 1rem;
        gap: 1rem;
    }
    /* .support-card-item-content{
        font-size: 14px;
    
    } */
    .support-card-item-content-title{
        font-size: 1.125rem;
    }
    .list-item-key,
    .list-item-value{
        font-size: 1.125rem;
    }

    .support-hands-image-mobile{
        display: none;
    }
    .support-wrapper{
        padding: 1rem;
    }
    .mp-cta{
        font-size: 1.25rem;
    }
    .btn-mp{
        /* width: auto; */
        width: 200px;
        height: 70px;
    
    }
    .btn-mp-image{
        width: 60px;
        height: auto;
    }
    .support-mail-container{
        padding-left: 1rem;
    }
    .container-btn-support{
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px){
    .support{
        margin: 0 auto;
        padding:2.5rem 5rem;
        max-width: 1440px;
        padding-top: 0;
    }
    .support-title{
        font-size: 1.5rem;
        align-self: flex-start;
        margin: 0;
    }
    .support-wrapper{
        padding: 1rem;
        width: 100%;
        max-width: 1000px;
    }
    .support-amtena-logo{
        display: none;
    }
        
    .support-hands-image{
        width: 250px;
        right: 0;
        /* opacity: 0.15; */
    }
    .support-mail-container{
        padding-left: 0;
    }
    .container-btn-support{
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
}
@media (min-width: 1440px){
    .support-wrapper{
        width: 100%;
        max-width: none;
    }
    .support-amtena-logo{
        display: block;
        position: absolute;
        top: 50%;
        left: 80%;
        transform: translate(-50%, -50%);
        z-index: 0;
        width: 310px;
        height: auto;
    }
        
    .support-hands-image{
        width: 150px;
        top: 50%;
        left: 50%;
    }
    .support-card-title{
        font-size: 1.5rem;
    }
    .list-item-key{
        font-size: 1.25rem;
    }
    .list-item-value{
        font-size: 1.25rem;

    }
    .support-card-item-content-title{
        font-size: 1.25rem;
    }
    .mp-cta{
        font-size: 1.5rem;
        font-family: var(--font-family-text);
        font-weight: 700;
    }
    .btn-mp{
        width: 200px;
        height: 90px;
    }
    .btn-mp-image{
        width: 60px;
        height: auto;
    }
    .support-mail{
        /* width: 100%; */
        text-align: start;
        font-family: var(--font-family-text);
        padding-bottom: 2rem;
        font-size: 1rem;
        padding-left: 0rem;
    }
    .support-mail-container{
        padding-left: 0;
    }
    .container-btn-support{
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: center;
    }
}

/* New Brands Section Wrapper */
.brands-section-wrapper {
    width: 100vw;
    background-color: var(--gray);
    padding: 2rem 0rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.brands-section-title {
    font-size: 1.5rem; /* Tamaño de fuente inicial */
    color: var(--text-color); /* Color de texto predeterminado */
    text-align: center;
    margin-bottom: 2rem; /* Espacio debajo del título */
    text-transform: uppercase;
    color: var(--tertiary-color);
}

@media (min-width: 768px) {
    /* .brands-section-wrapper {
        padding: 2rem 0rem;
    } */
    .brands-section-title {
        font-size: 1.5rem;

    }
}

@media (min-width: 1024px) {
    /* .brands-section-wrapper {
        padding: 2rem 0rem; 
    } */
    .brands-section-title {
        font-size: 1.5rem;
        width: 1440px;
        text-align:left;
        align-self: flex-start;
        margin: 0 auto;
        padding-bottom: 1.25rem;
    }
    
}

/* Brands Banner Section */
.brands-banner {
    padding: 0 1rem; /* Eliminar padding vertical, ya lo maneja el wrapper */
    text-align: center;
    background-color: var(--gray); /* Ya se establece en el wrapper */
    /* overflow: hidden; */ /* Eliminado */
    /* position: relative; */ /* Eliminado */
}

/* Eliminar los pseudo-elementos de .brands-banner */
/* .brands-banner::before,
.brands-banner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 300px;
    pointer-events: none;
    z-index: 2;
}

.brands-banner::before {
    left: 0;
    background: linear-gradient(to right, var(--secondary-background-color), transparent);
}

.brands-banner::after {
    right: 0;
    background: linear-gradient(to left, var(--secondary-background-color), transparent);
} */

@media (min-width: 768px) {
    .brands-banner {
        padding: 0rem 2rem;
        padding-top: 0;

    }
}

@media (min-width: 1024px) {
    .brands-banner {
        padding: 0rem 5rem;
        max-width: 1440px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 0;
    }
}

.brands-strip-1,
.brands-strip-2 {
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;

    /* Eliminar las propiedades de background anteriores y aplicar mask-image */
    background: none; /* Elimina los fondos de gradiente anteriores */
    
    /* Comentar el mask-image actual */
    /* mask-image: 
        linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 80px, rgba(0,0,0,1) calc(100% - 80px), rgba(0,0,0,0) 100%), 
        linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,1)); 
    mask-size: 100% 100%; 
    mask-position: center center; 
    mask-repeat: no-repeat; 
    -webkit-mask-image: 
        linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 80px, rgba(0,0,0,1) calc(100% - 80px), rgba(0,0,0,0) 100%);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat; */

    /* Nuevo mask-image (igual que el anterior, pero con el comentario del viejo) */
    mask-image: 
        linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 60px, rgba(0,0,0,1) calc(100% - 60px), rgba(0,0,0,0) 100%), /* Gradiente general para desvanecimiento */
        linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,1)); /* Fallback para navegadores antiguos */
    mask-size: 100% 100%; /* Cubre todo el elemento */
    mask-position: center center; /* Centra la máscara */
    mask-repeat: no-repeat; /* Asegura que la máscara no se repita */
    /* Prefijos de navegador para compatibilidad */
    -webkit-mask-image: 
        linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 60px, rgba(0,0,0,1) calc(100% - 60px), rgba(0,0,0,0) 100%);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;

    z-index: auto; 
}

.brands-carousel-track {
    display: flex;
    white-space: nowrap;
    animation: scroll-brands 150s linear infinite;
    gap: 2rem;
    width: max-content;
    position: relative;
    z-index: auto; /* Simplificar z-index */
}

.brands-strip-2 .brands-carousel-track {
    animation: scroll-brands-reverse 150s linear infinite;
}

.brand-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-height: 80px;
    height: auto;
}

.brand-logo {
    height: 100px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.brand-link:hover .brand-logo {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-brands {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-brands-reverse {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0%);
    }
}

/* ultimas novedades */
/* ultimas novedades */
.recent-blogs{
    display: flex;
    flex-direction: column;
    padding: 1rem;
    align-items: center;
}
.recent-blogs-title{
    font-family: var(--font-family-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tertiary-color);
    margin: 0 auto;
    padding: 1.688rem 0;
    text-transform: uppercase;
}

/* blog cards base (mobile first) */
.container-redirection-blog {
    width: 100%;
    text-align: end;
    /* padding: 1rem 1rem 0 1rem; */
}

.btn-redirection-blog {
    text-decoration: none;
    color: var(--light-text);
}

.btn-redirection-blog::before {
    content: "➤ ";
    color: var(--light-text);
}

.btn-redirection-blog:hover {
    text-decoration: underline;
}

.blog-card-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.recent-blog-card {
    width: 60%;
    min-width:325px;
    background-color: var(--color-background);
    border-radius: 16px;
    box-shadow: 0px 0px 20px rgba(66, 65, 65, 0.452);
    padding: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    max-height: 450px;
}

.blog-card:hover {
    transform: translateY(-5px) scale(1.0);
    /* box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2); */
}
.recent-blog-card:hover{
    transform: translateY(-5px) scale(1.0);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
}

.blog-card-img {
    width: 100%;
    height: 300px;
    object-fit:cover;
    border-radius: 8px;
}

.blog-card-info {
    padding: 0rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-family-text);
}

.blog-card-author {
    font-size: 1rem;
    font-weight: 400;
    padding-top: 1rem;
    font-family: var(--font-family-text);
    color: var(--light-text);
}

.blog-container-button {
    display: flex;
    justify-content: center;
    /* margin: 0 0.5rem 0.5rem 0.5rem; */
}

.blog-card-button {
    font-family: var(--font-family-text);
    background-color: var(--button-know-more-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}
.blog-card-button:hover{
    background-color: var(--button-know-more-color-hover);
}

/* Responsive: Tablets (≥768px) */
@media screen and (min-width: 768px) {
    .blog-card-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        /* padding: 1rem 2rem 2rem 2rem; */
    }

    .recent-blog-card {
        width: 40%;
    }
    .blog-container-button {
        display: flex;
        justify-content: flex-end;
        /* margin: 0 0.5rem 0.5rem 0.5rem; */
    }
}

/* Responsive: Desktop (≥1024px) */
@media screen and (min-width: 1024px) {
    .recent-blogs{        
        margin: 0 auto;
        padding: 2.5rem 5rem;
        max-width: 1440px;
        padding-top: 0;}
    .blog-card-container {
        /* padding: 2.5rem 5rem; */
        max-width: 1440px;
        margin: 0 auto;
        justify-content: space-evenly;

    }
    
    .recent-blog-card {
        width: 30%;
    }
    .blog-container-button {
        display: flex;
        justify-content: flex-end;
        /* margin: 0 0.5rem 0.5rem 0.5rem; */
    }
}
