 .ftco-gallery {
     display: none !important;
 }

 :root {
     --primary-color: #FF4500;
     --primary-hover: #E03E00;
     --primary-light: #FFF5F2;
     --text-dark: #2D3748;
     --text-muted: #718096;
     --bg-light: #FAF6F4;
     --white: #FFFFFF;
     --border-color: #E2E8F0;
     --dark-footer: #1A202C;
 }

 /* RESET & GENERAL STYLES */
 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Inter', sans-serif;
     background-color: var(--bg-light);
     color: var(--text-dark);
     line-height: 1.5;
     -webkit-font-smoothing: antialiased;
 }

 h1,
 h2,
 h3,
 h4 {
     font-family: 'Montserrat', sans-serif;
     line-height: 1.2;
 }

 img {
     max-width: 100%;
     height: auto;
     display: block;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 /* CONTAINER GLOBAL */
 .container {
     width: 100%;
     max-width: 1140px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* HEADERS / TITLES REUTILIZÁVEIS */
 .section-header {
     text-align: center;
     margin-bottom: 24px;
 }

 .section-title {
     font-size: 1.75rem;
     color: var(--primary-color);
     font-weight: 800;
     text-transform: uppercase;
     margin-bottom: 8px;
 }

 /* BOTÕES */
 .btn {
     display: inline-block;
     background-color: var(--primary-color);
     color: var(--white);
     padding: 12px 28px;
     border-radius: 30px;
     font-weight: 600;
     font-size: 1rem;
     border: none;
     cursor: pointer;
     transition: background-color 0.2s ease, transform 0.2s ease;
     box-shadow: 0 4px 14px rgba(255, 69, 0, 0.25);
     text-align: center;
 }

 .btn:hover {
     background-color: var(--primary-hover);
     transform: translateY(-2px);
     color: #fff !important;
 }

 /* HEADER / NAVBAR */
 .header {
     background-color: var(--white);
     border-bottom: 1px solid var(--border-color);
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 70px;
 }

 .nav-logo {
     font-family: 'Montserrat', sans-serif;
     font-weight: 800;
     font-size: 1.25rem;
     color: var(--primary-color);
 }

 .nav-links {
     display: flex;
     gap: 20px;
 }

 .nav-links a {
     font-weight: 500;
     font-size: 0.95rem;
     color: #4A5568;
     transition: color 0.2s ease;
 }

 .nav-links a:hover {
     color: var(--primary-color);
 }

 @media (max-width: 768px) {
     .nav-links {
         display: none;
         /* Simplificado para focar na ação rápida no mobile */
     }
 }

 /* HERO SECTION */
 .hero-section {
     padding: 40px 0;
     background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
 }

 .hero-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 28px;
     align-items: center;
 }

 @media (min-width: 900px) {
    .hero-section{
        padding: 120px 0 40px 0 !important;
    }
     .hero-grid {
         grid-template-columns: 1.2fr 1fr;
         gap: 60px;
     }
 }

 .hero-title {
     font-size: 2rem;
     font-weight: 800;
     color: var(--primary-color);
     margin-bottom: 16px;
     text-transform: uppercase;
 }

 .hero-subtitle {
     font-size: 0.95rem;
     color: #4A5568;
     margin-bottom: 24px;
     background-color: var(--white);
     padding: 20px;
     border-radius: 12px;
     border-left: 4px solid var(--primary-color);
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
 }

 .hero-placeholder-img {
     width: 100%;
     height: 357px;
     background-color: #E2E8F0;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
 }

 .hero-placeholder-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* ÁREA DE DOAÇÃO (PIX) */
 .donation-section {
     padding: 30px 0;
 }

 .pix-container {
     background-color: var(--white);
     border-radius: 16px;
     padding: 28px;
     display: grid;
     grid-template-columns: 1fr;
     gap: 24px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
     border: 1px solid var(--border-color);
 }

 @media (min-width: 900px) {
     .pix-container {
         grid-template-columns: 1.2fr 1fr 1.2fr;
         gap: 30px;
     }
 }

 .pix-info h3 {
     font-size: 1.2rem;
     color: var(--primary-color);
     margin-bottom: 8px;
 }

 .pix-instruction {
     font-size: 0.9rem;
     color: var(--text-muted);
     margin-bottom: 20px;
 }

 .benefit-item {
     display: flex;
     gap: 12px;
     margin-bottom: 14px;
 }

 .benefit-icon {
     font-size: 1.1rem;
 }

 .benefit-item strong {
     display: block;
     font-size: 0.9rem;
     color: var(--text-dark);
 }

 .benefit-item p {
     margin: 0;
     font-size: 0.8rem;
     color: var(--text-muted);
 }

 .pix-qrcode-area {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
 }

 .badge-scan {
     background-color: var(--primary-color);
     color: var(--white);
     font-size: 0.75rem;
     font-weight: 700;
     padding: 4px 10px;
     border-radius: 4px;
     margin-bottom: 10px;
     text-transform: uppercase;
 }

 .qrcode-box {
     background: var(--white);
     padding: 12px;
     border-radius: 12px;
     border: 1px solid var(--border-color);
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
 }

 .qrcode-box img {
     max-width: 150px;
 }

 .qrcode-footer {
     font-size: 0.8rem;
     color: var(--text-muted);
     margin-top: 10px;
 }

 .pix-copy-area {
     display: flex;
     flex-direction: column;
 }

 .input-label {
     font-size: 0.85rem;
     font-weight: 700;
     color: var(--primary-color);
     margin-bottom: 6px;
 }

 .input-group {
     display: flex;
     border: 1px solid var(--border-color);
     background: var(--white);
     border-radius: 8px;
     overflow: hidden;
     margin-bottom: 12px;
 }

 .input-group input {
     flex: 1;
     border: none;
     padding: 10px 12px;
     font-size: 0.9rem;
     color: var(--text-dark);
     font-weight: 600;
     outline: none;
 }

 .btn-copy-icon {
     border: none;
     background: #F1F5F9;
     padding: 0 12px;
     cursor: pointer;
     border-left: 1px solid var(--border-color);
 }

 .btn-copy-full {
     background-color: var(--primary-color);
     color: var(--white);
     border: none;
     padding: 12px;
     border-radius: 8px;
     font-size: 0.95rem;
     font-weight: 600;
     cursor: pointer;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 8px;
     transition: background 0.2s;
 }

 .btn-copy-full:hover {
     background-color: var(--primary-hover);
 }

 .bank-app-text {
     font-size: 0.8rem;
     color: var(--text-muted);
     text-align: center;
     margin: 12px 0;
 }

 .security-footer {
     font-size: 0.75rem;
     color: var(--text-muted);
     line-height: 1.3;
     text-align: center;
     border-top: 1px solid var(--border-color);
     padding-top: 12px;
 }

 /* SEÇÃO QUEM SOMOS */
 .about-section {
     padding: 40px 0;
     background-color: var(--white);
 }

 .about-box {
     max-width: 800px;
     margin: 0 auto;
     background-color: var(--bg-light);
     padding: 30px;
     border-radius: 16px;
     border-left: 5px solid var(--primary-color);
 }

 .about-box p {
     font-size: 0.95rem;
     color: #4A5568;
     margin-bottom: 12px;
 }

 .about-box p:last-child {
     margin-bottom: 0;
 }

 /* SEÇÃO GALERIA */
 .gallery-section {
     padding: 40px 0;
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
     gap: 12px;
 }

 .gallery-item {
     height: 180px;
     background-color: #CBD5E0;
     border-radius: 12px;
     position: relative;
     overflow: hidden;
     transition: transform 0.2s ease-in-out;
 }

 .gallery-grid {
     display: grid;
     /* Mobile por padrão: exatamente 2 colunas */
     grid-template-columns: repeat(2, 1fr);
     gap: 10px;
 }

 .gallery-item {
     border-radius: 12px;
     overflow: hidden;
     /* Altura proporcional para mobile */
     height: 140px;
 }

 .gallery-item a {
     display: block;
     width: 100%;
     height: 100%;
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .gallery-item:hover img {
     transform: scale(1.05);
 }

 /* Tablet e Desktop (a partir de 640px) */
 @media (min-width: 640px) {
     .gallery-grid {
         grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
         gap: 16px;
     }

     .gallery-item {
         height: 180px;
     }
 }

 .gallery-item::before {
     content: "Foto Galeria";
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     color: #718096;
     font-size: 0.85rem;
     display: none;
 }

 /* SEÇÃO DEPOIMENTOS (SWIPER) */
 .testimonials-section {
     padding: 40px 0;
     background-color: var(--white);
 }

 .swiper-container-wrapper {
     padding: 10px 0 40px 0;
     position: relative;
 }

 .swiper {
     width: 100%;
     padding-bottom: 30px;
 }

 .testimonial-card {
     background-color: var(--bg-light);
     padding: 24px;
     border-radius: 16px;
     border: 1px solid var(--border-color);
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     box-sizing: border-box;
 }

 .testimonial-quote {
     font-size: 0.9rem;
     color: #4A5568;
     font-style: italic;
     margin-bottom: 20px;
     position: relative;
 }

 .testimonial-user {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .user-avatar {
     width: 40px;
     height: 40px;
     background-color: #A0AEC0;
     border-radius: 50%;
     flex-shrink: 0;
 }

 .user-name {
     font-weight: 600;
     font-size: 0.9rem;
     color: var(--text-dark);
 }

 .user-role {
     font-size: 0.75rem;
     color: var(--primary-color);
     font-weight: 500;
 }

 /* Custom Swiper Pagination */
 .swiper-pagination-bullet-active {
     background-color: var(--primary-color) !important;
 }

 /* FOOTER */
 .footer {
     background-color: var(--dark-footer);
     color: #A0AEC0;
     padding: 40px 0 20px 0;
     font-size: 0.85rem;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 24px;
     margin-bottom: 30px;
 }

 .footer-col h4 {
     color: var(--white);
     font-size: 1rem;
     margin-bottom: 12px;
 }

 .footer-col p {
     margin-bottom: 6px;
 }

 .footer-bottom {
     border-top: 1px solid #2D3748;
     padding-top: 16px;
     text-align: center;
     font-size: 0.75rem;
 }



 /* AJUSTES SWIPER DEPOIMENTOS */
 .swiper-container-wrapper {
     position: relative;
     padding: 0 40px 40px 40px;
     /* Espaço lateral para as setas não cobrirem os cards */
 }

 .swiper {
     width: 100%;
 }

 .swiper-slide {
     height: auto;
     /* Garante que todos os slides acompanhem a altura do maior card */
     display: flex;
 }

 .testimonial-card {
     background-color: var(--bg-light);
     padding: 24px;
     border-radius: 16px;
     border: 1px solid var(--border-color);
     width: 100%;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .testimonial-quote {
     font-size: 0.9rem;
     color: #4A5568;
     font-style: italic;
     margin-bottom: 20px;
 }

 .testimonial-user {
     display: flex;
     align-items: center;
     gap: 12px;
 }



 .user-avatar {
     width: 64px;
     height: 64px;
     border-radius: 50%;
     object-fit: cover;
     flex-shrink: 0;
 }

 .user-name {
     font-weight: 600;
     font-size: 0.9rem;
     color: var(--text-dark);
 }

 .user-role {
     font-size: 0.75rem;
     color: var(--primary-color);
     font-weight: 500;
 }

 /* Estilização das Setas do Swiper */
 .swiper-button-next,
 .swiper-button-prev {
     color: var(--primary-color);
     width: 36px;
     height: 36px;
     background: var(--white);
     border-radius: 50%;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
 }

 .swiper-button-next::after,
 .swiper-button-prev::after {
     font-size: 16px;
     font-weight: bold;
 }

 .swiper-pagination-bullet-active {
     background-color: var(--primary-color) !important;
 }



/* TOAST NOTIFICAÇÃO PIX */
.toast-pix {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    
    /* Previne achatamento no mobile */
    width: max-content;
    max-width: 90vw;
    box-sizing: border-box;
    
    /* Layout & Cores */
    background: rgba(26, 32, 44, 0.95); /* Escuro com leve transparência */
    color: #FFFFFF;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    
    display: flex;
    align-items: center;
    gap: 12px;
    
    /* Destaque visual: Borda, Blur e Glow */
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(72, 187, 120, 0.35);
    
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* Estado Ativo (Visível) */
.toast-pix.show {
    bottom: 30px;
    opacity: 1;
}

.toast-icon {
    background-color: #48BB78;
    color: #FFFFFF;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0; /* Impede que o ícone esmague caso o texto quebre */
}








/* .navbar > .container, .navbar > .container-fluid{
    background-color: #000 !important;
}

.navbar{
    padding: 0 !important;
}

@media(max-width:767.98px){
    .navbar > .container, .navbar > .container-fluid{
    padding-right: 15px;
    padding-left: 15px;
}
} */


.navbar{
    background-color: #000 !important;
    top: 0 !important;
}

b,strong{font-weight:700 !important;}
