/* Root Variables - Dark Theme (Default) - Cores do Logo Moraca Advogados */
:root {
    --primary-color: #1a3a7a;
    --secondary-color: #102a5c;
    --accent-color: #d4a017;
    --text-primary: #ffffff;
    --text-secondary: #e5e7eb;
    --bg-primary: #0a1a3d;
    --bg-secondary: #102a5c;
    --bg-tertiary: #1a3a7a;
    --border-color: #2a4a8a;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Light Theme */
body.light-theme {
    --primary-color: #1e40af;
    --secondary-color: #f5f5f5;
    --accent-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --border-color: #e5e7eb;
    --success-color: #059669;
    --danger-color: #dc2626;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.logo:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.1);
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.nav-links a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.theme-toggle {
    background: none;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    border-color: var(--accent-color);
    background-color: var(--bg-tertiary);
    transform: scale(1.1);
}

/* ==================== LANGUAGE SWITCHER ==================== */
.lang-switcher {
    position: relative;
}

.lang-button {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    line-height: 1;
}

.lang-button:hover {
    border-color: var(--accent-color);
    background-color: var(--bg-tertiary);
}

.lang-button .lang-caret {
    font-size: 10px;
    opacity: 0.7;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 200px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    list-style: none;
    margin: 0;
    padding: 4px;
    z-index: 1000;
}

.lang-menu li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-primary);
    transition: background 0.2s ease;
}

.lang-menu li:hover {
    background-color: var(--bg-tertiary);
}

.lang-menu li span {
    font-size: 18px;
}

/* ==================== FALE CONOSCO ==================== */
.fale-conosco-section {
    background: var(--bg-primary);
    padding: 60px 0 40px;
    margin-top: 20px;
}

.fale-conosco-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.fale-conosco-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.fale-conosco-header h2 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.fale-conosco-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

.contato-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contato-form .form-group {
    margin-bottom: 1rem;
}

.contato-form button[type="submit"] {
    width: 100%;
    margin-top: 0.5rem;
}

.contato-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.contato-info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.contato-info-item:hover {
    color: var(--accent-color);
}

.contato-info-item svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

/* ==================== DEV MODAL ==================== */
.dev-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.dev-modal-overlay[hidden] {
    display: none;
}

.dev-modal {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: devModalIn 0.25s ease-out;
}

@keyframes devModalIn {
    from { opacity: 0; transform: translateY(-10px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.dev-modal-icon {
    font-size: 56px;
    margin-bottom: 0.75rem;
}

.dev-modal h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 22px;
}

.dev-modal p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 15px;
}

.dev-modal button {
    min-width: 120px;
}

@media (max-width: 600px) {
    .fale-conosco-wrapper {
        padding: 1.5rem;
    }
    .contato-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 80px 0;
    margin-top: 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

#servico.servico-section.hero {
    background: var(--bg-primary);
    margin-top: 0;
}

.servico-centered {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    grid-template-columns: unset !important;
    gap: 0 !important;
}

.servico-centered .hero-text {
    text-align: center;
    max-width: 700px;
}

.hero-text {
    animation: slideInLeft 0.8s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.headline {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.subheadline {
    font-size: 21px;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    line-height: 1.55;
}

.hero-image {
    animation: slideInRight 0.8s ease-out;
    text-align: center;
    display: flex;
    align-items: stretch;
    min-height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
    background-color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-secondary:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* ==================== SECTIONS ==================== */
section {
    padding: 60px 0;
    transition: all 0.3s ease;
}

section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* Institucional Section */
.institucional-section {
    background-color: var(--bg-primary);
}

.institucional-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.institucional-text {
    animation: fadeIn 0.8s ease-out;
}

.institucional-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.institucional-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.institucional-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 16px;
}

.institucional-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.institucional-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
    font-size: 15px;
}

.institucional-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.servico-adicional-badge {
    background-color: var(--bg-secondary);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.institucional-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Seção Advogado */
.advogado-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.advogado-section h2 {
    margin-bottom: 2.5rem;
}

.advogado-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.advogado-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
    animation: slideInLeft 0.8s ease-out;
}

.advogado-text {
    animation: slideInRight 0.8s ease-out;
}

.advogado-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.advogado-text .titulo {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.advogado-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 15px;
}

.advogado-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Especialidades Grid */
.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.especialidade-tag {
    background-color: var(--bg-secondary);
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.especialidade-tag:hover {
    transform: translateX(5px);
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0 2rem 0;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    color: white;
    border: 2px solid transparent;
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #0a66c2);
}

.social-btn.facebook:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.instagram:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 25px rgba(224, 148, 51, 0.4);
}

.social-btn.linkedin {
    background: linear-gradient(135deg, #0077b5, #0066a1);
}

.social-btn.linkedin:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 119, 181, 0.4);
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #20ba5d);
}

.social-btn.whatsapp:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.missao {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-top: 2rem;
    font-style: italic;
}

/* Formulário Section */
.formulario-section {
    background-color: var(--bg-secondary);
}

.form-intro {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.consulta-form {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    max-width: 100%;
    margin: 0;
    box-shadow: none;
}

.modal-content .consulta-form {
    background-color: transparent;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
    background-color: var(--bg-secondary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* File Upload */
.file-upload {
    position: relative;
    margin-top: 0.5rem;
}

.file-input {
    display: none;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.file-label:hover {
    border-color: var(--accent-color);
    background-color: var(--bg-secondary);
}

.file-label span:first-child {
    color: var(--text-primary);
    font-weight: 600;
}

.file-name {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 600;
}

.file-upload small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 12px;
}

/* Checkbox */
.form-group.checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-group.checkbox input {
    margin-top: 5px;
    width: auto;
    cursor: pointer;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
}

.form-group.checkbox a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
}

.form-group.checkbox a:hover {
    color: var(--text-primary);
}

/* Form Messages */
.form-message {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    display: block;
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
    display: block;
}

/* Serviço Section */
.servico-section {
    background-color: var(--bg-secondary);
}

.servico-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.servico-text {
    animation: fadeIn 0.8s ease-out;
}

.servico-text p {
    font-size: 16px;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.benefit-list {
    list-style: none;
    margin: 0.5rem 0;
}

.benefit-list li {
    padding: 3px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.4;
}

#home .benefit-list li {
    font-size: 14px;
    padding: 3px 0;
    padding-left: 28px;
    line-height: 1.4;
}

#home h4 {
    font-size: 22px;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

#home .hero-text p {
    font-size: 18px;
    line-height: 1.6;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-weight: bold;
    font-size: 16px;
}

.servico-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Como Funciona */
.como-funciona {
    background-color: var(--bg-primary);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow);
}

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

.step h3 {
    font-size: 18px;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    font-size: 14px;
}

.como-funciona .btn {
    display: block;
    margin: 0 auto;
}

/* Resultado Section */
.resultado-section {
    background-color: var(--bg-secondary);
}

.intro-text {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.resultado-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.resultado-card {
    background-color: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.resultado-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 1rem;
}

.resultado-card h3 {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Para quem é */
.para-quem-section {
    background-color: var(--bg-primary);
}

.para-quem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.para-quem-item {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.para-quem-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.check {
    font-size: 24px;
    flex-shrink: 0;
}

.para-quem-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Preço e Prazo */
.preco-prazo-section {
    background: linear-gradient(135deg, var(--primary-color), #0f766e);
    padding: 80px 0;
}

.preco-prazo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.preco-card, .prazo-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.preco-card h3, .prazo-card h3 {
    font-size: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.preco-valor, .prazo-valor {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.preco-card p, .prazo-card p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Ajuda Section */
.ajuda-section {
    background-color: var(--bg-secondary);
}

.ajuda-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.ajuda-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.ajuda-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.ajuda-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 1.8;
}

.ajuda-list {
    list-style: none;
    margin: 2rem 0;
}

.ajuda-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
}

.ajuda-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}

/* Segurança */
.seguranca-section {
    background-color: var(--bg-primary);
}

.seguranca-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.seguranca-item {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.seguranca-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.seguranca-item .icon {
    font-size: 48px;
    margin-bottom: 1rem;
}

.seguranca-item h3 {
    font-size: 20px;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.seguranca-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-secondary);
}

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

.faq-item {
    background-color: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 16px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-primary);
    border-radius: 15px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    width: 100%;
    margin: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-secondary);
}

.modal-close:hover {
    background-color: var(--bg-tertiary);
    transform: scale(1.1);
}

/* Contato Section */
.contato-section {
    background-color: var(--bg-primary);
}

.contato-simple {
    text-align: center;
}

.contato-simple p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 2rem;
}

.contato-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contato-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.contato-item svg {
    width: 50px;
    height: 50px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.contato-item:hover svg {
    transform: scale(1.2) translateY(-5px);
    filter: drop-shadow(0 5px 15px rgba(251, 191, 36, 0.3));
}

.contato-item span {
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.contato-item:hover span {
    color: var(--accent-color);
    font-weight: 600;
}

.contato-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contato-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contato-card {
    background-color: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contato-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow);
}

.contato-icon {
    font-size: 48px;
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.contato-card h3 {
    font-size: 20px;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contato-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 1.5rem;
}

.contato-card .btn {
    width: 100%;
    text-align: center;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--primary-color), #0f766e);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-final h2 {
    color: white;
    font-size: 44px;
    margin-bottom: 1rem;
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--bg-secondary);
    padding: 60px 0 20px;
    margin-top: 80px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-button {
    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 4px 12px rgba(0, 0, 0, 0.3);
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero .container,
    .servico-content,
    .ajuda-content,
    .preco-prazo-grid,
    .institucional-content,
    .advogado-content {
        grid-template-columns: 1fr;
    }

    /* Foto antes do texto no mobile */
    .hero-content,
    .advogado-content,
    .ajuda-content {
        display: flex;
        flex-direction: column;
    }
    .hero-content .hero-image,
    .advogado-content .advogado-image,
    .ajuda-content .ajuda-image {
        order: -1;
    }
    .hero-image img,
    .advogado-image img,
    .ajuda-image img {
        max-height: 320px;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .especialidades-grid {
        grid-template-columns: 1fr;
    }

    .advogado-text h3 {
        font-size: 28px;
    }

    .headline {
        font-size: 32px;
    }

    section h2 {
        font-size: 28px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .resultado-grid,
    .seguranca-grid {
        grid-template-columns: 1fr;
    }

    .preco-prazo-grid {
        grid-template-columns: 1fr;
    }

    .servico-text,
    .ajuda-text {
        text-align: center;
    }

    .ajuda-text h2 {
        text-align: center;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .headline {
        font-size: 24px;
    }

    section h2 {
        font-size: 22px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .preco-valor, .prazo-valor {
        font-size: 36px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .consulta-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .institucional-text h3 {
        font-size: 24px;
    }

    .institucional-text h4 {
        font-size: 16px;
    }

    .contato-channels {
        grid-template-columns: 1fr;
    }

    .contato-icon {
        font-size: 40px;
        width: 70px;
        height: 70px;
    }

    .social-links {
        justify-content: center;
    }

    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}
