/* Global Styles */
:root {
    --rose: #d4889c;
    --rose-light: #eac5cf;
    --rose-dark: #b0657a;
    --grey-dark: #2a2a2a;
    --grey-light: #f9f9f9;
    --white: #FFFFFF;
    --text-color: #333333;
    --text-light: #E0E0E0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(212, 136, 156, 0.2);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.center {
    text-align: center;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--rose);
    margin: 20px 0 35px 0;
}

.divider.center {
    margin: 20px auto 60px auto;
}

.section-title {
    font-size: 2.8rem;
    color: var(--grey-dark);
    margin-bottom: 15px;
}

/* Scroll Animations */
[data-animate] {
    opacity: 0;
    transition: var(--transition);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

.animate-in {
    opacity: 1;
    transform: translate(0, 0);
}

/* Header */
.header {
    background-color: rgba(42, 42, 42, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    /* Slightly larger */
    width: auto;
}

.nav-list {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-list a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--rose);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--rose);
}

.btn-nav {
    border: 1px solid var(--rose);
    padding: 10px 25px;
    border-radius: 50px;
    /* Modern rounded */
    color: var(--rose) !important;
}

.btn-nav:hover {
    background-color: var(--rose);
    color: var(--white) !important;
    box-shadow: 0 0 15px rgba(212, 136, 156, 0.4);
}

.mobile-menu-icon {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(42, 42, 42, 0.6), rgba(42, 42, 42, 0.8)), url('img/debola-oliveira-advogada.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: -85px;
    /* Header Offset */
    padding-top: 85px;
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: var(--rose-light);
    /* Lighter Rose for contrast on dark */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #ddd;
    font-weight: 300;
    letter-spacing: 1px;
}

.btn-cta {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(176, 101, 122, 0.3);
    transition: var(--transition);
    border: none;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(176, 101, 122, 0.5);
    background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose) 100%);
}

.btn-rose {
    /* Kept for consistency if needed specifically, but same base style as default cta now */
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 30px 30px 0 var(--grey-light);
    /* Subtle shadow effect */
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--rose);
    z-index: -1;
    border-radius: 5px;
}

.about-text p {
    margin-bottom: 25px;
    color: #555;
    text-align: justify;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
    background: var(--grey-light);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--rose);
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature i {
    color: var(--rose);
    font-size: 1.4rem;
}

.feature span {
    font-weight: 500;
    color: var(--grey-dark);
    font-size: 1.1rem;
}

/* Services Section */
.services {
    background-color: var(--grey-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: transparent;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    background: var(--rose);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--rose);
    margin-bottom: 30px;
    background: var(--grey-light);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: var(--rose);
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--grey-dark);
}

.cta-container {
    text-align: center;
    margin-top: 80px;
}

/* FAQ Section */
.faq {
    background-color: var(--white);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 10px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--grey-dark);
}

.faq-question:hover h3 {
    color: var(--rose);
}

.faq-question i {
    color: var(--rose);
    transition: var(--transition);
    border: 1px solid var(--rose);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 10px 30px 10px;
    color: #666;
    line-height: 1.8;
}

.faq-item.active .faq-question i {
    background-color: var(--rose);
    color: var(--white);
    transform: rotate(45deg);
    /* Optional: turn + to x if desired, or just rotate */
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

/* Footer */
.footer {
    background-color: var(--grey-dark);
    color: #bbb;
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid #444;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    /* Pure white logo */
    opacity: 0.9;
}

.footer h3 {
    color: var(--rose);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-desc {
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: #3a3a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--rose);
    transform: translateY(-3px);
}

.contact-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-list i {
    color: var(--rose);
    border: 1px solid rgba(212, 136, 156, 0.3);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: -5px;
}

.footer-nav li {
    margin-bottom: 15px;
}

.footer-nav a:hover {
    color: var(--rose);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    font-size: 0.85rem;
    color: #888;
    background-color: #222;
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        margin-bottom: 50px;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .mobile-menu-icon {
        display: block;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--grey-dark);
        flex-direction: column;
        padding: 40px 0;
        gap: 25px;
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
        border-top: 1px solid #444;
    }

    .nav-list.active {
        transform: translateY(0);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}