:root {
    --header-bg-red: #AB1111;
    --button-bg-dark: #333333;
    --text-white: #ffffff;
    --button-hover-dark: #323030;
    --button-border-light: #333333;
    --font-principal: 'Lexend Deca', sans-serif; 
}

body {
    font-family: var(--font-principal);
    font-weight: 400;
    overflow-y: auto;
}

header {
    background-color: var(--header-bg-red);
    padding: 0.5rem 0;
}

header .navbar {
    padding-top: 0;
    padding-bottom: 0; 
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img.logo-image {
    height: 40px; 
    width: auto;  
    vertical-align: middle;
}

.header-actions .login-link {
    font-family: var(--font-principal);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.4rem 0; 
    display: inline-flex; 
    align-items: center; 
    height: 38px; 
}

.header-actions .login-link:hover {
    color: #f0f0f0; 
    text-decoration: none;
}

.btn-register-custom {
    font-family: var(--font-principal);
    background-color: #333333 !important; 
    color: var(--text-white) !important; 
    border: none !important; 
    padding: 0.4rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase; 
    border-radius: 0.2rem; 
    transition: background-color 0.2s ease-in-out;
    line-height: normal;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    box-shadow: none !important;
    outline: none !important; 
}
  
.btn-register-custom:hover,
.btn-register-custom:focus,
.btn-register-custom:active {
    background-color: var(--button-hover-dark) !important;
    color: var(--text-white) !important;
    text-decoration: none;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.btn-register-custom.btn,
.btn-register-custom,
a.btn-register-custom {
    background-color: #333333 !important;
    color: white !important;
    border: none !important;
    outline: none !important; 
    box-shadow: none !important;
    padding: 0.4rem 1rem !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    border-radius: 0.25rem !important;
    text-decoration: none !important;
    display: inline-block !important;
    vertical-align: middle !important;
    line-height: normal !important;
    height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-register-custom {
    width: auto !important;
    min-width: 125px !important; 
}

.btn-register-custom:hover,
.btn-register-custom:focus,
.btn-register-custom:active,
.btn-register-custom.active,
.btn-register-custom:not(:disabled):not(.disabled):active,
.btn-register-custom:not(:disabled):not(.disabled).active {
    background-color: #323030 !important;
    color: white !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.btn-register-custom::before,
.btn-register-custom::after {
    display: none !important;
}

.hero-section {
    position: relative;
    background-image: url('../img/BACKGROUND LANDINGPAGE.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 12%;
    padding-bottom: 8%;
    color: var(--text-white);
    z-index: 1;
    clip-path: polygon(
        0% 0%,     
        100% 0%,    
        100% calc(100% - 30px), 
        60% calc(100% - 30px), 
        50% 100%,   
        40% calc(100% - 30px), 
        0% calc(100% - 30px)   
    );
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.hero-section .container {
    padding-top: 5%;
    position: relative;
    z-index: 2;
}



.hero-secondary-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.hero-text {
    font-size: 1rem;
    max-width: 500px;
}

.btn-hero-register {
    background-color: var(--header-bg-red)!important;
    color: var(--text-white) !important;
    border: none!important;
    padding: 0.8rem 2rem;
    font-weight: 700 !important;
    font-size: 1rem!important;
    border-radius: 0.25rem!important;
    transition: background-color 0.3s ease!important;
    text-decoration: none;
    display: inline-block!important;
}

.btn-hero-register:hover {
    background-color: #c21a1a; 
    color: var(--text-white) !important;
}
.scroll-indicator {
    position: absolute;
    bottom: 38px;      
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    width: 100%;
    padding: 0 15px;
}

.logo-container {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.logo-faixa {
    width: 100%;
    height: auto;
    opacity: 0.3;
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
}

  .video-section {
    padding: 6rem 0;
    background: url("../img/BACKGROUND FAIXA.png"); 
    background-size: cover;
    z-index: 0;
    position: relative; 
    color: #fff; 
    margin-top: -70px;
}

.video-section .col-md-6 {
    position: relative;
}

.video-section::before {
    content: ""; 
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
}

.video-section .container {
    position: relative;
    z-index: 2;
}

.video-content-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.video-text {
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 80%; 
    text-align: center;
    z-index: 10;
    color: #fff; 
}

.video-text p {
    color: inherit;
    font-size: 1rem;
    margin-bottom: 0;
}



.section-connector-arrow {
    position: absolute;
    bottom: 14px;
    left: 50%;          
    transform: translateX(-50%);    
}

.section-connector-arrow img{
    width: 50%;
}

.salvaguarda{
    position: relative;
    padding-top: 1%;
    padding-bottom: 30%;
    background: url("../img/salvaguardamos02.png") no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.motivos-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 3rem; 
    font-size: 2rem; 
    color: var(--text-white);
}

.motivos-row {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 1.5rem 1rem; 
}

.motivo-item {
    text-align: center;
    max-width: 130px; 
    flex: 0 1 130px; 
}

.motivo-item img {
    max-width: 60px; 
    height: auto;
    margin-bottom: 0.8rem; 
}

.motivo-item p {
    font-size: 0.8rem; 
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-white);
    text-transform: uppercase; 
    margin-bottom: 0;
}

.launch-box-wrapper {
    display: flex; 
    justify-content: center; 
    align-items: flex-start; 
    margin-bottom: 4rem;
    padding: 0 1rem;
    position: relative; 
}

.launch-box {
    display: flex;
    align-items: center;
    background: url('../img/BACKGROND convite.png') no-repeat center center;
    background-size: contain;
    width: 100%;
    max-width: 1000px;
    min-height: 320px;
    border-radius: 8px;
    padding: 1rem 2rem 1rem 30%; 
    margin-left: auto; 
    margin-right: auto; 
    color: var(--text-white);
}

.launch-title-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
  }

.launch-title-heading {
    margin: 0;
    margin-right: 0.6rem;
    font-size: 1.5rem;
    font-weight: 700;
  }

.sino {
    position: absolute;
    height: 24%;   
    top: 7%;               
    right: 14%;             
}



.launch-box .calculator-img-col {
    flex: 1 1 150px; 
    text-align: center;
}

.launch-box .calculator-img-col img {
    max-width: 100%; 
    height: auto;
    max-height: 180px;
}

.launch-text-col {
    flex: 0 0 auto;
    width: 83%;
    max-width: 480px;
    color: var(--text-white);
    text-align: left;
}

.launch-title-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

.launch-title-heading {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.launch-box .launch-text-col h3 { 
    font-size: 1.5rem; 
    font-weight: 700;
    margin-bottom: 0.8rem;

}

.launch-box .launch-text-col p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.launch-box .btn-launch {
    background-color: #14802D !important;
    border-color: #14802D !important;
    color: var(--text-white) !important;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    box-shadow: none !important;
    outline: none !important;
    border: none;
}

.launch-box .btn-launch:hover {
    background-color: #c21a1a !important;
    border-color: #c21a1a !important;
    color: var(--text-white) !important;
}

.comentarios {
    position: relative; 
    background-image: url("../img/BACKGROUND FAIXA.png");
    background-size: cover; 
    background-position: center center;
    background-repeat: no-repeat; 
    padding: 4rem 0; 
    overflow: hidden; 
    z-index: 0; 
}

.comentarios::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Total de 15 instâncias da imagem */
    background-image:
        url("../img/comentario.png"), /* 1 */
        url("../img/comentario.png"), /* 2 */
        url("../img/comentario.png"), /* 3 */
        url("../img/comentario.png"), /* 4 */
        url("../img/comentario.png"), /* 5 */
        url("../img/comentario.png"), /* 6 */
        url("../img/comentario.png"), /* 7 */
        url("../img/comentario.png"), /* 8 */
        url("../img/comentario.png"), /* 9 */
        url("../img/comentario.png"), /* 10 - Novo */
        url("../img/comentario.png"), /* 11 - Novo */
        url("../img/comentario.png"), /* 12 - Novo */
        url("../img/comentario.png"), /* 13 - Novo */
        url("../img/comentario.png"), /* 14 - Novo */
        url("../img/comentario.png"); /* 15 - Novo */


    background-size:
        379px auto, /* 1 */
        283px auto, /* 2 */
        355px auto, /* 3 */
        305px auto, /* 4 */
        250px auto, /* 5 */
        340px auto, /* 6 */
        290px auto, /* 7 */
        315px auto, /* 8 */
        270px auto, /* 9 */
        300px auto, /* 10 - Novo */
        265px auto, /* 11 - Novo */
        380px auto, /* 12 - Novo */
        240px auto, /* 13 - Novo */
        325px auto, /* 14 - Novo */
        295px auto; /* 15 - Novo */


    background-position:
    5% 10%,    /* 1  (Antes: -2% 24%) - Top Left */
    80% 5%,     /* 2  (Antes: 74% 43%) - Top Right-ish */
    40% 30%,    /* 3  (Antes: 36% 67%) - Mid-Upper Left */
    65% 20%,    /* 4  (Antes: 64% 92%) - Mid-Upper Right */
    98% 45%,    /* 5  (Antes: 95% 10%) - Mid Right Edge */
    0% 70%,     /* 6  (Antes: 0% 81%) - Mid-Lower Left Edge */
    76% 55%,    /* 7  (Antes: 50% 50%) - Center-ish Lower */
    20% 75%,    /* 8  (Antes: 85% 75%) - Lower Right */
    15% 95%,    /* 9  (Antes: 37% 17%) - Bottom Left */
    30% 5%,     /* 10 (Antes: 25% 33%) - Top Mid-Left */
    90% 35%,    /* 11 (Antes: 60% 15%) - Mid-Lower Right */
    105% 80%,   /* 12 (Antes: 107% 57%) - Off-screen Bottom Right */
    71% 98%,    /* 13 (Antes: 5% 60%) - Bottom Middle Edge */
    20% 50%,    /* 14 (Antes: 45% 100%) - Center-Left Mid */
    50% 90%;    /* 15 (Antes: 74% 23%) - Bottom Right-ish */

    background-repeat: no-repeat; 
    filter: blur(3px); 
    z-index: 1; 
    transition: opacity 0.3s ease-in-out;
}


.comentarios .container {
    position: relative; 
    z-index: 2;
}

.comentarios h2 {
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 3rem !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); 
}

.customer-carousel {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.customer-carousel img.img-fluid {
    border-radius: 8px; 
    width: 100%; 
    margin: 0 auto;
    display: block;
}

.customer-carousel .slick-track {
    display: flex !important;
    align-items: stretch;
}

.customer-carousel .slick-slide {
    display: flex !important;
    align-items: stretch;
    height: auto;
    /* Remove o overflow lateral */
    box-sizing: border-box;
    padding: 0 8px;
}

.slick-dots {
    bottom: -40px; 
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--text-white);
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--header-bg-red); 
    opacity: 1;
}

.video-container2{
    position: relative;
    background: url("../img/BACKGROUND FAIXA.png") no-repeat center center;
    background-size: cover; 
    background-position: center center;
    background-repeat: no-repeat; 
}

.video-container2 img {
    width: 100%;
    height: auto;
    display: block; 
}

.video-container2 iframe {
    display: block; 
    max-width: 100%;
    margin: 0 auto 1rem auto; 
    border: none; 
}

.apoiadores {
    position: relative;
    background: url("../img/background-apoiadores.png") no-repeat center center;
    background-size: cover; 
    background-position: center center; 
    overflow: hidden;
    color: var(--text-white);
    padding-top: 250px;
    padding-bottom: 60px; 
}

/* Ajuste crucial: tornar a altura do container das faixas mais flexível */
.titulos-e-faixas-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Removido: height: 100%; (pode ser redundante ou causar problemas com min-height) */
    min-height: auto; /* Permite que a altura se ajuste ao conteúdo das faixas */
    /* Ou, se precisar de uma altura mínima, use um valor menor e ajuste em media queries: */
    /* min-height: 400px; */
    padding: 20px 0; /* Adiciona um pouco de espaçamento interno vertical se necessário */
}

.secao-apoiadores,
.secao-parceiros {
    position: relative;
    margin-bottom: 40px; /* Reduzido um pouco o espaçamento, ajuste conforme necessário */
}

.secao-parceiros {
    margin-bottom: 0;
}

.titulo-secao {
    color: var(--text-white);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 6;
    /* O padding-left aqui controla o recuo do título para alinhar com as faixas */
    /* Ajuste esse valor conforme o seu clip-path e design */
    padding-left: calc(8% + 15px); /* Exemplo baseado no clip-path anterior, ajuste! */
    font-size: 1.5rem;
}

.faixa {
    background-image: url("../img/BACKGROUND FAIXA.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 5;
    padding: 1rem 0;
    box-sizing: border-box;
    color: var(--text-white);
    width: 100%;
    display: flex;
    align-items: center;
}

.faixa-apoiadores {
    min-height: 100px;
    /* Revertendo para o clip-path que você tinha, que parece ser a intenção para o visual da imagem de referência */
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.faixa-parceiros {
    min-height: 100px;
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.faixa-conteudo {
    /* Este padding deve corresponder ao recuo do clip-path para o conteúdo não ficar cortado */
    padding-left: calc(8% + 15px); /* Exemplo, ajuste! */
    width: 100%;
}

.logo-apoio-item {
    max-height: 50px;
    width: auto;
    margin-right: 20px;
}

.logo-apoio-item:last-child {
    margin-right: 10px;
}

.logo-carousel-parceiros img {
    max-height: 40px;
    width: auto;
    max-width: 100%;
    margin: 0 10px;
}

.logo-carousel-parceiros .slick-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 5px;
}

.logo-carousel-apoiadores img {
    max-height: 50px;
    width: auto;
    max-width: 100%;
    margin: 0 15px;
}

.logo-carousel-apoiadores .slick-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 5px;
}

.slick-prev, .slick-next {
    z-index: 10;
}

.slick-prev {
    /* Ajuste para posicionar corretamente em relação ao novo clip-path */
    left: calc(8% - 25px); /* Exemplo, ajuste! */
}

.slick-next {
    right: 15px;
}


.footer-top {
    background-color: #212529; 
    color: #adb5bd; 
    padding-top: 4rem;
    padding-bottom: 2rem; 
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.social-icons a:hover {
    opacity: 1;
}

.social-icons img {
    height: 24px; 
    width: auto;
    filter: invert(70%) sepia(10%) saturate(200%) hue-rotate(175deg) brightness(95%) contrast(90%); 
}
.social-icons a:hover img{
     filter: none; 
}


.footer-heading {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #adb5bd; 
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-white); 
    text-decoration: none;
}

.qr-code-container img {
    width: 80px; 
    height: 80px;
    background-color: white; 
    padding: 4px; 
    border-radius: 4px;
}


.contact-text p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.btn-footer-contact {
    background-color: var(--header-bg-red)!important; 
    border-color: var(--header-bg-red)!important;
    color: var(--text-white)!important;
    font-weight: 700!important;
    font-size: 0.8rem!important;
    text-transform: uppercase!important;
    border-radius: 4px!important;
    text-decoration: none!important;
    transition: background-color 0.3s ease, border-color 0.3s ease!important;
}

.btn-footer-contact:hover {
    background-color: #c21a1a; 
    border-color: #c21a1a;
    color: var(--text-white);
}


.footer-map iframe {
    display: block; 
    width: 100%; 
    height: 350px; 
    border: 0; 
}


.col-md-5{
    flex: 0 0 41.666667%!important;
    max-width: 41.666667%!important;
}

.col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}



@media(max-width:1200px){
    .motivos-row {
        gap: 1.2rem 0.8rem; 
    }
    .motivo-item {
        max-width: 115px; 
        flex-basis: 115px;  
    }
    .motivo-item img {
        max-width: 50px;  
        margin-bottom: 0.6rem;
    }
    .motivo-item p {
        font-size: 0.75rem; 
        line-height: 1.25;
    }

    .launch-title-line{
        margin-bottom: 0.5rem;
    }
    .launch-box .launch-text-col h3{
        margin-bottom: 0.5rem;
    }

    .launch-box .launch-text-col p{
        margin-bottom: 1rem;
    }

    .launch-box .btn-launch{
        padding: 0.4rem 1.4rem;
        font-size: 0.8rem;
    }
}

@media(max-width:991px){

    
    .hero-secondary-title{
        font-size: 1rem!important;
    }

    .hero-text{
        font-size: 0.8rem;
    }

    .scroll-indicator{
        font-size: 0.8rem;
    }

    a.btn-hero-register{
        font-size: 0.8rem;
    }

    .launch-title-heading{
        font-size: 1rem!important;
        margin-bottom: 2%!important;
    }

    .launch-box .launch-text-col p{
        font-size:0.7rem;
        margin-bottom: 1%!important;
    }

    .launch-box .btn-launch{
        font-size: 0.5rem;
        padding: 0.5rem 1.5rem;
    }
    .sino{
        height: 20%;
        top:16%
    }

    .motivos-title{
        font-size:1rem;
    }

    .motivos-row {
        gap: 1.0rem 0.5rem; 
    }
    .motivo-item {
        max-width: 100px; 
        flex-basis: 90px;  
    }
    .motivo-item img {
        max-width: 40px;
        margin-bottom: 0.4rem;
    }
    .motivo-item p {
        font-size: 0.5rem;
        line-height: 1.1;
    }

    .comentarios::before{
        display: none;
    }

    .video-container2 iframe{
        margin-top: 5%;
    }
    .video-button{
        margin-bottom: 5%;
    }

    .apoiadores {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .apoiadores .titulo-secao {
        font-size: 1.3rem;
        padding-left: 20px;
        text-align: left; 
    }

    .apoiadores .faixa-conteudo {
        padding-left: 20px;
    }

}

@media(max-width:767px){

    .launch-title-line {
        margin-bottom: 0;
    }
    .launch-title-heading {
        font-size: 0.7rem !important;
        margin-bottom: 1% !important;
    }

    .launch-box .launch-text-col p {
        font-size: 0.7rem;
        margin-bottom: 1% !important;
    }

    .launch-box .btn-launch {
        font-size: 0.4rem;
        padding: 0.3rem 1.5rem;
    }
    .sino {
        height: 15%;
        top: 25%;
    }

    .motivos-row {
        gap: 0.8rem 0.4rem;
    }
    .motivo-item {
        max-width: 100px;
        flex-basis: 60px;
    }
    .motivo-item img {
        max-width: 40px;
        margin-bottom: 0.3rem;
    }
    .motivo-item p {
        font-size: 0.5rem;
        line-height: 1.1;
    }

    .apoiadores {
        padding-top: 15;
        padding-bottom: 30px;
    }
}

@media (max-width: 560px) {
    .navbar-brand img.logo-image {
        height: 20px;
    }
    .header-actions .login-link {
        font-size: 0.7rem !important; 
        height: 28px !important;    
        padding: 0.3rem 0 !important; 
    }

    .header-actions .btn-register-custom { 
        font-size: 0.7rem !important;     
        padding: 0.3rem 0.5rem !important;
        height: 28px !important;   
        min-width: auto !important;  
    }
    .header-actions{
        gap: 5px;
    }

    .hero-secondary-title{
        font-size: 0.8rem!important;
    }

    .hero-text{
        font-size: 0.5rem!important;
    }

    .scroll-indicator{
        font-size: 0.5rem!important;
    }

    a.btn-hero-register{
        font-size: 0.5rem!important;
    }

    .hero-section .container .row .col-lg-7.col-md-9 .hero-secondary-title {
        margin-bottom: 1rem!important;
    }

    .hero-section .container .row .col-lg-7.col-md-9 .hero-text {
        margin-bottom: 1.0rem!important;
    }

    .sino {
        height: 10%;
        top:30%
    }

}

@media(max-width:491px){
    .motivos-row {
        gap: 0.7rem 0.2rem; 
    }
    .motivo-item {
        max-width: 100px; 
        flex-basis: 30px;  
    }
    .motivo-item img {
        max-width: 30px;  
        margin-bottom: 0.3rem;
    }
    .motivo-item p {
        font-size: 0.4rem; 
        line-height: 0.8;
    }
}

@media(max-width:472px){

    .hero-secondary-title{
        font-size: 0.5rem!important;
    }

    .hero-text{
        font-size: 0.4rem!important;
    }

    .scroll-indicator{
        font-size: 0.4rem!important;
    }

    a.btn-hero-register{
        font-size: 0.4rem!important;
    }

    .hero-section .container .row .col-lg-7.col-md-9 .hero-secondary-title {
        margin-bottom: 0.1rem!important; 
    }

    .hero-section .container .row .col-lg-7.col-md-9 .hero-text {
        margin-bottom: 0.4rem!important; 
    }


    .launch-title-heading{
        font-size: 0.5rem!important;
    }

    .launch-box .launch-text-col p{
        font-size:0.4rem;
    }

    .launch-box .btn-launch{
        font-size: 0.4rem;
        padding: 0.1rem 1rem;
    }
    .sino{
        top: 35%;
        height: 7%;
    }
}

.testimonial-card.manuscrito {
    background: #181818;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    padding: 32px 28px 24px 28px;
    margin: 0 12px;
    color: #fff;
    font-size: 1.5rem;
    position: relative;
    min-height: 320px;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    border-bottom: 5px solid #ab1111;
    max-width: 420px;
}

.testimonial-card.manuscrito .testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.testimonial-card.manuscrito .testimonial-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 2px 0;
    color: #fff;
}

.testimonial-card.manuscrito .testimonial-info p {
    font-size: 1rem;
    color: #bdbdbd;
    margin: 0;
    font-weight: 400;
}

.testimonial-card.manuscrito .testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.testimonial-card.manuscrito .testimonial-content p {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    word-break: break-word;
}

.testimonial-card.manuscrito .ver-mais {
    color: #2ecc40;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 0.2rem;
    transition: color 0.2s;
    display: inline-block;
}

.testimonial-card.manuscrito .ver-mais:hover {
    color: #ab1111;
}

.customer-carousel {
    display: flex;
    align-items: stretch;
}

.customer-carousel .slick-track {
    display: flex !important;
    align-items: stretch;
}

.customer-carousel .slick-slide {
    display: flex !important;
    align-items: stretch;
    height: auto;
}

.testimonial-card.manuscrito {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0 16px;
    padding: 0.5%;
    flex: 1 1 100%;
    box-sizing: border-box;
}


.testimonial-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testimonial-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

@media (max-width: 991px) {
    .customer-carousel {
        max-width: 98vw;
    }
    .testimonial-card.manuscrito {
        font-size: 1.1rem;
        min-height: 220px;
        padding: 18px 10px 16px 10px;
    }
}