/* assets/css/main.css - Compiled from SCSS */

:root {
    --corporate-blue: #0e2a47;
    --corporate-gold: #c5a059;
    --corporate-dark: #1a1a1a;
    --corporate-light: #f4f4f4;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    transition: background-color 0.3s, color 0.3s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(14, 42, 71, 0.85), rgba(14, 42, 71, 0.7)), url('../img/estatualey.jpeg') no-repeat center center/cover;
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    opacity: 0.9;
}

.btn-cta {
    background-color: var(--corporate-gold);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background-color: #a88645;
    /* Darken gold */
    transform: translateY(-2px);
    color: white;
}

/* Services Grid */
.service-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 2rem;
    background-color: white;
    flex-grow: 1;
}

.service-card .card-title {
    color: var(--corporate-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Footer */
.footer-section {
    background-color: var(--corporate-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--corporate-gold);
}

.footer-section .social-icons a {
    font-size: 1.5rem;
    margin: 0 10px;
    color: white;
}

.footer-section .social-icons a:hover {
    color: var(--corporate-gold);
}

/* Dark Mode Overrides */
[data-bs-theme="dark"] body {
    background-color: #121212;
    color: #e0e0e0;
}

[data-bs-theme="dark"] .service-card {
    background-color: #1e1e1e;
}

[data-bs-theme="dark"] .service-card .card-body {
    background-color: #1e1e1e;
    color: #e0e0e0;
}

[data-bs-theme="dark"] .service-card .card-title {
    color: var(--corporate-gold);
}

[data-bs-theme="dark"] .footer-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}