/**
 * Instituto Missões Brasil - Custom CSS
 * Estilos personalizados para complementar o Bootstrap
 */

:root {
    --primary: #0d6efd;  /* Azul principal */
    --secondary: #6c757d;  /* Cinza secundário */
    --success: #198754;  /* Verde sucesso */
    --info: #0dcaf0;  /* Azul info */
    --warning: #ffc107;  /* Amarelo alerta */
    --danger: #dc3545;  /* Vermelho perigo */
    --light: #f8f9fa;  /* Cinza claro */
    --dark: #212529;  /* Cinza escuro */
    --primary-dark: #0b5ed7;  /* Azul escuro para hover */
    --primary-light: #cfe2ff;  /* Azul claro para backgrounds */
    --body-bg: #ffffff;  /* Fundo do corpo */
    --body-color: #212529;  /* Cor do texto */
    --heading-color: #0d6efd;  /* Cor dos títulos */
    --footer-bg: #212529;  /* Fundo do rodapé */
    --footer-color: #f8f9fa;  /* Cor do texto do rodapé */
    --border-radius: 0.375rem;  /* Raio da borda padrão */
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);  /* Sombra padrão */
    --transition: all 0.3s ease-in-out;  /* Transição padrão */
    --font-family-sans-serif: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;  /* Fonte principal */
    --font-family-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;  /* Fonte para títulos */
}

/* Estilos Gerais */
body {
    font-family: var(--font-family-sans-serif);
    color: var(--body-color);
    background-color: var(--body-bg);
    overflow-x: hidden;
    padding-top: 76px; /* Altura da navbar Bootstrap */
}

/* Navbar customizations */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Navbar default state (dark) */
.navbar-dark {
    background-color: rgba(33, 37, 41, 0.95) !important;
}

/* Navbar scrolled state (light) */
.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Navbar text colors */
.navbar-dark .navbar-text {
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.navbar-scrolled .navbar-text {
    color: #333333 !important;
}

.navbar-dark .navbar-text:hover,
.navbar-scrolled .navbar-text:hover {
    color: #007bff !important;
}

/* Navbar icons */
.navbar-dark .navbar-icon {
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.navbar-scrolled .navbar-icon {
    color: #333333 !important;
}

.navbar-dark .navbar-icon:hover,
.navbar-scrolled .navbar-icon:hover {
    color: #007bff !important;
    text-decoration: none;
}

/* Navbar toggler for mobile */
.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 12px;
    margin-top: 8px;
}

.dropdown-item {
    padding: 12px 20px;
    border-radius: 8px;
    margin: 4px 8px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #eff6ff !important;
    transform: translateX(4px);
}

/* Mobile responsiveness for navbar */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(33, 37, 41, 0.95);
        border-radius: 12px;
        margin-top: 10px;
        padding: 20px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.btn {
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.card {
    border-radius: var(--border-radius);
    border: none;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: var(--box-shadow) !important;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: var(--dark);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 50%;
}

.navbar-scrolled {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    background-color: white !important;
    padding: 0.5rem 0;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 6rem;
    background-color: var(--primary-light);
    position: relative;
    overflow: hidden;
    margin-top: -76px; /* Ajustado para a nova navbar */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern.svg');
    background-repeat: repeat;
    background-size: 200px;
    opacity: 0.1;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

.hero-section p.lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Seções */
section {
    padding: 5rem 0;
}

section h2 {
    margin-bottom: 1rem;
    color: var(--heading-color);
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    bottom: -10px;
    left: 0;
}

section .text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Cards */
.card-title {
    color: var(--heading-color);
    font-weight: 600;
}

.card-img-top {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    height: 200px;
    object-fit: cover;
}

/* Documentos */
.documentos .card {
    margin-bottom: 1.5rem;
    height: 100%;
}

.documentos .card-body {
    display: flex;
    flex-direction: column;
}

.documentos .card-title {
    margin-bottom: 0.5rem;
}

.documentos .card-text {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.documentos .btn {
    align-self: flex-start;
}

/* Ícones */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 2rem;
    transition: var(--transition);
}

.icon-circle:hover {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Formulário de Contato */
#formulario-contato {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

#formulario-contato .form-label {
    font-weight: 500;
}

#formulario-contato .form-control {
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
}

#formulario-contato .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-color);
    padding: 4rem 0 2rem;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

footer ul li a:hover {
    color: white;
    text-decoration: none;
}

footer .social-icons {
    display: flex;
    gap: 1rem;
}

footer .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

footer .social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

footer .copyright {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Animações */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Página de Eventos */
.events-hero,
.projects-hero,
.news-hero {
    background-color: var(--primary-light);
}

/* Página de Projetos */
.projects-hero h1,
.events-hero h1,
.news-hero h1 {
    color: var(--heading-color);
}

/* Página de Notícias */
.news-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Efeito ripple Material em botões */
.btn-ripple { position: relative; overflow: hidden; }
.btn-ripple .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255,255,255,0.4);
  animation: ripple 0.6s linear;
  pointer-events: none;
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

/* Página de Membros */
.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 5px solid white;
    box-shadow: var(--box-shadow);
}

.team-member h5 {
    margin-bottom: 0.25rem;
}

.team-member p {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.team-member .social-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.team-member .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    transition: var(--transition);
}

.team-member .social-links a:hover {
    background-color: var(--primary);
    color: white;
}

/* Estilos para Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255,255,255,0.9) 100%);
    position: relative;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content h1 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons .btn {
    min-width: 200px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Estilos para Carousel Responsivo */
.carousel-caption-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
}

.carousel-item img {
    object-fit: cover;
    border-radius: 0.5rem 0 0 0.5rem;
}

/* Estilos para Seção Sobre */
.features-list .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stats-overlay {
    backdrop-filter: blur(10px);
    border-top: 3px solid var(--primary);
}

.stat-item h4 {
    font-size: 1.5rem;
    margin: 0;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__fadeInRight {
    animation-name: fadeInRight;
}

.animate__delay-1s {
    animation-delay: 0.5s;
}

.animate__delay-2s {
    animation-delay: 1s;
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p.lead {
        font-size: 1.1rem;
    }
    
    .carousel-caption-custom {
        padding: 2rem !important;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav {
        text-align: center;
        padding-top: 1rem;
    }
    
    .hero-section {
        min-height: 80vh;
        padding: 6rem 0 4rem;
    }
    
    .min-vh-75 {
        min-height: 60vh;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .carousel-inner .row {
        flex-direction: column;
    }
    
    .carousel-item img {
        border-radius: 0.5rem 0.5rem 0 0;
        max-height: 250px;
    }
    
    .carousel-caption-custom {
        padding: 1.5rem !important;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .stats-overlay {
        position: static !important;
        margin-top: 1rem;
        border-radius: 0.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 70vh;
        padding: 5rem 0 3rem;
    }
    
    .min-vh-75 {
        min-height: 50vh;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-section p.lead {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center !important;
    }
    
    .hero-buttons .btn {
        min-width: 180px;
        font-size: 0.9rem;
    }
    
    .carousel-item img {
        max-height: 200px;
    }
    
    .carousel-caption-custom h3 {
        font-size: 1.3rem;
    }
    
    .carousel-caption-custom p {
        font-size: 0.9rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .features-list .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .features-list .feature-icon {
        margin: 0 auto 1rem auto;
    }
    
    .action-buttons {
        justify-content: center !important;
    }
    
    .cta-buttons {
        justify-content: center !important;
    }
    
    .stat-item h4 {
        font-size: 1.2rem;
    }
    
    .card-img-top {
        height: 180px;
    }
    
    footer {
        padding: 3rem 0 1.5rem;
    }
    
    footer h5 {
        margin-top: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: 60vh;
        padding: 3rem 0 2rem;
        margin-top: -70px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section p.lead {
        font-size: 0.95rem;
    }
    
    .hero-buttons .btn {
        min-width: 160px;
        font-size: 0.85rem;
        padding: 0.75rem 1.5rem;
    }
    
    .carousel-caption-custom {
        padding: 1rem !important;
    }
    
    .carousel-caption-custom h3 {
        font-size: 1.1rem;
    }
    
    .carousel-caption-custom p {
        font-size: 0.85rem;
        margin-bottom: 1rem !important;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .features-list .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .features-list .feature-icon i {
        font-size: 1rem !important;
    }
    
    .action-buttons .btn,
    .cta-buttons .btn {
        font-size: 0.9rem;
        padding: 0.75rem 2rem;
    }
    
    .stats-overlay .row {
        gap: 0.5rem;
    }
    
    .stat-item h4 {
        font-size: 1rem;
    }
    
    .stat-item small {
        font-size: 0.75rem;
    }
    
    .card-img-top {
        height: 160px;
    }
}

/* Media Queries para Responsividade Adicional */
@media (max-width: 576px) {
    body {
        padding-top: 70px;
    }
    
    .hero-section {
        min-height: 70vh;
        padding: 1rem 0;
        margin-top: -70px;
    }
    
    .navbar-brand img {
        height: 2.5rem !important;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-section p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .carousel-item img {
        height: 200px;
    }
    
    .card-img-top {
        height: 150px;
    }
    
    .section-padding {
        padding: 1.5rem 0;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .stat-item h4 {
        font-size: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 75px;
    }
    
    .hero-section {
        min-height: 80vh;
        margin-top: -75px;
    }
    
    .navbar-brand img {
        height: 2.8rem !important;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .carousel-item img {
        height: 250px;
    }
    
    .card-img-top {
        height: 180px;
    }
    
    .section-padding {
        padding: 2rem 0;
    }
    
    .about-image {
        margin-top: 2rem;
    }
    
    .stat-item {
        margin-bottom: 1.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        text-align: center;
    }
    
    .image-overlay {
        position: relative;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .carousel-item img {
        height: 300px;
    }
    
    .card-img-top {
        height: 200px;
    }
}

@media (min-width: 1025px) {
    body {
        padding-top: 80px;
    }
    
    .hero-section {
        min-height: 90vh;
        margin-top: -80px;
    }
    
    .navbar-brand img {
        height: 3.2rem !important;
    }
    
    .carousel-item img {
        height: 400px;
    }
}

/* Animações adicionais */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -10px, 0);
    }
    70% {
        transform: translate3d(0, -5px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Classes de animação */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.zoom-in {
    animation: zoomIn 0.6s ease-out forwards;
}

.bounce {
    animation: bounce 1s ease-in-out;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Lazy loading para imagens */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Acessibilidade */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus {
    outline: 3px solid rgba(13, 110, 253, 0.5);
    outline-offset: 2px;
}

/* Modo escuro (preparação) */
@media (prefers-color-scheme: dark) {
    :root {
        --body-bg: #121212;
        --body-color: #e0e0e0;
        --heading-color: #3d8bfd;
        --primary-light: #1a3a6c;
        --light: #2a2a2a;
    }
    
    .card,
    #formulario-contato {
        background-color: #1e1e1e;
        color: #e0e0e0;
    }
    
    .navbar-scrolled {
        background-color: #121212 !important;
    }
    
    .text-muted {
        color: #a0a0a0 !important;
    }
    
    .bg-light {
        background-color: #1a1a1a !important;
    }
    
    /* Ripple visível em tema escuro */
    .btn-ripple .ripple { background: rgba(255,255,255,0.35); }
    
    .team-member img {
        border-color: #1e1e1e;
    }
}