/* ===== CUSTOM CSS FOR MEW ADVOCACIA ===== */

/* Font Family */
* {
    font-family: "Poppins", sans-serif;
}

/* Custom Colors */
:root {
    --primary-gold: #F0AE0E;
    --primary-dark: #1E1E1E;
    --primary-white: #FFFFFF;
    --light-gray: #F8F9FA;
    --text-muted: #6C757D;
    --border-color: #E9ECEF;
}

/* Global Styles */
body {
    line-height: 1.6;
    color: #333;
}

.hero-section .text-warning{
    color: #fff;
}

.text-warning {
    color: #f0ae0e !important;
}

.bg-warning {
    background-color: var(--primary-gold) !important;
}

.btn-warning {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #E6C200;
    border-color: #E6C200;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    color: #fff;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 1.8rem;
}

/* Navigation Styles */

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

.card-title{
    font-size: 18px;
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.titulo-diferente{
    color: #212529 !important;
}

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

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    color: #333 !important;
    transition: color 0.3s ease;
}

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

.contact-methods p{
    font-size: 14px;
}

.form-control-lg{
    font-size: 14px;
}

.form-select-lg{
    font-size: 14px;
}

.stat-card {
    width: auto;
    height: 100%;
}

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

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-gold);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('../image/banner.jpg');
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

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

.hero-section .badge {
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
}

.hero-section h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.display-5 {
    font-size: 28px;
}

.hero-section .lead {
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-buttons a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-buttons a:hover {
    transform: translateY(-2px);
}

/* Card Styles */
.card {
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
}

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

.icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Services Section */
#servicos .card {
    border-radius: 15px;
    transition: all 0.3s ease;
}

#servicos .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.border-warning {
    border: 2px solid var(--primary-gold) !important;
}

/* Testimonials */
.stars i {
    font-size: 1.1rem;
    margin-right: 0.2rem;
}

.client-info h6 {
    color: #333;
    font-size: 1rem;
}

/* CTA Section */
.cta-buttons a {
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.cta-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
}

footer h5,
footer h6 {
    color: #333;
}

footer .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

footer a:hover {
    color: var(--primary-gold) !important;
    transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons a {
        display: block;
        text-align: center;
        margin: 0 0 1rem 0 !important;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons a {
        display: block;
        margin: 0 0 1rem 0 !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0;
    }

    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .btn-lg {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

/* Animation Classes 
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E6C200;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Utility Classes */
.text-gold {
    color: var(--primary-gold) !important;
}

.bg-gold {
    background-color: var(--primary-gold) !important;
}

.border-gold {
    border-color: var(--primary-gold) !important;
}

.shadow-gold {
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3) !important;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
a:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {

    .navbar,
    .hero-section,
    .cta-buttons,
    footer {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}