.container-banner {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
}


.container-banner .section-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}

.container-banner .section-img {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.container-banner .section-img img {
    width: 50vw;
    max-width: 600px;
}


.container-banner .section-text h1 {
    font-family: "Suez One", serif;
    line-height: 120%;
    font-size: 60px;
}

.container-banner .section-text span {
    font-family: GuthenBloots-r, serif;
    line-height: 120%;
    font-size: 77px;
}

.container-banner .section-text p {
    font-family: ModernEra-r, serif;
    font-size: 23px;
    line-height: 120%;
    font-weight: 400;

}


.custom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 96px;
    width: 100%;
    max-width: 1100px;

}

.custom-section .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: 40px;
    padding-right: 30px;
}

.custom-section .text .title {
    margin: 0;
    padding: 0;
    font-family: GuthenBloots-r, cursive;
    font-size: 26px;
}

.custom-section .text .container-text {
    padding-left: 48px;
    border-left: 1px solid var(--Light-text);
}

.custom-section .text .container-text p {
    margin: 0;
    padding: 0;
    font-family: "Suez One", serif;
    font-size: 16px;
    line-height: 120%;
}

a {
    color: var(--App-Purple);
    text-decoration: none;
}

.speech-bubble-background {
    clip-path: polygon(
            15% 0%, 87% 0%, 96% 10%, 95% 80%, 90% 85%, 75% 98%, 45% 100%, 15% 95%, 3% 80%, 6% 15%
    );
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}


.speech-bubble-background-2 {
    clip-path: polygon(
            12% 8%,
            85% 4%,
            95% 12%,
            100% 55%,
            88% 94%,
            75% 99%,
            60% 96%,
            48% 98%,
            12% 93%,
            5% 58%,
            8% 20%
    );
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}


.container-process {
    width: 100%;
    max-width: 95%;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 15px;
    margin-top: 40px;
}

.process-card {
    width: 100%; /* Ajusta el ancho al 100% del contenedor */
    max-width: 450px; /* Limita el ancho máximo */
    min-height: 400px; /* Establecer una altura mínima */
    height: auto; /* Deja que la altura se ajuste al contenido */
    padding: 0px; /* Añade relleno interno */
    background-color: var(--App-Purple-Light);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px; /* Añade espacio entre los elementos */
}

.process-card .icon img {
    width: 100%; /* Ajusta el ancho de la imagen al contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
    object-fit: contain; /* Asegura que la imagen no se desborde */
    margin-bottom: 0px; /* Añade un pequeño margen inferior entre la imagen y el texto */
}

.process-card .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    word-wrap: break-word; /* Permite que el texto se ajuste al tamaño del contenedor */
    overflow-wrap: break-word;
}

.process-card .icon {
    margin-bottom: 0px; /* Elimina el espacio debajo de la imagen */
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.process-card .icon img {
    width: 100%; /* Mantén el ancho de la imagen al 100% del contenedor */
    height: auto; /* Mantén la proporción de la imagen */
    max-height: 400px; /* Ajusta este valor según la altura deseada */
    object-fit: cover; /* Asegúrate de que la imagen cubra el espacio sin distorsionarse */
}

.process-card .text .title {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
    font-family: "Suez One", serif;
    font-size: 24px;
    color: #FFFFFF;
}

.process-card .text .description {
    margin: 10;
    padding: 10;
    width: 100%;
    text-align: center;
    font-family: "Suez One", serif;
    font-size: 18px;
    color: var(--General-text);
}

.container-testimonials {
    width: 100%;
    max-width: 1300px;
}

.cv-testimonial {
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px;
    border-radius: 10px;
}

.cv-testimonial .header {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

.cv-testimonial .description {
    margin: 0;
    padding: 0;
    font-family: ModernEra-r, serif;
    font-size: 16px;
    color: var(--Light-text);
    line-height: 1.75;
}

.cv-testimonial .header .img-container {
    width: 64px;
    height: 64px;
    border-radius: 50rem;
    background-color: var(--App-Purple);
    background-size: cover;
    background-position: center;
}

.cv-testimonial .header .personal-data {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.cv-testimonial .header .personal-data .name {
    margin: 0;
    padding: 0;
    margin-left: 5px;
    font-family: ModernEra-r, serif;
    font-size: 18px;
    color: var(--General-text);
    line-height: 1.2;
}


.accordion-button:not(.collapsed) {
    color: var(--General-text);
    background-color: white;
    box-shadow: none;
}

.accordion-button {
    font-family: ModernEra-b, serif;
    border: none !important;
    outline: none !important;
    background: #FFFFFF;
}

.accordion-button:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none!important;
}

.accordion-item{
    font-family: ModernEra-r, serif;
    border: none;
    background-color: #FFFFFF;
}

@media (min-width: 1024px) {
    .container-banner .section-text {
        align-items: flex-start; /* Alinear el texto a la izquierda */
        text-align: center;
    }
}

@media (max-width: 1023px) {

    .container-banner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }

    .container-banner h1, .container-banner p {
        text-align: center;
    }

    .container-banner div {
        justify-content: left !important;
    }

    .container-banner .section-img img {
        width: 100% !important;
    }

    .custom-section {
        width: 100%;
        align-items: center;
    }

    .custom-section div {
        width: 100%;
    }

}

@media (max-width: 900px) {
    .custom-section {
        margin-top: 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .custom-section.reverse {
        flex-direction: column-reverse;
    }


    .custom-section .text {
        margin: 0;
    }

    .custom-section .text .container-text p {
        font-size: 24px;
    }
}

@media (max-width: 700px) {
    .container-process {
        align-items: center;
        flex-direction: column;
        gap: 20px;
    }

    .process-card {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .container-banner h1 {
        font-size: 42px !important;
    }

    .container-banner span {
        font-size: 60px !important;
    }
    .md-hidden{
        display: none;
    }
}


.big-btn {
    padding: 15px 40px; /* Ajusta estos valores para hacer el botón más alto y ancho */
    width: 200px; /* Puedes definir un ancho fijo si quieres que sea más alargado */
    text-align: center; /* Centra el texto dentro del botón */
    font-size: 18px; /* Ajusta el tamaño del texto */
    display: inline-block; /* Asegura que el botón mantenga su forma */
}

@media (max-width: 880px) {
    .big-btn {
        width: 90%;
        max-width: 200px;
        font-size: 16px;
        padding: 10px;
        white-space: normal;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .big-btn .md-hidden {
        display: none;
    }

    .big-btn img {
        display: none;
    }

    /* Si quieres mantener una flecha, puedes ajustarla así: */
    .big-btn img:first-of-type {
        display: block;
        width: 100px;
        height: auto;
        position: absolute;
        top: -50px;
        right: -25px;
        transform: rotate(45deg);
    }
}

/* Contianer de incio con imagen */
.parallax-bg {
    background-image: url("/static/web_public/imgs/webp/hero-newslittle.288a2fe02530.webp");
    #background-attachmentfixed
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1024px) {
    .parallax-bg {
        background-attachment: scroll; /* Deshabilita el parallax en dispositivos móviles */
    }
}

/* Flip para los 4 pasos */


@media (max-width: 768px) {
    .containr-nav {
        display: none;
    }
}

.responsive-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10px; /* Añadir margen interno para móviles */
    box-sizing: border-box;
    width: 100%;
    gap: 10px;
}

.responsive-title h1 {
    font-size: 80px;
    font-family: 'Suez One', serif;
    color: white;
    margin-bottom: 10px;
}

.responsive-title p {
    font-size: 18px;
    max-width: 90%; /* Usa un porcentaje en lugar de un ancho fijo */
    color: white;
    text-align: center;
    margin: 0 auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

/* Ajustes para tablets */
@media (max-width: 1024px) {
    .responsive-title h1 {
        font-size: 60px;
        line-height: 1.2;
    }

    .responsive-title p {
        font-size: 16px;
        max-width: 85%;
    }
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .responsive-title h1 {
        font-size: 40px;
        line-height: 1.2;
    }

    .responsive-title p {
        font-size: 14px;
        max-width: 90%;
    }
}

/* Ajustes para pantallas extra pequeñas */
@media (max-width: 480px) {
    .responsive-title h1 {
        font-size: 40px;
        line-height: 1.1;
    }

    .responsive-title p {
        font-size: 12px;
        max-width: 95%;
    }
}
