/* 
   Version 1.1 - Updated Logo Layout
   Color Palette 
   Primary (Navy): #0A192F
   Secondary (Gold): #C5A059
   Background Light: #F8F9FA
   Text Dark: #212529
   Text Light: #ECECEC
*/

:root {
    --primary-color: #0A192F;
    --primary-light: #162a47;
    --secondary-color: #C5A059;
    --secondary-hover: #b08d4b;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-gray: #4A4A4A;
    --text-light: #ECECEC;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --border-radius: 4px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Utilities */
.highlight {
    color: var(--secondary-color);
}

.separator-gold {
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0.5rem 0 1.5rem 0;
}

.center .separator-gold {
    margin: 0.5rem auto 1.5rem auto;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
}

.section-header.center {
    text-align: center;
    margin-bottom: 3rem;
}

/* Buttons */
.btn-cta {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--secondary-color);
}

.btn-cta:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(197, 160, 89, 0.3);
}

.btn-nav {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.btn-nav:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

/* Header */
.header {
    background-color: var(--bg-white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px;
    /* Increased size as requested */
    width: auto;
    max-width: 250px;
    /* Ensure it doesn't push nav too far */
    display: block;
    /* Remove inline-block spacing */
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list li a {
    font-weight: 500;
    color: var(--primary-color);
}

.nav-list li a:hover {
    color: var(--secondary-color);
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(22, 42, 71, 0.95) 100%), url('../assets/hero-bg.png');
    /* Fallback gradient if no image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--bg-white);
    padding-top: 80px;
    /* Offset fixed header */
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-content h1 {
    color: var(--bg-white);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-image-placeholder {
    flex: 1;
    display: none;
    /* Hidden on mobile mostly, simplified */
}

/* Sobre Section */
.sobre {
    background-color: var(--bg-white);
}

.sobre-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.sobre-image {
    flex: 1;
    height: 600px;
    background-color: #ddd;
    /* Abstract placeholder */
    border-radius: var(--border-radius);
    position: relative;
    background-image: url('../assets/amanda-photo.jpg');
    /* Professional woman placeholder */
    background-size: cover;
    background-position: center;
}

.sobre-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    z-index: 0;
    border-radius: var(--border-radius);
}

.sobre-content {
    flex: 1;
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sobre-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Areas of Practice */
.atuacao {
    background-color: var(--bg-light);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--secondary-color);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Qualifications & Recognition */
.qualifications {
    margin: 1.5rem 0;
    padding: 15px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

.qualifications p {
    margin-bottom: 0.5rem !important;
    font-weight: 600;
    color: var(--primary-color) !important;
}

.qualifications i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.recognition-box {
    margin-top: 2rem;
    text-align: center;
}

.recognition-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.laurea-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    max-height: 300px;
}

/* Media Section */
.midia {
    background-color: var(--bg-white);
}

.media-highlight {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    border-top: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.media-source {
    background-color: var(--primary-color);
    color: var(--bg-white);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.media-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.media-highlight p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

.btn-small {
    padding: 10px 25px;
    font-size: 0.9rem;
}

.diferenciais {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0;
}

.diferenciais-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.diferencial-item {
    flex: 1;
    min-width: 200px;
}

.diferencial-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.diferencial-item h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.diferencial-item p {
    color: #cfcfcf;
    font-size: 0.9rem;
}

/* CTA Final */
.cta-final {
    background-color: var(--bg-white);
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-card {
    background: #fdfdfd;
    padding: 20px;
    border-radius: var(--border-radius);
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
    text-align: left;
}

.contact-card p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-card i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.cta-note {
    font-size: 0.8rem !important;
    margin-top: 20px;
    font-style: italic;
    color: #999;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 50px 0 20px 0;
}

.footer-container {
    text-align: center;
}

.footer-info h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.footer-info p {
    color: #ccc;
    margin-bottom: 5px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-list {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-container {
        flex-direction: column;
        justify-content: center;
    }

    .sobre-container {
        flex-direction: column;
    }

    .sobre-image {
        display: block;
        /* Ensure it's treated as a block */
        flex: none;
        /* Disable flex sizing to force height */
        width: 100%;
        height: 500px;
        min-height: 500px;
        /* Force minimum height */
        background-position: top center;
        margin-bottom: 30px;
        /* Add spacing below image */
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--bg-white);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-list {
    text-align: center;
}

.mobile-nav-list li {
    margin: 20px 0;
}

.mobile-nav-list a {
    color: var(--bg-white);
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.mobile-nav-list a:hover {
    color: var(--secondary-color);
}