/* Importar fontes do Google */
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-dark: #1f3044;
    --primary-gold: #bc871e;
    --white: #ffffff;
    --light-bg: #f4f5ef;
    --text-dark: #1f3044;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--light-bg);
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER MELHORADO
   ============================================ */

.main-header {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 0;
    box-shadow: 0 4px 20px rgba(31, 48, 68, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

/* Logo à esquerda */
.navbar-brand {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
    line-height: 1;
}

.logo-text {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo-image {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* Menu à direita */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Ações do navbar (Login + Cadastro) */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-cadastro {
    background: linear-gradient(135deg, var(--primary-gold), #d49a23);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(188, 135, 30, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.btn-cadastro:hover {
    background: linear-gradient(135deg, #d49a23, var(--primary-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 135, 30, 0.4);
}

/* Menu Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background-color: var(--primary-gold);
}

/* Responsividade do Header */
@media (max-width: 992px) {
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--primary-dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .navbar-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
    }

    .nav-link::after {
        display: none;
    }

    .navbar-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-login,
    .btn-cadastro {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Overlay quando menu aberto */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1rem;
    }

    .logo-icon {
        font-size: 1.5rem;
    }

    .navbar {
        padding: 0.8rem 0;
    }
}

.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a4158 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(188, 135, 30, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(188, 135, 30, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero com Imagem de Fundo */
.hero-with-image {
    background-image:
        linear-gradient(to right, rgba(31, 48, 68, 0.95) 0%, rgba(31, 48, 68, 0.85) 50%, rgba(31, 48, 68, 0.3) 100%),
        url('../images/bg-hero-advogado-trabalhista.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 8rem 0;
}

.hero-with-image::before {
    display: none;
}

.hero-with-image .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-left {
    max-width: 700px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.hero-content-left h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content-left p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-content-left .search-box {
    margin: 0 auto;
    max-width: 100%;
}

.search-box {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    display: flex;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: visible;
}

/* Search box na hero centralizado */
.hero-content-left .search-box {
    margin: 0 auto;
    max-width: 600px;
}

.search-box input {
    flex: 1;
    padding: 1.3rem 1.5rem;
    font-size: 1.05rem;
    border: none;
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
}

.search-box input::placeholder {
    color: #999;
}

.search-box button {
    padding: 1.3rem 2.5rem;
    background-color: var(--primary-gold);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-box button:hover {
    background-color: #d49a23;
}

.search-box button::before {
    content: "🔍";
    font-size: 1.2rem;
}

section {
    padding: 5rem 0;
}

h2 {
    font-family: 'Unbounded', sans-serif;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--primary-dark);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), #d49a23);
    border-radius: 2px;
}

.cidades-grid,
.advogados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.cidade-card,
.advogado-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(31, 48, 68, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(31, 48, 68, 0.05);
    position: relative;
    overflow: hidden;
}

.cidade-card::before,
.advogado-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), #d49a23);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cidade-card:hover::before,
.advogado-card:hover::before {
    transform: scaleX(1);
}

.cidade-card:hover,
.advogado-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(31, 48, 68, 0.15);
}

.cidade-card h3,
.advogado-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.cidade-card p,
.advogado-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--primary-gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(188, 135, 30, 0.25);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn:hover {
    background-color: #d49a23;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 135, 30, 0.35);
}

.btn-secondary {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(31, 48, 68, 0.25);
}

.btn-secondary:hover {
    background-color: #2a4158;
    box-shadow: 0 6px 20px rgba(31, 48, 68, 0.35);
}

.passos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.passo {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(31, 48, 68, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.passo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(31, 48, 68, 0.12);
}

.icone {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold), #d49a23);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 8px 20px rgba(188, 135, 30, 0.3);
}

.passo h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.passo p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-advogado {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a4158 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-advogado::before {
    content: '⚖️';
    position: absolute;
    font-size: 20rem;
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-advogado h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-advogado h2::after {
    background: linear-gradient(90deg, var(--primary-gold), #d49a23);
}

.cta-advogado p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1.2rem 3.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 12px;
}

footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Unbounded', sans-serif;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.btn-footer {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--primary-gold);
    color: var(--dark-blue) !important;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.btn-footer:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Estilos adicionais */
.login-page,
.cadastro-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.login-box,
.form-cadastro {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(31, 48, 68, 0.12);
    max-width: 500px;
    width: 100%;
    border-top: 5px solid var(--primary-gold);
}

.login-box h1,
.cadastro-page h1 {
    font-family: 'Unbounded', sans-serif;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.form-cadastro {
    max-width: 850px;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(31, 48, 68, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background-color: var(--light-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(188, 135, 30, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cadastro-link {
    text-align: center;
    margin-top: 1rem;
}

.perfil-advogado {
    padding: 3rem 0;
}

.perfil-header {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(31, 48, 68, 0.1);
    border-left: 5px solid var(--primary-gold);
}

.foto-perfil {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--light-bg);
    box-shadow: 0 8px 25px rgba(31, 48, 68, 0.15);
}

.perfil-info {
    flex: 1;
}

.perfil-info h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.perfil-info .localizacao,
.perfil-info .oab {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.badge-premium {
    background: linear-gradient(135deg, var(--primary-gold), #d49a23);
    color: var(--white);
    padding: 0.6rem 1.3rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin: 0.5rem 0;
    box-shadow: 0 4px 15px rgba(188, 135, 30, 0.3);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.perfil-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(31, 48, 68, 0.08);
    border-left: 4px solid var(--primary-gold);
}

.perfil-section h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    text-align: left;
}

.perfil-section h2::after {
    display: none;
}

.contatos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.btn-contato {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 1.5rem;
    background-color: var(--primary-gold);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(188, 135, 30, 0.25);
}

.btn-contato:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(188, 135, 30, 0.35);
}

.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.telefone {
    background: linear-gradient(135deg, var(--primary-dark), #2a4158);
    box-shadow: 0 4px 15px rgba(31, 48, 68, 0.25);
}

.telefone:hover {
    box-shadow: 0 6px 20px rgba(31, 48, 68, 0.35);
}

.advogado-card.destaque {
    border: 2px solid var(--primary-gold);
    position: relative;
    background: linear-gradient(to bottom, var(--white) 0%, #fffef8 100%);
}

.advogado-card.destaque::after {
    content: '⭐ DESTAQUE';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-gold), #d49a23);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(188, 135, 30, 0.3);
}

.advogado-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin: -2rem -2rem 1rem -2rem;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.plano-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(31, 48, 68, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 48, 68, 0.15);
}

.plano-card h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.plano-card.destaque {
    border: 3px solid var(--primary-gold);
    transform: scale(1.05);
    background: linear-gradient(to bottom, var(--white) 0%, #fffef8 100%);
}

.plano-card.destaque:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge-popular {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-gold), #d49a23);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(188, 135, 30, 0.4);
    letter-spacing: 0.5px;
}

.preco {
    margin: 2rem 0;
    padding: 1.5rem 0;
    background: var(--light-bg);
    border-radius: 12px;
}

.valor {
    font-family: 'Unbounded', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -2px;
}

.periodo {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.recursos {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    padding: 0;
}

.recursos li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(31, 48, 68, 0.08);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.recursos li:last-child {
    border-bottom: none;
}

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 5px 5px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.autocomplete-item {
    padding: 1rem;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.autocomplete-item:hover {
    background-color: #f5f5f5;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .perfil-header {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
}


/* Seções com backgrounds alternados */
.cidades {
    background: var(--white);
}

.advogados-destaque {
    background: var(--light-bg);
}

.como-funciona {
    background: var(--white);
}

/* Ícones jurídicos personalizados */
.juridico-icon {
    display: inline-block;
    margin-right: 0.5rem;
}

/* Animações suaves */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Melhorias de responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .perfil-header {
        flex-direction: column;
        text-align: center;
    }

    .foto-perfil {
        margin: 0 auto;
    }

    .search-box {
        flex-direction: column;
    }

    .search-box button {
        border-radius: 0 0 12px 12px;
    }

    .search-box input {
        border-radius: 12px 12px 0 0;
    }
}

/* Efeitos de hover melhorados */
.btn,
.btn-contato,
.btn-cadastro {
    position: relative;
    overflow: hidden;
}

.btn::before,
.btn-contato::before,
.btn-cadastro::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before,
.btn-contato:hover::before,
.btn-cadastro:hover::before {
    width: 300px;
    height: 300px;
}

/* Estilo para badges de status */
.badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.badge-ativo {
    background-color: #d4edda;
    color: #155724;
}

.badge-inativo {
    background-color: #f8d7da;
    color: #721c24;
}

.badge-trial {
    background: linear-gradient(135deg, var(--primary-gold), #d49a23);
    color: var(--white);
}

.badge-pendente {
    background-color: #fff3cd;
    color: #856404;
}

/* Melhorias no autocomplete */
#autocomplete-results {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(31, 48, 68, 0.2);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.autocomplete-item {
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(31, 48, 68, 0.05);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1f3044;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.autocomplete-item:hover {
    background-color: #f8f9fa;
    padding-left: 2rem;
}

.autocomplete-item:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.autocomplete-city-name {
    color: #1f3044;
    font-size: 1rem;
}

.autocomplete-city-name strong {
    font-weight: 600;
}

.autocomplete-city-info {
    color: #6c757d;
    font-size: 0.875rem;
    white-space: nowrap;
}

.autocomplete-no-results {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: default;
    background: #fff8e1;
    border: 2px solid #ffc107;
}

.autocomplete-no-results:hover {
    background: #fff8e1;
    padding-left: 1.5rem;
}

.no-results-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.no-results-text strong {
    display: block;
    color: #1f3044;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.no-results-text p {
    margin: 0;
    color: #6c757d;
    font-size: 0.875rem;
}

.autocomplete-error {
    background: #ffebee;
    border: 2px solid #f44336;
    cursor: default;
}

.autocomplete-error:hover {
    background: #ffebee;
    padding-left: 1.5rem;
}

/* Estilos para avaliações */
.avaliacoes {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.estrelas {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Cards com efeito glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(31, 48, 68, 0.1);
}

/* Gradientes decorativos */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Separadores elegantes */
.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), #d49a23);
    margin: 2rem auto;
    border-radius: 2px;
}


/* ============================================
   LAYOUT MELHORADO - INSPIRADO NO DESIGN
   ============================================ */

/* Hero Pequeno para páginas internas */
.page-hero {
    background: linear-gradient(135deg, #1f3044 0%, #2a4158 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(188, 135, 30, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(188, 135, 30, 0.08) 0%, transparent 50%);
}

.hero-content-small {
    position: relative;
    z-index: 1;
}

.hero-content-small h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-content-small p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards de Cidade Modernos */
.cidades-lista {
    padding: 5rem 0;
    background: var(--light-bg);
}

.cidade-card-link {
    text-decoration: none;
    display: block;
}

.cidade-card-modern {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.cidade-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), #d49a23);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cidade-card-modern:hover::before {
    transform: scaleX(1);
}

.cidade-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(31, 48, 68, 0.15);
    border-color: var(--primary-gold);
}

.cidade-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), #d49a23);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(188, 135, 30, 0.3);
}

.cidade-card-modern h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cidade-card-modern .estado {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.cidade-stats {
    padding: 1rem 0;
    border-top: 1px solid rgba(31, 48, 68, 0.1);
    border-bottom: 1px solid rgba(31, 48, 68, 0.1);
    margin: 1.5rem 0;
}

.advogados-count {
    color: var(--text-light);
    font-size: 0.95rem;
}

.advogados-count strong {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.3rem;
}

.ver-mais {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.cidade-card-modern:hover .ver-mais {
    gap: 1rem;
}

/* Seção de Estatísticas */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a4158 100%);
    padding: 5rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '⚖️';
    position: absolute;
    font-size: 25rem;
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.stats-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-family: 'Unbounded', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.stat-item .label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Seção de Depoimentos */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    border-left: 4px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(31, 48, 68, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    color: var(--primary-gold);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Seção CTA Melhorada */
.cta-section-enhanced {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a4158 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(188, 135, 30, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(188, 135, 30, 0.1) 0%, transparent 50%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content h2::after {
    background: linear-gradient(90deg, var(--primary-gold), #d49a23);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Badges e Tags */
.tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--light-bg);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0.3rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* Seção de Áreas de Atuação */
.areas-atuacao-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.area-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.area-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(31, 48, 68, 0.1);
}

.area-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.area-card h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.area-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Melhorias no Grid de Advogados */
.advogados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.advogado-card-enhanced {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(31, 48, 68, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.advogado-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(31, 48, 68, 0.15);
    border-color: var(--primary-gold);
}

.advogado-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--light-bg), var(--white));
}

.advogado-foto-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.advogado-foto-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 8px 25px rgba(31, 48, 68, 0.15);
}

.advogado-body {
    padding: 0 2rem 2rem;
}

.advogado-body h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.advogado-body .oab {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.advogado-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.advogado-footer {
    padding: 1.5rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

/* Alinhamento à esquerda apenas para cards do site público */
.advogados-lista .advogado-card-enhanced .advogado-body h3,
.advogados-lista .advogado-card-enhanced .advogado-body .oab {
    text-align: left;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1.5rem 0;
    background: var(--light-bg);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: var(--primary-gold);
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    color: var(--text-light);
    margin-left: 0.5rem;
}

/* Filtros Avançados */
.filters-advanced {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(31, 48, 68, 0.08);
    margin-bottom: 3rem;
}

.filters-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid rgba(31, 48, 68, 0.1);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.filter-group select:focus,
.filter-group input:focus {
    border-color: var(--primary-gold);
    outline: none;
}

/* Paginação */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pagination a:hover {
    background: var(--primary-gold);
    color: var(--white);
}

.pagination .active {
    background: var(--primary-gold);
    color: var(--white);
}


/* Placeholder de Foto */
.foto-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), #d49a23);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(188, 135, 30, 0.3);
}

.advogado-foto-wrapper .foto-placeholder {
    font-size: 2rem;
}

/* Badges do Perfil */
.perfil-badges {
    display: flex;
    gap: 0.8rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

/* Melhorias no Hero */
.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Seção de Cidades com Background */
.cidades {
    background: var(--white);
    position: relative;
}

.cidades::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--light-bg), transparent);
    pointer-events: none;
}

/* Cards com Imagem de Fundo */
.card-with-bg {
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(31, 48, 68, 0.7), rgba(31, 48, 68, 0.9));
}

.card-with-bg * {
    position: relative;
    z-index: 1;
    color: var(--white);
}

/* Seção de Vantagens */
.vantagens-section {
    padding: 5rem 0;
    background: var(--white);
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.vantagem-item {
    text-align: center;
    padding: 2rem;
}

.vantagem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold), #d49a23);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 8px 20px rgba(188, 135, 30, 0.3);
}

.vantagem-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.vantagem-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Seção de Números/Conquistas */
.conquistas-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.conquistas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.conquista-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(31, 48, 68, 0.08);
    transition: all 0.3s ease;
}

.conquista-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(31, 48, 68, 0.12);
}

.conquista-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.conquista-number {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.conquista-label {
    color: var(--text-dark);
    font-weight: 600;
}

/* Lista de Benefícios */
.beneficios-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.beneficios-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    border-bottom: 1px solid rgba(31, 48, 68, 0.08);
}

.beneficios-list li:last-child {
    border-bottom: none;
}

.beneficios-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 24px;
    height: 24px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Seção de Processo/Timeline */
.processo-section {
    padding: 5rem 0;
    background: var(--white);
}

.processo-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.processo-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-gold), #d49a23);
}

.processo-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 3rem;
}

.processo-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), #d49a23);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(188, 135, 30, 0.3);
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Botão com Ícone */
.btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-with-icon::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-with-icon:hover::after {
    transform: translateX(5px);
}

/* Seção de FAQ */
.faq-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(31, 48, 68, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-bg);
    color: var(--primary-gold);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Melhorias Responsivas */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-with-image {
        min-height: 500px;
        padding: 6rem 0;
        background-position: center;
    }

    .hero-content-left h1 {
        font-size: 2.8rem;
    }

    .hero-content-left p {
        font-size: 1.2rem;
    }

    .stats-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }

    .processo-timeline::before {
        left: 30px;
    }

    .processo-step {
        padding-left: 80px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-with-image {
        min-height: 450px;
        padding: 4rem 0;
        background-image:
            linear-gradient(to bottom, rgba(31, 48, 68, 0.92) 0%, rgba(31, 48, 68, 0.88) 100%),
            url('../images/bg-hero-advogado-trabalhista.webp');
        background-position: center;
    }

    .hero-content-left {
        max-width: 100%;
        padding-left: 0;
    }

    .hero-content-left h1 {
        font-size: 2.2rem;
    }

    .hero-content-left p {
        font-size: 1.1rem;
    }

    .hero-content-left .search-box {
        max-width: 100%;
    }

    .page-hero h1,
    .hero-content-small h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .stats-grid-home {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contato-info {
        order: 2;
    }

    .contato-form-wrapper {
        order: 1;
    }

    .form-contato {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .filters-row {
        grid-template-columns: 1fr;
    }

    .advogados-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-with-image {
        min-height: 400px;
        padding: 3rem 0;
    }

    .hero-content-left h1 {
        font-size: 1.8rem;
    }

    .hero-content-left p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-content-left .search-box {
        flex-direction: column;
    }

    .hero-content-left .search-box button {
        width: 100%;
        justify-content: center;
    }
}


/* Melhorias na Página de Planos */
.planos-page {
    padding: 5rem 0;
    background: var(--light-bg);
}

.plano-descricao {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 1rem 0 2rem;
    min-height: 40px;
}

.btn-plano {
    width: 100%;
    margin-top: 2rem;
    padding: 1.2rem;
    font-size: 1.05rem;
}

.trial-info {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.garantia-box {
    max-width: 600px;
    margin: 4rem auto 0;
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(31, 48, 68, 0.1);
}

.garantia-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.garantia-box h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.garantia-box p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Melhorias no Cadastro */
.cadastro-page {
    background: var(--light-bg);
}

.form-cadastro {
    box-shadow: 0 10px 40px rgba(31, 48, 68, 0.12);
}

.cadastro-page .subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Melhorias no Login */
.login-page {
    background: var(--light-bg);
}

.cadastro-link {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(31, 48, 68, 0.1);
}

.cadastro-link a {
    color: var(--primary-gold);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cadastro-link a:hover {
    color: #d49a23;
}

/* Seção Sobre */
.sobre-page {
    padding: 5rem 0;
}

.sobre-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(31, 48, 68, 0.1);
    line-height: 1.8;
}

.sobre-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Página de Contato */
.contato-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contato-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    align-items: start;
}

.contato-form-wrapper h2,
.contato-info h2 {
    margin: 0 0 1rem 0;
    color: #1f3044;
    font-size: 1.75rem;
    font-family: 'Unbounded', sans-serif;
}

.contato-intro {
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-contato {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(31, 48, 68, 0.08);
}

.form-contato .form-group {
    margin-bottom: 1.5rem;
}

.form-contato label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1f3044;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-contato input,
.form-contato textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-contato input:focus,
.form-contato textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(188, 135, 30, 0.1);
}

.form-contato textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.form-info {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6c757d;
    text-align: center;
}

.info-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateX(5px);
    border-color: var(--primary-gold);
    box-shadow: 0 4px 12px rgba(188, 135, 30, 0.15);
}

.info-card-destaque {
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
    border: 2px solid var(--primary-gold);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
}

.info-card-destaque .info-icon {
    background: var(--primary-gold);
}

.info-content h3 {
    margin: 0 0 0.5rem 0;
    color: #1f3044;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-content p {
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
}

.info-content a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-gold);
}

.success-message {
    text-align: center;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(31, 48, 68, 0.08);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
}

.success-message h3 {
    color: #1f3044;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.success-message p {
    color: #6c757d;
    margin-bottom: 2rem;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert ul {
    margin: 0.5rem 0 0 1.5rem;
    padding: 0;
}

.alert li {
    margin-bottom: 0.25rem;
}

/* Página Institucional */
.pagina-institucional {
    padding: 5rem 0;
    background: var(--light-bg);
}

.pagina-institucional .container {
    max-width: 900px;
}

.pagina-institucional h1 {
    text-align: center;
    margin-bottom: 3rem;
}

.conteudo {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(31, 48, 68, 0.1);
    line-height: 1.8;
}

.conteudo h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.conteudo h2::after {
    display: none;
}

.conteudo h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.conteudo p {
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.conteudo ul,
.conteudo ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.conteudo li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

/* Melhorias no Perfil do Advogado */
.perfil-advogado {
    padding: 3rem 0 5rem;
    background: var(--light-bg);
}

.perfil-header {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(31, 48, 68, 0.1);
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.perfil-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.perfil-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(31, 48, 68, 0.08);
    margin-bottom: 2rem;
}

.perfil-section h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.perfil-section h2::after {
    display: none;
}

.contatos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.endereco {
    grid-column: 1 / -1;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 500;
}

/* Loading State */
.loading {
    text-align: center;
    padding: 4rem 0;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-bg);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
}

.empty-state-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(188, 135, 30, 0.3);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #d49a23;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(188, 135, 30, 0.4);
}

/* Animações de Entrada */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Melhorias de Acessibilidade */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Visible */
*:focus-visible {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {

    header,
    footer,
    .btn,
    .search-box,
    .filters-advanced {
        display: none;
    }

    body {
        background: white;
    }

    .perfil-header,
    .perfil-section {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}


/* ============================================
   ANIMAÇÃO DO MENU HAMBURGUER
   ============================================ */

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Prevenir scroll quando menu aberto */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   MELHORIAS NO HEADER
   ============================================ */

/* Efeito de glassmorphism no header ao rolar */
.main-header.scrolled {
    background-color: rgba(31, 48, 68, 0.95);
    backdrop-filter: blur(10px);
}

/* Separador visual entre logo e menu */
.navbar-brand::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    display: none;
}

@media (min-width: 993px) {
    .navbar-brand {
        position: relative;
        padding-right: 2rem;
    }

    .navbar-brand::after {
        display: block;
    }
}

/* Hover effect no logo */
.logo-icon {
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.1);
}

/* Badge "Novo" ou "Beta" (opcional) */
.nav-link .badge-new {
    position: absolute;
    top: -8px;
    right: -20px;
    background: var(--primary-gold);
    color: var(--white);
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 700;
}

/* Dropdown menu (para futuras expansões) */
.nav-links li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(31, 48, 68, 0.15);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-gold);
    padding-left: 2rem;
}

/* Indicador de página ativa */
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link.active::after {
    width: 100%;
}

/* Animação de entrada do header */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.main-header {
    animation: slideDown 0.5s ease-out;
}

/* Responsividade adicional */
@media (max-width: 480px) {
    .logo-text {
        font-size: 0.9rem;
    }

    .navbar-menu {
        width: 100%;
        right: -100%;
    }

    .navbar-menu.active {
        right: 0;
    }
}

/* Print styles para o header */
@media print {
    .main-header {
        position: static;
        box-shadow: none;
    }

    .mobile-menu-toggle,
    .navbar-actions {
        display: none;
    }
}

/* ============================================
   PERFIL DO ADVOGADO - LAYOUT MELHORADO
   ============================================ */

/* Hero do Perfil */
.perfil-hero {
    background: linear-gradient(135deg, #1f3044 0%, #2a4158 100%);
    padding: 3rem 0;
    color: white;
}

.perfil-hero-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
}

.perfil-foto-destaque {
    position: relative;
}

.foto-principal {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #bc871e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.foto-placeholder-grande {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #bc871e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: bold;
    color: white;
    border: 6px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.selo-premium {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
}

.selo-premium span {
    font-size: 1.5rem;
}

.selo-premium p {
    margin: 0;
    font-size: 0.7rem;
    font-weight: bold;
    color: #1f3044;
}

.perfil-info-principal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.perfil-titulo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.perfil-titulo h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.badge-verificado {
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-premium-perfil {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1f3044;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    border: 2px solid #fff;
}

.badge-premium-perfil svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.perfil-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.meta-item .icon {
    font-size: 2rem;
}

.meta-item small {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.meta-item strong {
    display: block;
    font-size: 1.1rem;
}

.perfil-acoes-rapidas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-acao {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    flex: 1;
    min-width: 200px;
}

.btn-acao.whatsapp {
    background: #25D366;
    color: white;
}

.btn-acao.whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-acao.telefone {
    background: white;
    color: #1f3044;
}

.btn-acao.telefone:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-acao .icon {
    font-size: 2rem;
}

.btn-acao strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.btn-acao small {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Conteúdo do Perfil */
.perfil-conteudo {
    padding: 3rem 0;
    background: #f8f9fa;
}

.perfil-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

.perfil-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
}

.perfil-card .card-header {
    background: linear-gradient(135deg, #1f3044 0%, #2a4158 100%);
    padding: 1.5rem;
    border-bottom: 3px solid #bc871e;
}

.perfil-card .card-header h2,
.perfil-card .card-header h3 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.perfil-card .card-header h3 {
    font-size: 1.25rem;
}

.perfil-card .card-header .icon {
    font-size: 1.75rem;
}

.perfil-card .card-body {
    padding: 2rem;
}

.texto-formatado {
    line-height: 1.8;
    color: #495057;
    font-size: 1.05rem;
    white-space: pre-line;
}

/* Áreas de Atuação */
.areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.area-tag {
    background: linear-gradient(135deg, #bc871e 0%, #d4a027 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 6px rgba(188, 135, 30, 0.3);
    transition: all 0.3s ease;
}

.area-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188, 135, 30, 0.4);
}

/* Sidebar - Card de Contato */
.card-contato .card-body {
    padding: 1rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contato-item:last-child {
    margin-bottom: 0;
}

.whatsapp-item {
    background: #e8f5e9;
    border: 2px solid #25D366;
}

.whatsapp-item:hover {
    background: #25D366;
    color: white;
    transform: translateX(5px);
}

.telefone-item {
    background: #e3f2fd;
    border: 2px solid #2196F3;
}

.telefone-item:hover {
    background: #2196F3;
    color: white;
    transform: translateX(5px);
}

.endereco-item {
    background: #fff3e0;
    border: 2px solid #ff9800;
}

.contato-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contato-info {
    flex: 1;
}

.contato-info strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contato-info span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contato-arrow {
    font-size: 1.5rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.contato-item:hover .contato-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Card de Informações */
.card-info .card-body {
    padding: 1.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.95rem;
}

.info-value {
    font-weight: 600;
    color: #1f3044;
    font-size: 1rem;
}

/* Card CTA */
.card-cta {
    background: linear-gradient(135deg, #bc871e 0%, #d4a027 100%);
    color: white;
}

.card-cta .card-body {
    padding: 2rem;
}

.card-cta h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.card-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.text-center {
    text-align: center;
}

/* Responsividade */
@media (max-width: 1200px) {
    .perfil-layout {
        grid-template-columns: 1fr 350px;
    }
}

@media (max-width: 968px) {
    .perfil-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .perfil-foto-destaque {
        margin: 0 auto;
    }

    .perfil-titulo {
        justify-content: center;
    }

    .perfil-meta {
        justify-content: center;
    }

    .perfil-acoes-rapidas {
        justify-content: center;
    }

    .perfil-layout {
        grid-template-columns: 1fr;
    }

    .perfil-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .perfil-titulo h1 {
        font-size: 2rem;
    }

    .foto-principal,
    .foto-placeholder-grande {
        width: 150px;
        height: 150px;
    }

    .perfil-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-acao {
        min-width: 100%;
    }

    .perfil-card .card-body {
        padding: 1.5rem;
    }
}

/* ============================================
   CARDS DE ADVOGADOS - FOTO HORIZONTAL
   ============================================ */

.advogados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advogado-card-enhanced {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.advogado-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.advogado-card-enhanced.destaque {
    border: 3px solid #bc871e;
    box-shadow: 0 4px 12px rgba(188, 135, 30, 0.3);
}

/* Header do Card - Foto Horizontal */
.advogado-header {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1f3044 0%, #2a4158 100%);
}

.advogado-foto-wrapper {
    width: 100%;
    height: 100%;
}

.advogado-foto-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.foto-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #bc871e 0%, #d4a027 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: bold;
    color: white;
}

.badge-premium {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1f3044;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Body do Card */
.advogado-body {
    padding: 1.5rem;
    flex: 1;
}

.advogado-body h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
    color: #1f3044;
    font-weight: 700;
    text-align: left;
}

.advogado-body .oab {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer do Card */
.advogado-footer {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.advogado-footer .btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    background: #bc871e;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
}

.advogado-footer .btn:hover {
    background: #a67619;
    transform: translateY(-2px);
}

/* Filtros */
.filters-advanced {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.filters-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #1f3044;
    font-size: 0.95rem;
}

.filter-group input,
.filter-group select {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.filter-group input:focus,
.filter-group select:focus {
    border-color: #bc871e;
    outline: none;
    box-shadow: 0 0 0 3px rgba(188, 135, 30, 0.1);
}

/* Alinhamento específico para cards do site público (não painel) */
.advogados-lista .advogado-card-enhanced .advogado-body h3,
.advogados-lista .advogado-card-enhanced .advogado-body .oab,
.advogados-destaque .advogado-card-enhanced .advogado-body h3,
.advogados-destaque .advogado-card-enhanced .advogado-body .oab {
    text-align: left;
}

/* Responsivo */
@media (max-width: 968px) {
    .advogados-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .filters-row {
        grid-template-columns: 1fr;
    }

    .advogado-header {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .advogados-grid {
        grid-template-columns: 1fr;
    }

    .advogado-header {
        height: 200px;
    }
}

/* Ícone de Localização (Map Pin) */
.cidade-icon svg {
    display: block;
    margin: 0 auto;
}

.meta-item .icon svg {
    display: block;
}

/* Ajustes para ícones SVG em geral */
svg {
    vertical-align: middle;
}


/* ============================================
   CONTEÚDO DETALHADO DA CIDADE (DETAILS DISCRETO)
   ============================================ */

.cidade-info-extra {
    padding: 0;
    background: transparent;
}


.advogados-lista {
    padding: 30px 0 100px 0;
    background: transparent;
}

.conteudo-expandivel-discreto {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.conteudo-expandivel-discreto summary {
    padding: 0.875rem 1.25rem;
    background: rgba(212, 165, 116, 0.1);
    color: #1f3044;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    user-select: none;
    font-size: 0.95rem;
}

.conteudo-expandivel-discreto summary::-webkit-details-marker {
    display: none;
}

.conteudo-expandivel-discreto summary:hover {
    background: rgba(212, 165, 116, 0.2);
}

.conteudo-expandivel-discreto summary span:first-child {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.conteudo-expandivel-discreto .toggle-icon {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    color: #d4a574;
}

.conteudo-expandivel-discreto[open] .toggle-icon {
    transform: rotate(180deg);
}

.conteudo-expandivel-discreto .conteudo-html {
    padding: 1.5rem 1.25rem;
    line-height: 1.8;
    color: #1f3044;
    background: #ffffff;
    animation: slideDown 0.3s ease;
}

.conteudo-html {
    padding: 2rem;
    line-height: 1.8;
    color: #1f3044;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.conteudo-html h2,
.conteudo-html h3,
.conteudo-html h4 {
    margin: 1.5rem 0 1rem 0;
    color: #1f3044;
    font-weight: 600;
}

.conteudo-html h2 {
    font-size: 1.75rem;
    border-bottom: 2px solid #d4a574;
    padding-bottom: 0.5rem;
}

.conteudo-html h3 {
    font-size: 1.5rem;
}

.conteudo-html h4 {
    font-size: 1.25rem;
}

.conteudo-html p {
    margin: 1rem 0;
    line-height: 1.8;
}

.conteudo-html ul,
.conteudo-html ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.conteudo-html li {
    margin: 0.5rem 0;
}

.conteudo-html a {
    color: #d4a574;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.conteudo-html a:hover {
    border-bottom-color: #d4a574;
}

.conteudo-html strong,
.conteudo-html b {
    font-weight: 600;
    color: #1f3044;
}

.conteudo-html em,
.conteudo-html i {
    font-style: italic;
}

.conteudo-html blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #d4a574;
    font-style: italic;
    color: #6c757d;
}

.conteudo-html pre {
    background: #1f3044;
    color: #ffffff;
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.conteudo-html code {
    background: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #d4a574;
}

.conteudo-html pre code {
    background: transparent;
    padding: 0;
    color: #ffffff;
}

/* Responsividade */
@media (max-width: 768px) {
    .conteudo-expandivel summary {
        padding: 1.25rem 1.5rem;
    }

    .conteudo-expandivel summary h2 {
        font-size: 1.25rem;
    }

    .conteudo-html {
        padding: 1.5rem;
    }

    .conteudo-html h2 {
        font-size: 1.5rem;
    }

    .conteudo-html h3 {
        font-size: 1.25rem;
    }
}


/* ============================================
   NOVA PÁGINA DE PLANOS - LAYOUT DE VENDAS
   ============================================ */

.planos-hero {
    background: linear-gradient(135deg, #1f3044 0%, #2a4158 100%);
    padding: 6rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.planos-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(188, 135, 30, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(188, 135, 30, 0.1) 0%, transparent 50%);
}

.hero-content-center {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content-center h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content-center h1 .highlight {
    color: var(--primary-gold);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-hero {
    background: var(--primary-gold);
    color: var(--dark-blue);
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(188, 135, 30, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(188, 135, 30, 0.4);
    background: #ffd700;
}

.hero-note {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Seção Problema */
.problema-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.problema-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.problema-content h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    color: #1f3044;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    color: #2a4158;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.problemas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.problema-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.problema-card:hover {
    transform: translateY(-5px);
}

.problema-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problema-card h3 {
    color: #1f3044;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.problema-card p {
    color: #6c757d;
    margin: 0;
}

.destaque {
    font-size: 1.3rem;
    color: #d32f2f;
    font-weight: 600;
    margin-top: 2rem;
}

/* Seção Solução */
.solucao-section {
    padding: 5rem 0;
    background: white;
}

.solucao-section h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    color: #1f3044;
    text-align: center;
    margin-bottom: 1rem;
}

.solucao-section .lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.beneficio-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
}

.beneficio-numero {
    position: absolute;
    top: -20px;
    left: 2.5rem;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(188, 135, 30, 0.3);
}

.beneficio-card h3 {
    color: #1f3044;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.beneficio-card p {
    color: #6c757d;
    line-height: 1.7;
}

/* Plano Premium */
.plano-premium-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.plano-premium-section h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    color: #1f3044;
    text-align: center;
    margin-bottom: 1rem;
}

.plano-premium-section .lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.plano-premium-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(31, 48, 68, 0.15);
    text-align: center;
    position: relative;
    border: 3px solid var(--primary-gold);
}

.plano-badge {
    background: var(--primary-gold);
    color: var(--dark-blue);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.plano-premium-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    color: #1f3044;
    margin-bottom: 0.5rem;
}

.plano-desc {
    color: #6c757d;
    margin-bottom: 2rem;
}

.plano-preco {
    margin: 2rem 0;
}

.preco-valor {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1f3044;
    font-family: 'Unbounded', sans-serif;
}

.preco-periodo {
    font-size: 1.2rem;
    color: #6c757d;
}

.plano-recursos {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
    text-align: left;
}

.plano-recursos li {
    padding: 0.875rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #2a4158;
    font-size: 1.05rem;
}

.plano-recursos li:last-child {
    border-bottom: none;
}

.plano-recursos li strong {
    color: #1f3044;
}

.btn-premium {
    background: var(--primary-gold);
    color: var(--dark-blue);
    width: 100%;
    margin-top: 1.5rem;
}

.plano-note {
    margin-top: 1rem;
    color: #6c757d;
    font-size: 0.95rem;
}

/* Garantia */
.garantia-section {
    padding: 5rem 0;
    background: white;
}

.garantia-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid #2196f3;
}

.garantia-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.garantia-box h2 {
    font-family: 'Unbounded', sans-serif;
    color: #1f3044;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.garantia-box p {
    font-size: 1.15rem;
    color: #2a4158;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* CTA Final */
.cta-final-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1f3044 0%, #2a4158 100%);
    text-align: center;
}

.cta-final-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-final-content h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-final-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.cta-destaque {
    font-size: 1.3rem !important;
    color: var(--primary-gold) !important;
    font-weight: 600;
    margin: 2rem 0 !important;
}

.cta-note {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content-center h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .problemas-grid,
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plano-premium-card {
        padding: 2rem 1.5rem;
    }

    .preco-valor {
        font-size: 2.5rem;
    }

    .cta-final-content h2 {
        font-size: 1.8rem;
    }
}


/* ============================================
   ADVOGADOS GEOLOCALIZADOS
   ============================================ */

.loading-advogados {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.advogado-card-geo {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.advogado-card-geo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.advogado-foto {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

.advogado-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advogado-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.advogado-info h3 {
    color: #1f3044;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.advogado-oab {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.advogado-cidade {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.btn-perfil {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.no-advogados,
.erro-advogados {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
}

.no-advogados p,
.erro-advogados p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}

@media (max-width: 768px) {
    .advogado-foto {
        height: 200px;
    }
}

/* ============================================
   PÁGINA DE PLANOS - TRIAL DESTACADO
   ============================================ */

.trial-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.plano-premium-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.plano-premium-section h2 {
    text-align: center;
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f3044;
    margin-bottom: 1rem;
}

.plano-premium-section .lead {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.plano-premium-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(31, 48, 68, 0.15);
    border: 3px solid #bc871e;
    position: relative;
}

.plano-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.plano-premium-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f3044;
    margin-bottom: 0.5rem;
}

.plano-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.trial-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.trial-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trial-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.trial-highlight strong {
    display: block;
    color: #1f3044;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.trial-highlight p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.plano-preco {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1f3044, #2a4158);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.preco-trial {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.3);
}

.preco-trial-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.preco-trial-valor {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #28a745;
    text-shadow: 0 2px 10px rgba(40, 167, 69, 0.5);
}

.preco-depois {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.preco-depois-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.preco-valor {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #bc871e;
}

.preco-periodo {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

.recursos-destaque {
    margin: 2rem 0 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-radius: 8px;
    border-left: 4px solid #bc871e;
}

.recursos-destaque h4 {
    margin: 0;
    color: #1f3044;
    font-size: 1.2rem;
    font-weight: 700;
}

.plano-recursos {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.plano-recursos li {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.plano-recursos li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.plano-recursos li strong {
    color: #1f3044;
    font-weight: 700;
}

.btn-premium {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #bc871e, #d49a23);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(188, 135, 30, 0.4);
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(188, 135, 30, 0.5);
}

.plano-note {
    text-align: center;
    margin-top: 1rem;
    color: #666;
    font-size: 0.95rem;
}

.plano-garantia {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #d4edda;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.plano-garantia p {
    margin: 0;
    color: #155724;
    font-size: 0.95rem;
    line-height: 1.6;
}

.plano-garantia strong {
    font-weight: 700;
}

/* Responsivo */
@media (max-width: 768px) {
    .trial-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .plano-premium-card {
        padding: 2rem 1.5rem;
    }

    .plano-premium-section h2 {
        font-size: 2rem;
    }

    .preco-trial-valor {
        font-size: 2.5rem;
    }

    .preco-valor {
        font-size: 2rem;
    }

    .btn-premium {
        font-size: 1.1rem;
        padding: 1.2rem;
    }
}

/* ============================================
   PÁGINA DE CADASTRO - TRIAL DESTACADO
   ============================================ */

.cadastro-page {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 80vh;
}

.cadastro-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cadastro-header h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f3044;
    margin-bottom: 1rem;
}

.trial-badge-cadastro {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.cadastro-header .subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 1rem auto 0;
}

.form-cadastro {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(31, 48, 68, 0.1);
}

.trial-info-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #bc871e;
    margin: 2rem 0;
}

.trial-info-box h3 {
    margin: 0 0 1rem 0;
    color: #1f3044;
    font-size: 1.2rem;
    font-weight: 700;
}

.trial-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.trial-info-box ul li {
    padding: 0.5rem 0;
    color: #1f3044;
    font-size: 1rem;
}

.trial-note {
    margin: 1rem 0 0 0;
    padding-top: 1rem;
    border-top: 2px dashed rgba(31, 48, 68, 0.2);
    color: #666;
    font-size: 0.95rem;
}

.btn-cadastro {
    width: 100%;
    padding: 0.9rem;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #bc871e, #d49a23);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(188, 135, 30, 0.4);
    margin-top: 0rem;
}

.btn-cadastro:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(188, 135, 30, 0.5);
}

.form-footer-note {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.form-footer-note a {
    color: #bc871e;
    text-decoration: none;
    font-weight: 600;
}

.form-footer-note a:hover {
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
    .cadastro-header h1 {
        font-size: 2rem;
    }

    .form-cadastro {
        padding: 2rem 1.5rem;
    }

    .trial-info-box {
        padding: 1.5rem;
    }

    .btn-cadastro {
        font-size: 1.1rem;
        padding: 1.2rem;
    }
}

/* ============================================
   CONTEÚDO EXPANSÍVEL DA CIDADE
   ============================================ */

.cidade-info-extra {
    background: transparent;
    padding: 1rem 0;
    margin: 1rem 0;
}

.conteudo-expandivel-discreto {
    background: transparent;
    width: 100%;
}

.conteudo-toggle {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.conteudo-toggle:hover {
    opacity: 0.8;
}

.conteudo-toggle:focus {
    outline: none;
}

.conteudo-toggle:focus .toggle-icon {
    outline: 2px solid #bc871e;
    outline-offset: 2px;
    border-radius: 4px;
}

.conteudo-toggle .toggle-icon {
    font-size: 1.1rem;
    color: #999;
    transition: all 0.3s ease;
    padding: 0.3rem 0.5rem;
}

.conteudo-toggle:hover .toggle-icon {
    color: #bc871e;
    transform: scale(1.15);
}

.conteudo-html {
    padding: 1.5rem 0 0 0;
    overflow: hidden;
    background: transparent;
}

.conteudo-html h1,
.conteudo-html h2,
.conteudo-html h3 {
    color: #1f3044;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.conteudo-html h1:first-child,
.conteudo-html h2:first-child,
.conteudo-html h3:first-child {
    margin-top: 0;
}

.conteudo-html p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #495057;
}

.conteudo-html ul,
.conteudo-html ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.conteudo-html li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.conteudo-html a {
    color: #bc871e;
    text-decoration: none;
    font-weight: 600;
}

.conteudo-html a:hover {
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
    .conteudo-toggle {
        padding: 0.6rem;
    }

    .conteudo-toggle .toggle-icon {
        font-size: 1.3rem;
    }

    .conteudo-html {
        padding: 1.5rem 0;
    }
}


/* ============================================
   ALINHAMENTO CONTEÚDO EXPANDÍVEL DISCRETO
   ============================================ */

.conteudo-expandivel-discreto {
    text-align: left;
}

.conteudo-expandivel-discreto * {
    text-align: left !important;
}

.conteudo-expandivel-discreto h1,
.conteudo-expandivel-discreto h2,
.conteudo-expandivel-discreto h3,
.conteudo-expandivel-discreto h4,
.conteudo-expandivel-discreto h5,
.conteudo-expandivel-discreto h6 {
    text-align: left;
}

.conteudo-expandivel-discreto p {
    text-align: left;
}

.conteudo-expandivel-discreto ul,
.conteudo-expandivel-discreto ol {
    text-align: left;
}

.conteudo-expandivel-discreto li {
    text-align: left;
}

.conteudo-expandivel-discreto div,
.conteudo-expandivel-discreto section,
.conteudo-expandivel-discreto article {
    text-align: left;
}

/* ============================================
   NOTIFICAÇÕES DE NOVOS ADVOGADOS - LAYOUT MELHORADO
   ============================================ */

.notificacao-box {
    max-width: 700px;
    margin: 3rem auto;
    padding: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(31, 48, 68, 0.12);
    overflow: hidden;
    border: 1px solid rgba(188, 135, 30, 0.2);
}

/* Header com gradiente */
.notificacao-box::before {
    content: '';
    display: block;
    height: 6px;
    background: linear-gradient(90deg, #bc871e 0%, #d4a03a 100%);
}

.notificacao-content {
    padding: 2.5rem;
    text-align: center;
}

.notificacao-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: bell-ring 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(188, 135, 30, 0.3));
}

@keyframes bell-ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    5%,
    15% {
        transform: rotate(-15deg);
    }

    10%,
    20% {
        transform: rotate(15deg);
    }

    25% {
        transform: rotate(0deg);
    }
}

.notificacao-box h3 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.notificacao-box p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.form-notificacao {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: nowrap;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.form-notificacao input[type="email"] {
    flex: 1;
    min-width: 0;
    padding: 1rem 1.25rem;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.form-notificacao input[type="email"]::placeholder {
    color: #999;
}

.form-notificacao input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(188, 135, 30, 0.1);
    transform: translateY(-1px);
}

.form-notificacao .btn {
    padding: 1rem 2.5rem;
    white-space: nowrap;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(188, 135, 30, 0.3);
    transition: all 0.3s ease;
}

.form-notificacao .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 135, 30, 0.4);
}

.form-notificacao .btn:active {
    transform: translateY(0);
}

.notificacao-mensagem {
    padding: 1.25rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    font-weight: 500;
    animation: fadeInScale 0.4s ease-out;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.notificacao-mensagem::before {
    content: '';
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notificacao-mensagem.success::before {
    content: '✓';
    color: #155724;
}

.notificacao-mensagem.error::before {
    content: '⚠';
    color: #721c24;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.notificacao-mensagem.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #b1dfbb;
}

.notificacao-mensagem.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #f1b0b7;
}

.notificacao-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(188, 135, 30, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.notificacao-info small {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    display: block;
}

/* Loading state melhorado */
.form-notificacao .btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
    background: #a67419;
}

.form-notificacao .btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsivo melhorado */
@media (max-width: 768px) {
    .notificacao-box {
        margin: 2rem 1rem;
        border-radius: 12px;
    }

    .notificacao-content {
        padding: 2rem 1.5rem;
    }

    .notificacao-icon {
        font-size: 3.5rem;
    }

    .notificacao-box h3 {
        font-size: 1.5rem;
    }

    .notificacao-box p {
        font-size: 1rem;
    }

    .form-notificacao {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .form-notificacao input[type="email"],
    .form-notificacao .btn {
        width: 100%;
        min-width: 100%;
    }

    .form-notificacao .btn {
        padding: 1.125rem 2rem;
    }
}



/* ============================================
   BADGE VERIFICADO - Sistema de Verificação de Documentos
   ============================================ */

.badge-verificado {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 10px;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.badge-verificado:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.badge-verificado svg {
    flex-shrink: 0;
}

.badge-verificado-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #28a745;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: 6px;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
    transition: all 0.2s ease;
}

.badge-verificado-small:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 6px rgba(40, 167, 69, 0.4);
}

.badge-verificado-small svg {
    display: block;
}

/* Badge no perfil do advogado */
.perfil-titulo .badge-verificado {
    vertical-align: middle;
}

/* Badge nos cards de listagem */
.advogado-card-enhanced h3 .badge-verificado-small,
.advogado-card h3 .badge-verificado-small {
    vertical-align: middle;
}

/* Informação de OAB confirmada */
.oab-confirmada-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #d4edda;
    border-left: 4px solid #28a745;
    border-radius: 4px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #155724;
}

.oab-confirmada-info svg {
    flex-shrink: 0;
    color: #28a745;
}

.oab-confirmada-info strong {
    font-weight: 600;
}

.oab-confirmada-data {
    font-size: 0.85rem;
    color: #666;
    margin-top: 4px;
}

/* Responsivo */
@media (max-width: 768px) {
    .badge-verificado {
        font-size: 0.75rem;
        padding: 4px 10px;
        margin-left: 6px;
    }

    .badge-verificado-small {
        width: 18px;
        height: 18px;
    }

    .badge-verificado-small svg {
        width: 12px;
        height: 12px;
    }
}


/* ============================================
   ESPAÇAMENTO DE PARÁGRAFOS
   ============================================ */

/* Classe para garantir espaçamento entre parágrafos */
.paragrafo-espacado p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.paragrafo-espacado p:last-child {
    margin-bottom: 0;
}

/* Espaçamento para conteúdo de texto geral */
.conteudo-texto p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.conteudo-texto p:last-child {
    margin-bottom: 0;
}

/* Espaçamento para descrições e biografias */
.descricao p,
.biografia p,
.sobre-texto p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.descricao p:last-child,
.biografia p:last-child,
.sobre-texto p:last-child {
    margin-bottom: 0;
}

.curriculo-paragrafo p {
    margin-bottom: 30px;
}

/* ===
=========================================
   BOTÃO DARK MODE
   ============================================ */

.btn-dark-mode {
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.7rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-dark-mode:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.dark-mode-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-dark-mode:hover .dark-mode-icon {
    transform: rotate(20deg);
}

/* Dark mode ativo */
body.dark-mode .btn-dark-mode {
    border-color: #ffd700;
}

body.dark-mode .dark-mode-icon::before {
    content: '☀️';
}

body.dark-mode .dark-mode-icon {
    display: none;
}

body.dark-mode .btn-dark-mode::after {
    content: '☀️';
    font-size: 1.2rem;
}

/* ==
==========================================
   FAQ Section - Accordion Style
   ============================================ */

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #2c3e50;
    font-weight: 600;
    padding-right: 20px;
    line-height: 1.5;
}

.faq-icon {
    font-size: 1.8rem;
    color: #e74c3c;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-section h2 {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }

    .faq-icon {
        font-size: 1.5rem;
        width: 25px;
        height: 25px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .faq-section h2 {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }
}
