/* 
 * Advogados Associados - Custom Styles
 * Template Website Stylesheet
 */

/* Color Palette */
:root {
    --primary-color: #CDA462;
    --dark-color: #000000;
    --light-color: #FFFFFF;
    --text-color: #454545;
    --text-muted: #666666;
}

/* General Styles */
body {
    font-family: 'Sen', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    font-size: 17px;
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #b89350;
}

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

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

.navbar-dark .navbar-nav .nav-link {
    color: var(--light-color);
    font-size: 14px;
    font-weight: 400;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

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

.hero-section .lead {
    font-size: 1.25rem;
    line-height: 1.8;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
    padding: 3rem 0;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #b89350;
    border-color: #b89350;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(205, 164, 98, 0.3);
}

/* Cards */
.card {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Icon Boxes */
.icon-box {
    display: inline-block;
}

.icon-box i {
    color: var(--primary-color);
}

/* Divider */
.divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Process Cards */
.process-card {
    text-align: center;
    padding: 2rem;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

/* Team Cards */
.team-card img {
    height: 300px;
    object-fit: cover;
}

.team-card:hover {
    transform: translateY(-10px);
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Stats */
.stat-box h2 {
    color: var(--primary-color);
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b89350 100%);
    padding: 4rem 0;
}

.cta-section h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Forms */
.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(205, 164, 98, 0.25);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Accordion */
.accordion-button {
    background-color: var(--light-color);
    color: var(--text-color);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(205, 164, 98, 0.25);
}

/* Footer */
footer {
    background-color: var(--dark-color);
}

footer h5 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 767px) {
    body {
        font-size: 15px;
    }

    .hero-section {
        min-height: 400px;
        padding: 3rem 0;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

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

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

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

    .display-6 {
        font-size: 1.5rem;
    }

    .process-card {
        padding: 1rem;
    }

    .navbar-brand img {
        height: 30px;
    }
}

@media (min-width: 1024px) {
    .hero-section .lead {
        max-width: 800px;
        margin: 0 auto 2rem;
        line-height: 1.8;
    }
}

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

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

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

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

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

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

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

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

