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


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

 /* 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;
     /* Defina um tamanho máximo adequado */
     width: auto;
     /* Ajuste automaticamente a largura mantendo a proporção */
     height: auto;
     /* Mantém a altura proporcional */
 }

 /* Estilo inicial do header (oculto) */
 #header {
     position: fixed;
     top: -200px;
     /* Inicialmente fora da tela */
     left: 0;
     right: 0;
     width: 100%;
     background-color: rgb(255, 255, 255, 0.9);
     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;
     /* Fica visível no topo */
 }


 .header-content {
     display: flex;
     justify-content: space-between;
     /* Espaço entre o logo e os links */
     align-items: center;
     /* Alinha verticalmente o logo e os links */
     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: #0b3852;
     font-weight: bold;
 }

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

 /* 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;
     }

     /* 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: 120px;
         left: 0;
         background-color: white;
         box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
         padding: 20px;
     }

     /* 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 {
     font-weight: bold;
     margin: 20px 0;
     color: #fff;
 }

 h2 {
     font-weight: 800;
     font-size: 40px;
     margin: 20px 0;
 }

 h3 {
     font-weight: 900;
 }

 h4 {
     font-size: 22px;
 }

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

 p {
     color: #fff;
 }

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

 .bg-sepia {

     background: linear-gradient(to bottom, #382319, #7a5543, #9c7059);
     background-color: #7a5543;
 }

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

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


 .hero {
     background: black;
     color: #fff;
     padding: 60px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     min-height: 500px;
     width: 100%;
 }

 .white {

     color: #fff;

 }

 .red {
     color: #ff564a;
 }

 .blue {
     color: #4accff;
 }

 .green {
     color: #43e673;
 }

 .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;
 }


 .hero-text {
     max-width: 50%;
     text-align: left;
 }

 .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: #222;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.9);
    z-index: 1;
}


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

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

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

 .recommended-badge {
    position: absolute;
    background-color: #c39d1f;
    text-shadow: 2px 1px 1px #6e5500;
    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;
 }

 .cta-button:hover {
     background-color: rgba(71, 157, 236, 0.8);
     color: #fff !important;
     transform: scale(1.1);
     box-shadow: inset 0px -4px 1px #4aaeff;
     text-align: center;
 }


 .testimonials {
     background: linear-gradient(to bottom, #382319, #7a5543, #9c7059);
     padding: 50px 20px;
     text-align: center;
     color: white;
     margin-bottom: -20px;
 }

 .testimonial-box {
     background: #fff;
     padding: 40px 20px;
     border-radius: 8px;
     box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
     margin-bottom: 20px;
     min-height: 280px;
     color: #000;
     position: relative;
     margin-top: 140px;
 }

 .testimonial-box::before {
     content: '';
     position: absolute;
     top: -120px;
     left: 50%;
     transform: translateX(-50%);
     width: 150px;
     height: 150px;
     background-size: cover;
     background-position: center;
     border-radius: 50%;
     box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
     background-color: #fff;
     border: 3px solid #fff;
 }

 .col-md-4:nth-of-type(1) .testimonial-box::before {
     background-image: url('../imgs/depo.png');
 }

 .col-md-4:nth-of-type(2) .testimonial-box::before {
     background-image: url('../imgs/depo2.png');
 }

 .col-md-4:nth-of-type(3) .testimonial-box::before {
     background-image: url('../imgs/depo3.png');
 }

 .testimonial-box p {
     color: #000;
     font-size: 16px;
 }

 .donation-plans {
     background: linear-gradient(to bottom, #5e7995, #728aa3, #95a9be);
 }

 .donation-plans2 {
     background: linear-gradient(to bottom, #5e7995, #728aa3, #95a9be);
 }

 .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, #5e7995, #728aa3, #95a9be);
 }

 .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: #0e3044;
     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: #222;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     border: 3px solid #43e673;
     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: 54px;
     font-weight: bold;
     color: #43e673;
 }

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

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

 .benefits {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .benefits li {
     display: grid;
     align-items: center;
     gap: 10px;

     margin-bottom: 20px;
     /*border-bottom: 1px solid rgba(255, 255, 255, 0.3);*/
     font-size: 14px;
 }

 .benefits li i {
     margin: 0;
     font-size: 18px;
     line-height: 22px;
     min-width: 24px;
     text-align: center;
 }

 .green-icon {
     color: #43e673;
 }

 .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: #43e673;
     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 20px;
     background: url('../imgs/bg-fatima.jpg') no-repeat center 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: #ffeb99;
 }

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

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


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

 .mensagem-final {
     font-size: 1.2rem;
     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: url("../imgs/bg.jpg") no-repeat center center/cover;
     width: 100%;
     padding: 60px 20px;
     display: flex;
     justify-content: center;
 }


 .secure-section .container2 {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 30px;
     max-width: 1200px;
     width: 100%;
 }

 .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: 100px;
 }

 .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);
 }

 .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: 500px;
 }

 .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;
     }

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

     .hero-image {
         width: 100%;
         height: 250px;
         background-size: cover;
     }

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

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

     .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;
        background-color: #222;
        box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.9);
        z-index: 1;
        margin-top: 120px;
     }
     .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: #000;

     }

     .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 */
     }


 }