/* Estilos Gerais */
:root {
    --primary-color: #2A9D8F;
    --primary-dark: #218175;
    --secondary-color: #1A1A1A;
    --accent-color: #2A9D8F;
    --accent-hover: #218175;
    --text-color: #2c2c2c;
    --text-light: #fff;
    --light-text: #fff;
    --background-light: #f8f9fa;
    --background-dark: #1A1A1A;
    --border-color: #e0e0e0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 62px;
}

section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-header .lead {
    color: var(--text-color);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Cards Gerais */
.card-hover {
    transition: var(--transition);
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Estilos para serviços prioritários */
.priority-service {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(0, 123, 255, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.priority-service::before {
    content: "PRIORIDADE";
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 1;
}

.priority-service:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.2);
}

.priority-service .service-icon {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: white;
    transform: scale(1.1);
}

.priority-service .btn {
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
}

.priority-service .btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Equipe */
.advogado-principal {
    background: linear-gradient(to bottom, #fff, var(--background-light));
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.advogado-image {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.advogado-image img {
    width: 100%;
    transition: var(--transition);
}

.advogado-image:hover img {
    transform: scale(1.02);
}

.advogado-info {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
}

.advogado-content {
    background: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.advogado-content h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}

.equipe-section {
    background: linear-gradient(135deg, var(--background-light) 0%, #fff 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.equipe-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    border-bottom: none;
}

.equipe-section p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.equipe-section .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navbar */
.navbar {
    background-color: var(--background-dark);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    padding: 0.5rem 0;
}

.navbar.scrolled {
    padding: 0.25rem 0;
    background-color: rgba(26, 26, 26, 0.98);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    padding: 0.35rem 0.75rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: var(--background-dark);
    color: var(--light-text);
    padding: 120px 0 80px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: block;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--light-text);
}

.hero-lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.hero-features li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.hero-features i {
    color: var(--accent-color);
    margin-right: 10px;
    flex-shrink: 0;
}

.cta-group {
    margin-top: 2rem;
}

.cta-info {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--light-text);
    opacity: 0.9;
}

/* Feature Cards */
.feature-card {
    background: var(--light-text);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--background-light) 0%, #fff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon i {
    color: var(--light-text);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-color);
    font-size: 1.1rem;
}

.feature-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cta-diferenciais {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    color: var(--light-text);
    margin-top: 2rem;
    box-shadow: var(--shadow-lg);
}

.cta-diferenciais h4 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.cta-diferenciais p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-diferenciais .btn-whatsapp {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .feature-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }

    .feature-card p {
        font-size: 1rem;
    }

    .feature-list li {
        font-size: 1rem;
    }

    .cta-diferenciais {
        padding: 2rem;
    }

    .cta-diferenciais h4 {
        font-size: 1.5rem;
    }
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.service-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
    font-size: 1rem;
}

.service-list li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.service-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.service-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonial-card {
    background: var(--light-text);
    border-radius: 10px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--primary-color);
}

.testimonial-content {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-author p {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--light-text);
    position: relative;
    padding: 3rem 0;
}

.cta-section h2 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
}

/* Botão Principal (Verde) */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 157, 143, 0.3);
}

/* Botão WhatsApp (Branco em fundo verde, Verde em fundo branco) */
.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    width: auto;
    max-width: 400px;
    margin: 0 auto;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: #fff;
    transform: scale(1.05);
}

.btn-whatsapp i {
    font-size: 1.5rem;
    margin-right: 12px;
}

/* Versão inversa do botão WhatsApp para fundos claros */
.bg-light .btn-whatsapp,
.card .btn-whatsapp,
.feature-card .btn-whatsapp {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.2);
}

.bg-light .btn-whatsapp:hover,
.card .btn-whatsapp:hover,
.feature-card .btn-whatsapp:hover {
    background-color: var(--primary-dark);
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 157, 143, 0.3);
}

/* Botão Outline */
.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background-color: transparent;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.2);
}

/* Versão clara do botão outline para fundos escuros */
.bg-dark .btn-outline-primary,
.hero-section .btn-outline-primary,
.cta-section .btn-outline-primary {
    color: var(--light-text);
    border-color: var(--light-text);
}

.bg-dark .btn-outline-primary:hover,
.hero-section .btn-outline-primary:hover,
.cta-section .btn-outline-primary:hover {
    background-color: var(--light-text);
    border-color: var(--light-text);
    color: var(--primary-color);
}

/* Removendo classe btn-danger e substituindo por nossa própria classe */
.btn-accent {
    background-color: var(--light-text);
    color: var(--primary-color);
    border: none;
    padding: 0.8rem 1.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-accent:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Ajustes para áreas específicas */
.cta-diferenciais .btn-whatsapp {
    background-color: var(--light-text);
    color: var(--primary-color);
    border: none;
}

.cta-diferenciais .btn-whatsapp:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.pain-card .btn-accent {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.pain-card .btn-accent:hover {
    background-color: var(--primary-dark);
}

/* Footer */
footer {
    background-color: var(--background-dark);
    color: var(--light-text);
    padding: 3rem 0 1.5rem;
}

footer h5 {
    color: var(--light-text);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

footer i {
    color: var(--primary-color);
    width: 24px;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Links Sociais e Menu do Rodapé */
.social-links,
.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 2rem;
}

.social-links a,
.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 48px; /* Altura fixa padronizada */
    padding: 0 16px;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    font-weight: 500;
}

.social-links a:hover,
.footer-menu a:hover {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.social-links i,
.footer-menu i {
    width: 24px;
    margin-right: 12px;
    font-size: 1.1rem;
    text-align: center;
    color: var(--primary-color);
}

/* Ajustes Mobile */
@media (max-width: 767.98px) {
    .social-links,
    .footer-menu {
        gap: 8px;
        margin-bottom: 1.5rem;
    }

    .social-links a,
    .footer-menu a {
        height: 48px; /* Mantém a mesma altura no mobile */
        padding: 0 16px;
    }

    .social-links i,
    .footer-menu i {
        width: 20px;
        margin-right: 10px;
    }

    footer h5 {
        font-size: 1.2rem;
        margin: 1.5rem 0 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    footer h5:first-child {
        margin-top: 0;
    }
}

/* Copyright e Créditos */
.copyright {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    text-align: center;
}

.developer {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
    text-align: center;
}

.developer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.developer a:hover {
    color: var(--light-text);
}

/* Ajustes Mobile */
@media (max-width: 767.98px) {
    footer {
        padding: 2.5rem 0 2rem;
    }

    .copyright, .developer {
        text-align: left;
        padding: 0;
        line-height: 1.6;
    }

    .footer-divider {
        margin: 1.5rem 0;
    }

    footer p {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }
}

/* Responsividade */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--background-dark);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .nav-link::after {
        display: none;
    }

    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .feature-card, .service-card {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .advogado-principal, .advogado-content {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .equipe-section {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 100px 0 40px;
        text-align: left;
    }

    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-lead {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .hero-features {
        margin: 1.5rem 0;
    }

    .hero-features li {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        padding-right: 1rem;
    }

    .hero-features i {
        font-size: 1.2rem;
        width: 20px;
    }

    .cta-group {
        margin-top: 1.5rem;
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }

    .cta-info {
        text-align: center;
        margin-top: 1rem;
        font-size: 0.9rem;
    }

    .hero-image-wrapper {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .hero-image {
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.hero-content > *:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content > *:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-image {
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Efeitos de Hover */
.nav-link:hover {
    color: var(--primary-color) !important;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Seção de Dores */
.pain-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pain-card:hover {
    transform: translateY(-5px);
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color) !important;
}

.pain-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pain-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.pain-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 0.9rem;
    top: 0.2rem;
}

.pain-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pain-card .btn {
    margin-top: auto;
}

/* Removendo btn-danger */
.btn-danger {
    display: none;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-image-wrapper {
        margin-top: 2rem;
    }

    .pain-card {
        margin-bottom: 1rem;
    }
}

/* Seção de Contato */
.contact-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-card p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 8px;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    background: #f0f0f0;
    color: var(--primary-color);
}

.social-link i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.social-link span {
    font-weight: 600;
}

.social-link small {
    margin-left: auto;
    opacity: 0.7;
}

.cta-contact {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-card {
        margin-bottom: 1rem;
    }
    
    .social-link small {
        display: none;
    }
}

/* Seção do Advogado */
#advogado {
    background-color: var(--background-light);
}

.advogado-principal {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.advogado-image {
    position: relative;
    margin-bottom: 1.5rem;
}

.advogado-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.advogado-info h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.advogado-info .lead {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.advogado-info .cargo {
    color: var(--text-color);
    font-size: 1rem;
    opacity: 0.8;
}

.advogado-content {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.advogado-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}

.advogado-content h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.advogado-content p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.advogado-content ul li {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.advogado-content i {
    color: var(--accent-color);
}

.sobre-section {
    margin-bottom: 2rem;
}

.equipe-section {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.equipe-section h3 {
    border-bottom: none;
    margin-bottom: 1rem;
}

.equipe-preview {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.equipe-member {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 8px;
    transition: var(--transition);
}

.equipe-member:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.equipe-member i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.equipe-member h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.equipe-member .cargo {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.equipe-section .btn {
    width: 100%;
    padding: 1rem;
}

@media (max-width: 767.98px) {
    .equipe-member {
        margin-bottom: 1rem;
    }
}

@media (max-width: 991.98px) {
    .advogado-principal, .advogado-content {
        margin-bottom: 2rem;
    }
    
    .advogado-content {
        padding: 1.5rem;
    }
}

/* Melhorias de Conversão */
.cta-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

@media (min-width: 768px) {
    .cta-floating {
        display: block;
    }

    .btn-whatsapp.fixed-bottom {
        display: none;
    }
}

/* Destaque para CTAs */
.btn-primary, .btn-whatsapp {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Melhorias de Performance */
.hero-section, .feature-card, .service-card, .testimonial-card {
    will-change: transform;
}

/* Ajustes de Acessibilidade */
.btn, .nav-link {
    min-height: 44px;
    min-width: 44px;
}

.agente-flutuante {
    position: fixed !important;
    bottom: 0;
    right: 20px;
    z-index: 99999;
    width: 200px;
    height: 200px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    pointer-events: auto;
}

.agente-flutuante img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Ajuste do tamanho do agente em telas menores */
@media (max-width: 991px) {
    .agente-flutuante {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .agente-flutuante {
        width: 120px;
        height: 120px;
    }
}

/* Ajustes para desktop */
@media (min-width: 992px) {
    .cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .btn-whatsapp {
        width: auto;
        min-width: 320px;
        font-size: 1.1rem;
    }
}

/* Ajustes para mobile */
@media (max-width: 991px) {
    .btn-whatsapp {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .btn-whatsapp i {
        font-size: 1.3rem;
        margin-right: 8px;
    }
}

/* ===== MELHORIAS MOBILE ABRANGENTES ===== */

/* Breakpoint Mobile Grande (tablets pequenos) */
@media (max-width: 767.98px) {
    /* Ajustes gerais */
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Container mais compacto */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding: 60px 0 40px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-section .hero-lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        text-align: left;
        margin: 1.5rem 0;
    }
    
    .hero-features li {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        padding-left: 1.5rem;
    }
    
    .hero-features i {
        font-size: 1rem;
        left: 0;
        top: 2px;
    }
    
    /* CTA Group Mobile */
    .cta-group {
        margin-top: 2rem;
    }
    
    .cta-info {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    /* Navbar Mobile */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand img {
        width: 160px;
        height: auto;
    }
    
    .navbar-collapse {
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 5px;
        margin: 0.25rem 0;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background-color: var(--primary-color);
        color: white;
    }
    
    /* Seções gerais */
    section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .section-header .lead {
        font-size: 1rem;
    }
    
    /* Cards Mobile */
    .card {
        margin-bottom: 1.5rem;
        border-radius: 10px;
    }
    
    .service-card,
    .feature-card,
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Botões Mobile */
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        border-radius: 8px;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-whatsapp {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
        padding: 16px 24px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    
    .btn-whatsapp:active {
        transform: scale(0.98);
    }
    
    /* Footer Mobile */
    footer {
        padding: 2rem 0 1.5rem;
        text-align: center;
    }
    
    footer h5 {
        font-size: 1.1rem;
        margin: 1.5rem 0 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    footer p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 10px;
        margin: 1rem 0;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }
}

/* Breakpoint Mobile Pequeno (smartphones) */
@media (max-width: 575.98px) {
    /* Hero Section Mobile Pequeno */
    .hero-section {
        padding: 50px 0 30px;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-section .subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-lead {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    /* Container mais compacto */
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Seções mais compactas */
    section {
        padding: 2rem 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header .lead {
        font-size: 0.95rem;
    }
    
    /* Cards mais compactos */
    .service-card,
    .feature-card,
    .testimonial-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    /* Botões mais compactos */
    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .btn-whatsapp {
        padding: 14px 20px;
        font-size: 0.95rem;
        max-width: 280px;
    }
    
    /* Navbar mais compacta */
    .navbar-brand img {
        width: 140px;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1rem;
    }
    
    /* Footer mais compacto */
    footer {
        padding: 1.5rem 0 1rem;
    }
    
    footer h5 {
        font-size: 1rem;
        margin: 1rem 0 0.75rem;
    }
    
    footer p {
        font-size: 0.85rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Breakpoint Mobile Extra Pequeno */
@media (max-width: 375px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .btn-whatsapp {
        max-width: 260px;
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* ===== MELHORIAS DE INTERAÇÃO TOUCH ===== */

/* Área de toque mínima para elementos interativos */
@media (max-width: 767.98px) {
    .nav-link,
    .btn,
    .social-links a,
    .footer-menu a {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Feedback visual para toque */
    .btn:active,
    .nav-link:active,
    .social-links a:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    /* Melhor espaçamento para elementos clicáveis */
    .service-card,
    .feature-card,
    .testimonial-card {
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .service-card:active,
    .feature-card:active,
    .testimonial-card:active {
        transform: scale(0.98);
    }
}

/* ===== MELHORIAS DE PERFORMANCE MOBILE ===== */

/* Otimizações de renderização */
@media (max-width: 767.98px) {
    .hero-section,
    .service-card,
    .feature-card,
    .testimonial-card {
        will-change: transform;
        transform: translateZ(0);
    }
    
    /* Reduzir animações em dispositivos com preferência por movimento reduzido */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* ===== MELHORIAS DE ACESSIBILIDADE MOBILE ===== */

@media (max-width: 767.98px) {
    /* Melhor contraste para texto */
    .text-muted {
        color: #6c757d !important;
    }
    
    /* Foco mais visível */
    .btn:focus,
    .nav-link:focus,
    .social-links a:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    /* Melhor legibilidade */
    p, li {
        line-height: 1.6;
    }
    
    /* Espaçamento melhorado para leitura */
    .hero-features li,
    .service-card p,
    .testimonial-content {
        margin-bottom: 0.75rem;
    }
}

/* ===== MELHORIAS ESPECÍFICAS PARA LANDSCAPE MOBILE ===== */

@media (max-width: 767.98px) and (orientation: landscape) {
    .hero-section {
        padding: 40px 0 30px;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-features {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-features li {
        flex: 0 0 auto;
        margin-bottom: 0;
    }
}

/* ===== MELHORIAS PARA TABLETS ===== */

@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.25rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .btn-whatsapp {
        width: auto;
        min-width: 280px;
    }
    
    .service-card,
    .feature-card {
        padding: 2rem;
    }
}

/* ===== MELHORIAS DE NAVEGAÇÃO MOBILE ===== */

@media (max-width: 767.98px) {
    /* Menu mobile mais acessível */
    .navbar-collapse {
        max-height: 70vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Indicador visual para menu ativo */
    .nav-link.active {
        background-color: var(--primary-color);
        color: white;
        font-weight: 600;
    }
    
    /* Melhor espaçamento no menu */
    .navbar-nav {
        gap: 0.5rem;
    }
    
    /* Botão de menu mais visível */
    .navbar-toggler {
        border: 2px solid var(--primary-color);
        padding: 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(42, 157, 143, 0.25);
    }
}

/* ===== MELHORIAS DE FORMULÁRIOS MOBILE ===== */

@media (max-width: 767.98px) {
    input, textarea, select {
        font-size: 16px !important; /* Evita zoom no iOS */
        padding: 12px 16px;
        border-radius: 8px;
        border: 2px solid #e0e0e0;
        transition: border-color 0.3s ease;
    }
    
    input:focus, textarea:focus, select:focus {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
    }
    
    label {
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: block;
    }
}

/* ===== MELHORIAS DE IMAGENS MOBILE ===== */

@media (max-width: 767.98px) {
    img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    .hero-image {
        margin-top: 2rem;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .advogado-image img {
        border-radius: 12px;
    }
}

/* ===== MELHORIAS DE AGENTE FLUTUANTE MOBILE ===== */

@media (max-width: 767.98px) {
    .agente-flutuante {
        width: 140px;
        height: 140px;
        bottom: 15px;
        right: 15px;
        z-index: 9999;
    }
    
    .agente-flutuante:active {
        transform: scale(0.9);
    }
}

@media (max-width: 575.98px) {
    .agente-flutuante {
        width: 120px;
        height: 120px;
        bottom: 12px;
        right: 12px;
    }
}

@media (max-width: 375px) {
    .agente-flutuante {
        width: 110px;
        height: 110px;
        bottom: 10px;
        right: 10px;
    }
}