/* Design System & Variables */
:root {
    --primary-color: #102A43;
    /* Deep Navy Blue */
    --accent-color: #C5A059;
    /* Matte Gold */
    --bg-light: #F0F4F8;
    /* Ice White */
    --bg-white: #ffffff;
    --bg-charcoal: #334E68;
    /* Lead Gray */
    --text-dark: #102A43;
    --text-muted: #6b7280;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --container-padding: 0 2rem;
    --header-height: 80px;
    --border-radius: 4px;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--border-radius);
}

/* Layout Components */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-title {
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.text-center {
    text-align: center;
}

.subtitle {
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 2px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: #243b60;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    height: calc(var(--header-height) - 20px);
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 0;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    padding: calc(var(--header-height) + 5rem) 0 5rem;
    background-color: var(--bg-light);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content h1 span {
    color: var(--accent-color);
    display: block;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
    position: relative;
    z-index: 2;
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: 10px;
    z-index: 1;
}

.main-photo,
.secondary-photo {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.main-photo {
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-hover);
}

.secondary-photo {
    aspect-ratio: 3/2;
    box-shadow: var(--shadow-soft);
}

/* Authority Band */
.authority-band {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem 0;
    text-align: center;
}

.authority-band p {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Mission Vision Values */
.mission-vision-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.mvv-column {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.mvv-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.mvv-column h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.mvv-column p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Expertise Section */
.expertise {
    padding: 8rem 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.expertise-card {
    background-color: var(--bg-white);
    padding: 3.5rem 2.5rem;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #f1f1f1;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-color);
}

.card-icon {
    margin: 0 auto 2rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(16, 42, 67, 0.05);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.expertise-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Professional Section */
.professional {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.professional-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.professional-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.professional-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.badges {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.badge {
    background-color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid #e2e8f0;
}

/* Differentials */
.differentials {
    padding: 8rem 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.diff-item {
    text-align: center;
}

.diff-icon {
    display: flex;
    justify-content: center;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.diff-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.diff-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Google Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    text-align: left;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.reviewer-details h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

/* Final CTA */
.final-cta {
    padding: 8rem 0;
    background-color: var(--bg-white);
}

.final-cta h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.btn-cta-main {
    background-color: var(--accent-color);
    color: #fff;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.btn-cta-main:hover {
    background-color: #b59049;
    transform: scale(1.05);
}

/* Methodology Section */
.methodology {
    padding: 10rem 0;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 2rem;
}

.step {
    position: relative;
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(26, 43, 72, 0.05);
    margin-bottom: -1.5rem;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.step p {
    color: var(--text-muted);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info h2 span {
    color: var(--accent-color);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.info-item .icon {
    width: 40px;
    height: 40px;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item p {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 0 !important;
    font-weight: 500;
}

.social-section {
    margin-top: 0.5rem;
}

.social-section h3,
.office-section h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
}

.social-section h3::before,
.office-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 18px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.contact-form-wrapper h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.social-links-alt {
    display: flex;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    border: 1px solid #e2e8f0;
    color: var(--primary-color);
}

.social-btn svg {
    color: var(--accent-color);
}

.social-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 42, 67, 0.1);
}

.social-btn:hover svg {
    color: var(--accent-color);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.mt-2 {
    margin-top: 2rem;
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 4rem;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 43, 72, 0.1);
}

/* Honeypot anti-spam: Totalmente escondido para humanos */
.hp-field {
    display: none !important;
}

/* Hint de validação de e-mail */
.field-hint {
    font-size: 0.78rem;
    font-weight: 500;
    margin-top: 0.3rem;
    min-height: 1rem;
    transition: var(--transition-smooth);
}

.hint-valid {
    color: #16a34a;
}

.hint-invalid {
    color: #dc2626;
}

.required-mark {
    color: var(--accent-color);
    font-weight: 700;
    margin-left: 2px;
}


/* Footer */
.footer {
    padding: 6rem 0 3rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 32px;
}

.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    padding: 1.5rem 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-bar.active {
    transform: translateY(0);
}

.cookie-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-bar p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition-smooth);
}

.modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 43, 72, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-white);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    padding: 3rem 2rem;
    border-radius: 10px;
    position: relative;
    z-index: 2001;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
}

.modal-body {
    margin-top: 2rem;
    color: var(--text-muted);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {

    .hero-grid,
    .professional-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-content {
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .professional-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .mission-vision-values,
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mvv-column,
    .diff-item {
        text-align: center;
    }

    .diff-item {
        padding: 0 1rem;
    }
}

/* Reviews Section */
.reviews {
    padding: 8rem 0;
    background-color: var(--bg-charcoal);
    color: var(--bg-white);
}

.reviews .section-title h2,
.reviews .subtitle {
    color: var(--bg-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.user-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.stars {
    color: #fbbc05;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.google-icon {
    width: 24px;
    height: 24px;
}

.review-card p {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.review-date {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Status Modals Styles */
.status-content {
    max-width: 450px;
    text-align: center;
    padding: 3rem;
}

.status-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    font-weight: 700;
}

.success-icon {
    background-color: #d1fae5;
    color: #059669;
}

.error-icon {
    background-color: #fee2e2;
    color: #dc2626;
}

/* Responsive Reviews */
@media (max-width: 968px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: auto;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease-in-out;
        z-index: 999;
        display: flex;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .cta-header {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        padding-bottom: 5rem;
        /* Space for WhatsApp button */
        text-align: center;
    }

    .developer {
        margin-top: 0.5rem;
        display: block;
    }

    .cookie-bar .container {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Dr. Jorge Profile Section --- */
.dr-jorge {
    padding: 10rem 0;
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

/* Subtle background accent */
.dr-jorge::before {
    content: 'DAHER';
    position: absolute;
    top: 50%;
    left: -5%;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(16, 42, 67, 0.02);
    transform: translateY(-50%) rotate(-90deg);
    z-index: 0;
    pointer-events: none;
}

.dr-jorge-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.dr-jorge-content h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.dr-jorge-content .lead {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.bio-text {
    margin-bottom: 3rem;
}

.bio-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
}

.dimensions-cards {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dimension-mini-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.dimension-mini-card:hover {
    transform: translateX(10px);
    background-color: var(--bg-white);
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: var(--shadow-hover);
}

.dimension-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.dimension-info h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.dimension-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0 !important;
}

.conclusion {
    font-style: italic;
    color: var(--text-muted);
    border-left: 3px solid var(--accent-color);
    padding-left: 2rem;
    margin-top: 3rem;
    font-size: 1.05rem;
    line-height: 1.8;
}


/* Responsive for new section */
@media (max-width: 992px) {
    .dr-jorge-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .dr-jorge-content {
        text-align: center;
    }

    .dimension-mini-card {
        text-align: left;
    }

    .conclusion {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .modal-content {
        padding: 2.5rem 1rem !important; /* Mínimo de padding lateral (16px) */
        width: 95% !important;            /* Modal mais largo em dispositivos menores */
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 1.8rem;
    }
}
