 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');


 body {
     font-family: 'Montserrat', sans-serif;
     overflow-x: hidden;
 }

 ol,
 ul {
     padding: 0.9rem;
 }

 /* Ajusta o espaçamento das seções para evitar sobreposição */
 section {
     padding-top: 60px !important;
     /* Ajuste conforme a altura do header */
 }

 .logo img {
     max-width: 100px;
     width: auto;
     height: auto;     
 }

 

 /* Estilo inicial do header (oculto) */
 #header {
     position: fixed;
     top: -200px;
     /* Inicialmente fora da tela */
     left: 0;
     right: 0;
     width: 100%;
     background-color: rgb(38 0 0 / 90%);
     z-index: 1000;
     transition: top 0.3s ease-in-out, opacity 0.3s ease-in-out;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     /* Sombra sutil para destacar o header */
 }

 #header.visible {
     top: 0;
 }

 .header-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px 20px;
 }

 /* Estilo para o menu desktop */
 .menu {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 70%;
 }

 /* Menu items */
 .menu-items {
     display: flex;
     gap: 20px;
     text-align: center;
 }

 /* Para esconder os links no mobile */
 .menu-items a {
     text-decoration: none;
     color: #fff;
     font-weight: bold;
 }

 .menu-items a:hover {
     color: #e6ce43;
 }

 /* Estilo para o ícone do hambúrguer */
 .menu-toggle {
     display: none;
     /* Exibido por padrão no mobile */
     cursor: pointer;
     font-size: 30px;
 }

 /* Estilo para o ícone de fechar (X) */
 .menu-close {
     display: none;
     /* Escondido por padrão */
     cursor: pointer;
     font-size: 30px;
 }

 /* Responsividade para dispositivos móveis */
 @media (max-width: 768px) {

     .logo {
         align-items: center;
     }

     .menu {
         justify-content: end;
     }

     /* Estilo para o ícone do hambúrguer */
     .menu-toggle {
         display: block;
         /* Exibido por padrão */
         cursor: pointer;
         font-size: 30px;
     }

     /* Estilo para o ícone de fechar (X) */
     .menu-close {
         display: none;
         /* Escondido por padrão */
         cursor: pointer;
         font-size: 30px;
         z-index: 1000;
     }

     .header-content {
         background-color: bisque;
     }

     /* Esconder os itens do menu por padrão no mobile */
     .menu-items {
         display: none;
         flex-direction: column;
         width: 100%;
         text-align: center;
         position: absolute;
         top: 64px;
         left: 0;
         background-color: #640000;
         box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
         padding: 20px;
     }

     .menu-items a {
         position: relative;
         text-decoration: none;
         color: #fff;
         font-weight: bold;
         display: inline-block;
         padding-bottom: 5px;
     }

     .menu-items a::after {
         content: "";
         position: absolute;
         left: 0;
         bottom: 0;
         width: 0%;
         height: 3px;
         /* Altura da faixa */
         background-color: #e6ce43;
         /* Cor da faixa */
         transition: width 0.3s ease-in-out;
     }

     .menu-items a:hover::after {
         width: 100%;
         /* Ponta a ponta no hover */
     }

     /* Quando o menu estiver aberto */
     .menu-items.show {
         display: flex;
     }

     /* Esconder o hambúrguer quando o menu estiver aberto */
     .menu.open .menu-toggle {
         display: none;
     }

     /* Mostrar o X quando o menu estiver aberto */
     .menu.open .menu-close {
         display: block;
     }

 }

 /**/

 .container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .container-duv {
     max-width: 960px;
     margin: 0 auto;
     text-align: center;
 }

 h1, h2, h3, h4 {
    opacity: 1 !important;
    transform: none !important;
}

 h1 {
     margin: 20px 0;
     color: #33261f;
     letter-spacing: -1pt;
     font-weight: bold;
 }

 h2 {
     font-size: 40px;
     margin: 20px 0;
     letter-spacing: -1pt;
     font-weight: bold;
 }

 h3 {
     font-weight: 900;
 }

 h4 {
     font-size: 20px;
 }

 i {
     font-style: italic;
     display: contents;
 }

 p {
     color: #33261f;
 }

 .bg-gray {
     background: linear-gradient(to top, #ddd, #ccc, #333);
 }

 .bg-sepia {
     background: linear-gradient(to bottom, #35280f, #806320);
     background-color: #7a5543;
 }

 .bg-terracota {
     background: linear-gradient(to bottom, #271300, #ba2601);
     background-color: #712525;
 }

 .bg-bege {
 background:  linear-gradient(to bottom, #dfad89, #e17d59);
     background-color: #712525;
}


 .bg-azul {
     background: linear-gradient(to bottom, #0a0e14, #3a506b, #5e7995);
 }

 .bg-dourado {
     background: linear-gradient(to bottom, #4e2e05, #745915, #e4cc58);
 }

 .bg-vermelho {
     background: linear-gradient(to bottom, #7c0700, #e53900);
 }


 .slick-dots {
     display: none !important;
 }


 .hero {
     background: url('../imgs/bg-hero.jpg') no-repeat center center;
     background-size: cover;
     color:#7a5543;
     padding: 20px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     min-height: 40vh;
     width: 100%;
     position: relative;
     z-index: 1;
 }


 .white {

     color: #fff;

 }

  .brown {

     color:  #33261f;
 }


 .orange {
     color: #ffaa65;
 }

 .blue {
     color: #4accff;
 }

 .green {
     color: #01ff27;
 }

  .red {
     color: #f40000;
 }

 .quote {
     font-style: italic;
     font-size: 1.2rem;
     position: relative;
     display: inline-block;
     line-height: 26px;
 }

 .quote::before,
 .quote::after {
     font-size: 2rem;
     font-weight: bold;
     font-family: 'Georgia', serif;
 }

 .quote::before {
     content: "“";
     /* Aspas de abertura */
     margin-right: 5px;
 }

 .quote::after {
     content: "”";
     /* Aspas de fechamento */
     margin-left: 5px;
 }



 /*frase do topo header*/

 .hero-quote-sacred {
     position: relative;
     font-size: 2.2rem;
     line-height: 1.4;
     font-weight: 700;
     color: #30251f;
     padding: 20px 35px 8px 50px;
     margin: 15px 0;
 }

 .hero-quote-sacred::before {
     content: "“";
     position: absolute;
     top: -10px;
     left: -10px;
     font-size: 90px;
     color: rgba(35, 22, 22, 0.48);
     font-family: serif;
 }

 .hero-quote-sacred::after {
     content: "”";
     position: absolute;
     bottom: -45px;
     right: 180px;
     font-size: 90px;
     color: rgba(35, 22, 22, 0.48);
     font-family: serif;
 }


 .hero-text {
     max-width: 49%;
     text-align: left;
     margin-top: 0;
 }

 .hero-text2 {
     max-width: 50%;
     text-align: right;
     border-radius: 25px;
     padding: 20px;
     background-color: #222;
     box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.9);
     z-index: 1;
 }

 .hero-text3 {
     max-width: 50%;
     text-align: center;
     border-radius: 25px;
     padding: 20px;
     background-color:#9f612a;
     box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.9);
     z-index: 1;
 }

 @keyframes zoomEffect {
     0% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.05);
         /* zoom leve */
     }

     100% {
         transform: scale(1);
     }
 }

 .hero-image {
     background: url('../imgs/hero2.png') no-repeat center center;
     background-size: cover;
     width: 50%;
     height: 600px;

     /* Animação suave de zoom */
     animation: zoomEffect 8s ease-in-out infinite;
 }

 .hero::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.1);
     z-index: 0;
 }


 .hero-content {
     max-width: 600px;
     margin-top: 20px;
 }

 .chamado-coracao {
     background: linear-gradient(to top, #dfac88, #e4c6b2);
     background-size: cover;
     background-position: center;
     padding: 40px 20px;
     text-align: center;
     margin-bottom: -2px;
 }

 .chamado-coracao h2 {
     font-size: 2.2rem;
     font-weight: 700;
 }

 .chamado-coracao p {
     font-size: 1.1rem;
     line-height: 1.7;
     max-width: 800px;
     margin: 0 auto 15px;
 }

 .chamado-coracao .destaque {
     font-weight: 600;
     font-size: 1.2rem;
 }

 .cta-button {
     background-color: #ba2601;
     color: rgb(255, 255, 255) !important;
     font-weight: bold;
     padding: 15px 20px;
     text-transform: uppercase;
     display: inline-block;
     border-radius: 25px;
     text-decoration: none;
     box-shadow: inset 0px -4px 1px rgba(146, 0, 0, 0.8);
     transition: all 0.3s ease-in-out;
     text-align: center;
     transition: all 0.3s ease-in-out;
     text-align: center;
     transform: scale(1);
 }

 .cta-button:hover {
     transform: scale(1.05);
 }

 .cta-button2 {
     background-color: #db500a;
     color: rgb(255, 255, 255) !important;
     font-weight: bold;
     padding: 15px 20px;
     text-transform: uppercase;
     display: inline-block;
     border-radius: 25px;
     text-decoration: none;
     box-shadow: inset 0px -4px 1px rgba(146, 0, 0, 0.8);
     transition: all 0.3s ease-in-out;
     text-align: center;
     transition: all 0.3s ease-in-out;
     text-align: center;
     transform: scale(1);
 }

 .cta-button2:hover {
     transform: scale(1.05);
 }

 .recommended-badge {
     position: absolute;
     background-color: #ba2601;
     text-shadow: 2px 1px 1px #6d1600;
     color: white;
     font-weight: bold;
     padding: 6px 12px;
     border-radius: 8px 0 8px 0;
     top: -10px;
     left: 30%;
     z-index: 10;
     font-size: 16px;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
 }

 /* Certifique-se de que .plan tenha position: relative */
 .plan.highlight {
     position: relative;
 }


 .duvidas {
     background-color: #111;
     padding: 20px 0 20px;
 }

 .duvidas h2,
 p {
     color: white;
 }


 .testimonials {
     background: linear-gradient(to bottom, #e17d59, #ac6c41);
     padding: 50px 20px;
     text-align: center;
     color: white;
     margin-bottom: -20px;
 }

 .testimonial-box {

     padding: 40px 20px;
     border-radius: 8px;
     /*box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);*/
     margin-bottom: 20px;
     min-height: 280px;
     position: relative;
     margin-top: 15px;
 }


 .testimonial-box p {
     color: #fff;
     font-size: 16px;
     font-weight: bold;
 }

 .slick-slide img {
    display: block;
    margin: 0 auto;
}

 .donation-plans {
     background: linear-gradient(to bottom, #669794, #728aa3);
 }

 .donation-plans2 {
     background: linear-gradient(to bottom, #ad6c41, #af622f);
 }

 .donation-plans .container {
     width: 100%;
     text-align: center;
     margin-bottom: 20px;
     padding-top: 20px;


 }

 .donation-plans2 .container {
     width: 96%;
     text-align: center;
     margin-bottom: 20px;
     padding-top: 0px;
 }


 .plans-container {
     display: flex;
     justify-content: center;
     text-align: center;
     flex-wrap: wrap;
     gap: 20px;
     padding-top: 20px;
     background: linear-gradient(to bottom, #ad6a3e, #fbdddd);
 }

 .donation-plans h1 {
     font-size: 40px;
     font-weight: bold;
     margin-bottom: 20px;
     color: white !important;
     text-shadow: 2px 2px #0e3044 !important;
     width: 100%;
     text-align: center;
     display: block;
 }

 .plan {
     background:#a05f4e;
     padding: 20px;
     border-radius: 10px;
     border: 3px solid;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
     width: 370px;
     text-align: center;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     color: white;
     margin-bottom: 30px;
     cursor: pointer;
 }

 .plan:hover {
     transform: scale(1.05);
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
 }

 .highlight {
     background: #593a32;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     border: 3px solid#e6ce43;
     color: #fff;
 }

 .highlight:hover {
     transform: scale(1.05);
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
 }

 .plan h2 {
     margin: 0;
     padding: 10px;
 }

 .plan a {
     color: #4accff;
 }

 .price {
     font-size: 30px;
     font-weight: bold;
     color: #e6ce43;
 }

 .plan small {
     font-size: 14px;
 }

 .small {
     font-size: 11px;
     display: contents;
 }

 .benefits li {
     display: grid;
     gap: 2px;
     margin-bottom: 10px;
     font-size: 14px;
 }

 .benefits li strong {
     display: block;
     line-height: 1.2;
 }

 .benefits li span,
 .benefits li {
     line-height: 1.3;
 }

 .nao-incluso {
  opacity: 0.55; 
}

.nao-incluso b {
  opacity: 0.7; 
}

.nao-incluso i {
  opacity: 1; 
}

 .green-icon {
     color: #e6ce43;
 }

 .red-icon {
     color: #dc3545;
 }

 .formulario {
     display: flex;
     justify-content: center;
     align-items: center;
     text-align: center;
     padding: 40px 20px;
     background: #0e3044;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
 }

 .formulario h1 {
     font-size: 40px;
     color: white;
     margin-bottom: 10px;
     text-align: center;
 }

 .formulario h4 {
     font-size: 26px;
     color: #ddd;
     margin-bottom: 20px;
     text-align: center;
 }

 .formulario p {
     font-size: 16px;
     color: white;
     margin-bottom: 20px;
 }

 .formulario .cta-button {
     display: inline-block;
     padding: 12px 24px;
     background-color: #e6ce43;
     color: white;
     font-size: 18px;
     border-radius: 5px;
     text-decoration: none;
     transition: transform 0.2s, box-shadow 0.2s;
     box-shadow: inset 0px -4px 1px rgba(37, 70, 17, 0.8);

 }

 .formulario .cta-button:hover {
     transform: scale(1.05);

 }

 .escolha {
     padding: 80px 5px;
     background: url('../imgs/bg-jesus2.jpg') no-repeat top center/cover;
     color: #fff;
     position: relative;
     text-align: right;
 }

 .escolha::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
 }

 .escolha .container {
     display: flex;
     justify-content: flex-end;
     flex-direction: column;
     align-items: flex-end;
 }

 .titulo-impacto {
     font-size: 2.8rem;
     font-weight: bold;
     color: #ffcc00;
     animation: fadeIn 1.5s ease-in-out;
     z-index: 2;
 }

 .destaque {
     font-size: 1.4rem;
     font-weight: bold;
     margin-bottom: 15px;
     color: #ab4e1c;
 }

 .destaque-menu {
     background-color: #ba2601;
     text-shadow: 2px 1px 1px #6d1600;
     color: white !important;
     padding: 0 8px;
     border-radius: 6px;
     font-weight: bold;
     text-transform: uppercase;
 }

 .destaque-menu:hover {
     background-color: #ff3807;
     text-decoration: none;
 }


 .alerta {
     font-size: 1.3rem;
     font-weight: bold;
     color: #ff4444;
     margin: 5px 0;
 }

 .mensagem-final {
     font-size: 1.1rem;
     margin-top: 15px;
 }

 .mensagem-final::before {
     content: "“";
     font-size: 64px;
     line-height: 0;
     vertical-align: top;
     color: #fff;
     display: inline-block;
     margin-right: 4px;
     margin-top: 20px;
 }

 .mensagem-final::after {
     content: "”";
     font-size: 64px;
     line-height: 0;
     vertical-align: bottom;
     color: #fff;
     display: inline-block;
     margin-left: 4px;
     margin-top: -20px;
 }


 .graça {
     color: #ffcc00;
     font-weight: bold;
 }

 .chamada {
     font-size: 2rem;
     margin-top: 20px;
     color: #ff5733;
 }

 /* Fundo da seção site seguro*/
 .secure-section {
     background:rgb(49 37 37 / 90%);
     width: 100%;
     padding: 20px 20px;
     display: flex;
     justify-content: center;
 }

 .secure-section p {
 
color: white;
}


 .secure-section .container2 {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     max-width: 1024px;
     width: 60%;
 }

 .image-container img {
     max-width: 100%;
     height: auto;
 }

 .text-container {
     color: white;
     max-width: 600px;
     text-align: left;
 }

 .text-container h2 {
     font-size: 50px;
     font-weight: bold;

 }

 .text-container p {
     font-size: 22px;
     line-height: 1.5;
 }


 .footer {
     background-color: #f1f1f1;
     color: #222;
     text-align: center;
     padding: 20px 0;
     font-size: 16px;
     position: relative;
     width: 100%;
 }

 .footer img {
     width: 200px;
 }

 .footer p {
     margin: 0;
 }


 /* Definição inicial: elementos invisíveis e deslocados para a esquerda */
 h1,
 h2,
 h3,
 h4 {
     opacity: 0;
     transform: translateX(-50px);
     transition: opacity 1s ease-out, transform 1s ease-out;
 }

 /* Quando a classe 'show' for adicionada, os elementos aparecem suavemente */
 h1.show,
 h2.show,
 h3.show,
 h4.show {
     opacity: 1;
     transform: translateX(0);
 }

 strong,
 b {
     display: inline;
     line-height: inherit;
     font-weight: 700;
 }

 .slick-slide {
     background-color: #fff;
     border-radius: 8px;
     box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
     padding: 20px;
     margin: 10px;
     min-height: 450px;
     font-size: 14px;
 }

 .slick-slide h5,
 p {
     color: #000;
 }

 .slick-next {
     right: -10px;
 }

 .slick-prev {
     left: -10px;
 }





 /* Responsivo para mobile */
 @media (max-width: 768px) {
     .container {
         flex-direction: column;
         text-align: center;
     }

     .image-container img {
         max-width: 400px;
     }

     .text-container h2 {
         font-size: 24px;
     }

     .text-container p {
         font-size: 16px;
     }

     h2 {
         font-size: 28px !important;
     }

     h4 {
         margin: 20px 0;
         text-align: center;
     }

     .chamado-coracao h2 {
        font-family: 2rem;
     }

     .hero {
         flex-direction: column;
         text-align: center;
         padding: 20px 5px;
     }

     .hero-image {
         width: 90%;
         height: 350px;
         background-size: cover;
         order: 2 !important;
     }

     .container {
         width: 100vw;
         max-width: 100%;
     }

     .hero-text {
         width: 100% !important;
         max-width: 100%;
         order: 1;
     }

     .hero-text2 {
         width: 100%;
         max-width: 100%;
         position: relative;
         z-index: 3;
         margin: 125px 0 0 0;
     }

     .hero-text3 {
         max-width: 100%;
         text-align: center;
         border-radius: 25px;
         padding: 20px;
         box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.9);
         z-index: 1;
         margin-top: 80px;
     }

     .hero-quote-sacred {
         position: relative;
         font-size: 1.23rem;
         line-height: 1.4;
         font-weight: 700;
         color: #30251f;
         padding: 10px 30px 0;
         margin: 20px 0;
         text-align: center;
     }

     .hero-quote-sacred::before {
         content: "“";
         position: absolute;
         top: -30px;
         left: -10px;
     }

     .hero-quote-sacred::after {
         right: 0;
         bottom: -68px;
     }


     .mensagem-final {
         font-size: 1.1rem !important;
     }

     .donation-plans h1 {
         font-size: 25px;
     }

     .hero-content {
         max-width: 100%;
         text-align: center;
     }

     .plans-container {
         flex-wrap: wrap;
         justify-content: center;

     }

     .donation-plans2 .container {
         padding: 10px 0 0 0;

     }

     .donation-plans2 h1 {
         color: white;
         text-shadow: 2px 2px #070813 !important;
         font-size: 26px;

     }

     .escolha {
         position: relative;
         background-size: contain;
         background-position: top;
         z-index: 2;
         background-color: #2c1000;

     }

     .secure-section .container2 {
         flex-direction: column;
         text-align: center;
     }

     .image-container {
         order: -1;
         /* Garante que a imagem venha antes do texto */
     }

     .image-container img {
         width: 90%;
         /* Ajusta o tamanho da imagem */
     }

      .testimonials-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 10px 10px 30px;
    }

    .testimonials-carousel::-webkit-scrollbar {
        display: none;
    }

    .testimonials-carousel .col-md-4 {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
    }

    .testimonial-box {
        margin-top: 0px;
    }

    .slick-dotted.slick-slider {
    margin-bottom: 0;
}

    /* SÓ afeta o carrossel de depoimentos */
.testimonials-carousel .slick-slide {
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.testimonials-carousel .slick-current {
    opacity: 1;
    transform: scale(1);
}
    .testimonials-carousel .slick-prev,
.testimonials-carousel .slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
}

.testimonials-carousel .slick-prev:before,
.testimonials-carousel .slick-next:before {
    font-size: 28px;
    color: #fff;
    opacity: 1;
}

.testimonials-carousel .slick-prev {
    left: -5px;
}

.testimonials-carousel .slick-next {
    right: -5px;
}

.testimonials-carousel .slick-dots li button:before {
    color: #fff;
    opacity: 0.6;
}

.testimonials-carousel .slick-dots li.slick-active button:before {
    opacity: 1;
}

 }
 /* DESKTOP: 3 colunas normais */
.testimonials-carousel {
    display: flex;
    gap: 20px;
}

.testimonial-item {
    width: 33.33%;
}

/* MOBILE: slick assume controle */
@media (max-width: 768px) {
    .testimonials-carousel {
        display: block;
    }

    .testimonial-item {
        width: 100%;
    }

    /* Remove margens laterais exageradas do container */
    .testimonials {
        padding: 30px 10px !important;
    }

    /* Faz o depoimento ocupar mais largura */
    .testimonial-box {
        padding: 20px 10px !important;
    }

    /* Garante que o item use quase toda a tela */
    .testimonials-carousel .col-md-4 {
        flex: 0 0 95% !important;
        max-width: 95% !important;
    }

    /* Texto mais confortável */
    .testimonial-box p {
        font-size: 15px;
        line-height: 1.5;
        padding: 0 5px;
    }
}

/* SETAS (só no testimonials) */
.testimonials-carousel .slick-prev,
.testimonials-carousel .slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
    margin-bottom: 0 !important;
}

.testimonials-carousel .slick-prev:before,
.testimonials-carousel .slick-next:before {
    font-size: 28px;
    color: #fff;
    opacity: 1;
}

.testimonial-item:nth-child(1) .testimonial-box::before {
    background-image: url('../imgs/depo.png');
}

.testimonial-item:nth-child(2) .testimonial-box::before {
    background-image: url('../imgs/depo2.png');
}

.testimonial-item:nth-child(3) .testimonial-box::before {
    background-image: url('../imgs/depo3.png');
}

/* ============================= */
/* TESTIMONIALS (ISOLADO) */
/* ============================= */

/* DESKTOP normal */
.testimonials-carousel {
    display: flex;
    gap: 20px;
}

.testimonial-item {
    width: 33.33%;
}

/* MOBILE */
@media (max-width: 768px) {
    .testimonials-carousel {
        display: block;
    }

    .testimonial-item {
        width: 100%;
    }
}

/* 🔒 ZERA QUALQUER FUNDO DO SLICK SÓ AQUI */
.testimonials-carousel .slick-slide {
    background: transparent !important;
    box-shadow:  none;
    min-height: 300px;
}

/* SETAS */
.testimonials-carousel .slick-prev,
.testimonials-carousel .slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
}

.testimonials-carousel .slick-prev:before,
.testimonials-carousel .slick-next:before {
    font-size: 28px;
    color: #fff;
    opacity: 1;
}
