/* ===== ESTILOS PERSONALIZADOS - ASSOCIAÇÃO DOS MORADORES DE JARDIM PIEDADE ===== */

/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Variáveis CSS */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --font-family: 'Poppins', sans-serif;
    --border-radius: 0.5rem;
    --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

/* Reset e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

body, html {
    width: 100%;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===== NAVEGAÇÃO ===== */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background-color: rgba(25, 135, 84, 0.95) !important;
}

/* ===== BOTÃO DE LOGIN FLUTUANTE ===== */
.floating-login-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.login-float-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--success-color), #0f5132);
    color: var(--warning-color);
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid var(--warning-color);
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.login-float-btn:hover {
    background: linear-gradient(135deg, #0f5132, var(--success-color));
    color: #ff8c00;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.4);
    text-decoration: none;
    border-color: #ff8c00;
}

.login-float-btn i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    color: var(--warning-color);
}

.login-float-btn:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #ff8c00;
}

.login-text {
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: var(--warning-color);
}

.login-float-btn:hover .login-text {
    color: #ff8c00;
}

/* Efeito de brilho no hover */
.login-float-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.login-float-btn:hover::before {
    left: 100%;
}

/* Animação de pulsação sutil */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(25, 135, 84, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
    }
}

.login-float-btn {
    animation: pulse 3s infinite;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .floating-login-btn {
        top: 15px;
        right: 15px;
    }
    
    .login-float-btn {
        padding: 0.6rem 1rem;
    }
    
    .login-text {
        font-size: 0.8rem;
    }
    
    .login-float-btn i {
        font-size: 1rem;
        margin-right: 0.3rem;
    }
}

@media (max-width: 480px) {
    .floating-login-btn {
        top: 10px;
        right: 10px;
    }
    
    .login-float-btn {
        padding: 0.5rem 0.8rem;
    }
    
    .login-text {
        display: none;
    }
    
    .login-float-btn i {
        margin-right: 0;
    }
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: white !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--warning-color) !important;
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    color: var(--warning-color) !important; /* Cor padrão amarela */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Sombra para melhor visibilidade */
}

.navbar-nav .nav-link:hover {
    color: #ff8c00 !important; /* Laranja no hover */
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #ff8c00; /* Laranja para a linha */
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
    left: 10%;
}

/* Link ativo (seção atual) */
.navbar-nav .nav-link.active {
    color: #ff8c00 !important; /* Laranja para link ativo */
}

.navbar-nav .nav-link.active::after {
    width: 80%;
    left: 10%;
    background-color: #ff8c00;
}

/* ===== SEÇÃO HERO ===== */
.hero-section {
    background: linear-gradient(135deg, var(--success-color) 0%, #0f5132 100%);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
    box-shadow: var(--box-shadow-lg);
}

/* ===== SEÇÕES GERAIS ===== */
section {
    padding: 4rem 0;
}

.section-header {
    position: relative;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--success-color), var(--warning-color));
    border-radius: 2px;
    margin: 0 auto;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--warning-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px white, 0 0 0 6px var(--success-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--success-color), var(--warning-color));
    border-radius: 2px;
}

/* ===== CARDS ===== */
.card {
    border: none;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.card-body {
    padding: 2rem;
}

.card-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* ===== ÍCONES ===== */
.bg-primary, .bg-success, .bg-warning, .bg-info, .bg-secondary, .bg-danger {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

/* ===== GALERIA ===== */
.gallery-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.gallery-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--success-color);
    box-shadow: 0 10px 30px rgba(25, 135, 84, 0.2);
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 135, 84, 0.1), transparent);
    transition: left 0.5s;
}

.gallery-card:hover::before {
    left: 100%;
}

.gallery-icon {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-icon {
    transform: scale(1.1) rotate(5deg);
}

.gallery-card:hover .gallery-icon i {
    color: var(--warning-color) !important;
}

/* Estilos para fotos do banco de alimentos */
.gallery-card img {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 8px;
}

.gallery-card:hover img {
    border-color: var(--success-color);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.3);
}

/* Estilos para o modal da galeria */
.gallery-thumb {
    transition: all 0.3s ease;
}

.gallery-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.3);
}

.thumbnail {
    transition: all 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.3);
}

#bancoAlimentosModal .modal-content {
    border-radius: 15px;
    overflow: hidden;
}

#bancoAlimentosModal .gallery-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

#bancoAlimentosModal .gallery-main-image img {
    transition: transform 0.3s ease;
}

#bancoAlimentosModal .gallery-main-image:hover img {
    transform: scale(1.02);
}

/* Estilos para o modal da alfabetização */
.thumbnail-alfabetizacao {
    transition: all 0.3s ease;
}

.thumbnail-alfabetizacao:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.3);
}

#alfabetizacaoModal .modal-content {
    border-radius: 15px;
    overflow: hidden;
}

#alfabetizacaoModal .gallery-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

#alfabetizacaoModal .gallery-main-image img {
    transition: transform 0.3s ease;
}

#alfabetizacaoModal .gallery-main-image:hover img {
    transform: scale(1.02);
}

/* Estilos para o modal do eletricista */
.thumbnail-eletricista {
    transition: all 0.3s ease;
}

.thumbnail-eletricista:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.3);
}

#eletricistaModal .modal-content {
    border-radius: 15px;
    overflow: hidden;
}

#eletricistaModal .gallery-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

#eletricistaModal .gallery-main-image img {
    transition: transform 0.3s ease;
}

#eletricistaModal .gallery-main-image:hover img {
    transform: scale(1.02);
}

/* ===== FORMULÁRIO DE CONTATO ===== */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #0056b3);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0056b3, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

.btn-success {
    background: linear-gradient(45deg, var(--success-color), #0f5132);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: linear-gradient(45deg, #0f5132, var(--success-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.4);
}

/* ===== SEÇÃO DE CONTATO ===== */
#contato {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--success-color);
    position: relative;
}

/* Remover limitações verticais no mobile */
@media (max-width: 768px) {
    #contato {
        min-height: auto !important;
        height: auto !important;
        display: block !important;
        align-items: stretch !important;
    }
}

#contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

#contato .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    flex: 1;
    position: relative;
    z-index: 2;
}

/* Container sem limitações no mobile */
@media (max-width: 768px) {
    #contato .container {
        flex: none !important;
        height: auto !important;
        min-height: auto !important;
    }
}

#contato .row {
    margin: 0;
    width: 100%;
}

#contato .row:first-child {
    margin-bottom: 3rem;
}

#contato .row:nth-child(2) {
    margin-bottom: 3rem;
}

#contato .col-lg-4,
#contato .col-lg-8 {
    padding: 0 15px;
    margin: 0;
}

#contato .card {
    margin: 0;
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

#contato .card-body {
    padding: 2rem;
}

#contato .card-title {
    color: var(--success-color) !important;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

#contato .form-control {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

#contato .row.g-3 {
    margin: 0;
    width: 100%;
}

#contato .row.g-3 > * {
    padding: 0 0.5rem;
    margin: 0;
}

/* Melhorar legibilidade dos ícones de contato */
#contato .text-center h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#contato .text-center p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#contato .bg-white {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#contato .bg-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

#contato .text-success {
    color: var(--success-color) !important;
}

/* Estilos para links de contato */
#contato a.text-decoration-none {
    color: inherit;
    transition: all 0.3s ease;
}

#contato a.text-decoration-none:hover {
    color: inherit;
    text-decoration: none;
    transform: translateY(-3px);
}

#contato a.text-decoration-none:hover .bg-white {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

#contato a.text-decoration-none:hover h5 {
    color: var(--warning-color) !important;
}

#contato a.text-decoration-none:hover .text-success {
    color: var(--warning-color) !important;
}

/* ===== MODAL DO MAPA ===== */
#mapModal .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#mapModal .modal-header {
    background: var(--success-color);
    color: white;
    border-radius: 15px 15px 0 0;
    border: none;
}

#mapModal .modal-title {
    color: white !important;
    font-weight: 600;
}

#mapModal .btn-close {
    filter: invert(1);
}

#mapModal .directions p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

#mapModal .directions strong {
    color: var(--success-color);
    font-weight: 600;
}

#mapModal .map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#mapModal .btn-success {
    background: linear-gradient(45deg, var(--success-color), #0f5132);
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

#mapModal .btn-success:hover {
    background: linear-gradient(45deg, #0f5132, var(--success-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

/* Melhorar título da seção de contato */
#contato h2 {
    color: white !important;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

#contato .lead {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

/* Responsividade para seção de contato */
@media (max-width: 768px) {
    #contato {
        min-height: auto !important;
        height: auto !important;
        padding: 3rem 0 !important;
        display: block !important;
        align-items: stretch !important;
    }
    
    #contato .container {
        padding: 0 20px !important;
        flex: none !important;
        height: auto !important;
        min-height: auto !important;
    }
    
    #contato .row:first-child {
        margin-bottom: 2.5rem;
    }
    
    #contato .row:nth-child(2) {
        margin-bottom: 0;
    }
    
    /* Melhorar visualização dos ícones no mobile */
    #contato .col-lg-3 {
        margin-bottom: 2.5rem;
    }
    
    #contato .text-center h5 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    #contato .text-center p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0;
    }
    
    #contato .bg-white {
        width: 55px !important;
        height: 55px !important;
        margin-bottom: 1.2rem !important;
    }
    
    #contato .bg-white i {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 576px) {
    #contato {
        padding: 2.5rem 0;
        min-height: auto;
        display: block;
    }
    
    #contato .container {
        padding: 0 15px;
    }
    
    #contato .col-lg-3 {
        margin-bottom: 2rem;
    }
    
    #contato .text-center h5 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    #contato .text-center p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    #contato .bg-white {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 1rem !important;
    }
    
    #contato .bg-white i {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    #contato {
        padding: 2rem 0;
    }
    
    #contato .container {
        padding: 0 10px;
    }
    
    #contato .col-lg-3 {
        margin-bottom: 1.8rem;
    }
    
    #contato .text-center h5 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    #contato .text-center p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    #contato .bg-white {
        width: 45px !important;
        height: 45px !important;
        margin-bottom: 0.8rem !important;
    }
    
    #contato .bg-white i {
        font-size: 1rem !important;
    }
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #495057 100%);
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease-out;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .card-body {
        padding: 1rem;
    }
}

/* ===== UTILITÁRIOS ===== */
.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--warning-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(45deg, var(--primary-color), var(--warning-color)) 1;
}

/* ===== SCROLL SUAVE ===== */
html {
    scroll-behavior: smooth;
}

/* ===== LOADING E ESTADOS ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BOTÕES PERSONALIZADOS ===== */
.btn-outline-light:hover {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
    color: var(--dark-color);
}

.btn-warning {
    background: linear-gradient(45deg, var(--warning-color), #ff8c00);
    border: none;
    color: var(--dark-color);
    font-weight: 600;
}

.btn-warning:hover {
    background: linear-gradient(45deg, #ff8c00, var(--warning-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* ===== EFEITOS HOVER ESPECIAIS ===== */
.card-hover-effect {
    transition: all 0.3s ease;
}

.card-hover-effect:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ===== INDICADORES DE SEÇÃO ATIVA ===== */
.navbar-nav .nav-link.active {
    color: var(--warning-color) !important;
}

.navbar-nav .nav-link.active::after {
    width: 80%;
    left: 10%;
}
