/* Variaveis e Reset */
:root {
    --primary-color: #1e3a8a;
    /* Azul Vibrante */
    --secondary-color: #d97706;
    /* Âmbar/Laranja */
    --secondary-hover: #b45309;
    --dark-text: #111827;
    --gray-text: #4b5563;
    --light-bg: #f3f4f6;
    --white: #ffffff;
    --whatsapp-green: #25D366;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Base size */
}

body {
    font-family: var(--font-body);
    color: var(--gray-text);
    background-color: var(--light-bg);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* CONTAINER MAIOR para dar sensação de amplitude */
.container {
    max-width: 1400px;
    /* Aumentado de 1200px para 1400px */
    margin: 0 auto;
    padding: 0 40px;
    /* Mais respiro lateral */
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 130px;
    /* Header maior para acomodar o logo gigante */
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-img {
    height: 104px;
    /* Logo +30% maior (Total 104px) */
    width: auto;
    display: block;
}

.nav-menu ul {
    display: flex;
    gap: 40px;
    /* Mais espaço entre os links */
    align-items: center;
}

.nav-menu a {
    font-weight: 600;
    font-size: 1.05rem;
    /* Fonte menu maior */
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a:not(.btn-header-cta):hover {
    color: var(--primary-color);
}

.btn-header-cta {
    background-color: var(--whatsapp-green);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    font-size: 1rem;
}

.btn-header-cta:hover {
    background-color: #20bd5a;
    transform: translateY(-2px);
}

.mobile-menu-icon {
    display: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
}

.mobile-dropdown {
    display: none;
    position: absolute;
    top: 130px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
}

.mobile-dropdown.active {
    display: block;
}

.mobile-dropdown a {
    display: block;
    padding: 18px 25px;
    border-bottom: 1px solid #f3f4f6;
    font-weight: 600;
    font-size: 1.1rem;
}

.mobile-dropdown .mobile-cta {
    background-color: #f0fdf4;
    color: #16a34a;
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: linear-gradient(rgba(30, 58, 138, 0.9), rgba(17, 24, 39, 0.9)), url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding-top: 90px;
    color: white;
}

.hero-content {
    max-width: 900px;
    /* Conteúdo mais largo */
    margin-bottom: 60px;
}

.hero-badge {
    background-color: var(--secondary-color);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    /* Badge maior */
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero h1 {
    color: white;
    font-size: 4rem;
    /* Título gigante */
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.3rem;
    /* Texto de apoio maior */
    color: #e5e7eb;
    margin-bottom: 50px;
    max-width: 800px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-whatsapp-hero {
    background-color: var(--whatsapp-green);
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    /* Botões maiores */
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.btn-whatsapp-hero:hover {
    background-color: #20bd5a;
    color: white;
    transform: translateY(-3px);
}

.btn-outline-hero {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    backdrop-filter: blur(4px);
}

.btn-outline-hero:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
}

.hero-tags {
    display: flex;
    gap: 30px;
    color: #ffffff;
    font-size: 1.05rem;
}

.hero-tags span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-tags i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.shape-fill {
    fill: var(--light-bg);
}

/* Sections General */
.section-bg {
    background-color: var(--light-bg);
    padding: 120px 0;
    /* Padding vertical generoso */
}

.section-white {
    background-color: var(--white);
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.subtitle {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 3rem;
    /* Títulos de seção maiores */
    margin-bottom: 25px;
}

.header-line {
    width: 100px;
    height: 5px;
    background-color: var(--secondary-color);
    margin: 0 auto 30px;
    border-radius: 3px;
}

.section-desc {
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    font-size: 1.25rem;
    color: #555;
}

/* Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Força 3 colunas no desktop */
    gap: 40px;
}

.card {
    background: white;
    padding: 50px 35px;
    /* Mais padding interno */
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
    border-bottom: 5px solid transparent;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
}

.card-blue {
    border-bottom-color: var(--primary-color);
}

.card-orange {
    border-bottom-color: var(--secondary-color);
}

.card-icon {
    width: 80px;
    /* Ícones maiores */
    height: 80px;
    background-color: #dbeafe;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
    transition: 0.3s;
    align-self: flex-start;
    /* Alinhado à esquerda como no design moderno */
}

.card-icon.icon-orange {
    background-color: #ffedd5;
    color: var(--secondary-color);
}

.card:hover .card-icon {
    background-color: var(--primary-color);
    color: white;
}

.card:hover .card-icon.icon-orange {
    background-color: var(--secondary-color);
    color: white;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.card p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
}

/* CTA Card */
.card-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    height: 100%;
}

.card-cta:hover {
    transform: scale(1.03);
}

.card-cta h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.card-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn-card-cta {
    background-color: var(--whatsapp-green);
    color: white;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
}

.btn-card-cta:hover {
    background-color: #20bd5a;
    color: white;
}

/* Office Section */
.office-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    /* Mais espaço entre imagem e texto */
}

.office-img-col {
    flex: 1;
}

.office-text-col {
    flex: 1;
}

.img-container {
    position: relative;
    padding-left: 20px;
    padding-bottom: 20px;
}

.img-container img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
    border-left: 10px solid var(--secondary-color);
}

.img-backdrop {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    /* Backdrop maior */
    height: 200px;
    background-color: rgba(30, 58, 138, 0.1);
    border-radius: 12px;
    z-index: 1;
}

.lawyer-badge {
    margin: 20px 0 30px;
    padding-left: 15px;
    border-left: 4px solid var(--secondary-color);
}

.lawyer-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.lawyer-oab {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 5px 0 10px;
}

.lawyer-experience {
    font-style: italic;
    color: var(--gray-text);
    font-weight: 600;
    margin: 0 !important;
}

.featured-text {
    font-size: 1.3rem;
    /* Destaque de texto maior */
    color: #374151;
    margin-bottom: 30px;
    line-height: 1.8;
}

.office-text-col p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.checks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    text-transform: uppercase;
}

.check-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: #f9fafb;
    padding: 40px 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.google-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #4285F4;
    font-size: 1.2rem;
}

.stars {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.google-redirect {
    text-align: center;
}

.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--white);
    border: 2px solid #eee;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--gray-text);
    transition: 0.3s;
}

.btn-google-reviews:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: #f0f4ff;
}

/* FAQ Accordion */
.faq-container {
    max-width: 1200px;
    /* FAQ mais largo */
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 COLUNAS DE VERDADE */
    gap: 30px;
    align-items: start;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Espaço entre itens na coluna */
}

.accordion-item {
    background: white;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 22px 30px;
    background: white;
    border: none;
    font-family: inherit;
    font-size: 1.05rem;
    /* Pergunta maior */
    font-weight: 700;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s;
}

.accordion-header:hover {
    background-color: #f9fafb;
    color: var(--primary-color);
}

.accordion-header i {
    color: var(--secondary-color);
    transition: transform 0.3s;
    font-size: 1.2rem;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fafafa;
}

.accordion-content p {
    padding: 10px 30px 30px 30px;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #d1d5db;
    padding: 100px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    /* Coluna 1 maior */
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.footer-col p {
    font-size: 1rem;
    line-height: 1.8;
}

.footer-logo {
    height: 104px;
    /* Logo +30% maior no rodapé */
    width: auto;
    margin-bottom: 25px;
    opacity: 1;
}

.footer-list li {
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.contact-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-list i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.contact-list a {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.footer-note {
    font-size: 0.9rem;
    color: #9ca3af;
    font-style: italic;
    margin-top: 15px;
    display: block !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 40px 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    /* Botão flutuante gigante */
    height: 70px;
    background-color: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20bd5a;
    transform: scale(1.1);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Tablet & Mobile */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .hero {
        text-align: center;
        padding-top: 150px;
        padding-bottom: 200px;
        /* Mais espaço para o texto não bater na onda */
    }

    .hero-content {
        margin: 0 auto 30px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-tags {
        justify-content: center;
        color: #ffffff !important;
        font-weight: 700;
        font-size: 1.25rem;
        /* Um pouco maior para destaque máximo */
    }

    .office-wrapper {
        flex-direction: column;
    }

    .office-img-col,
    .office-text-col {
        width: 100%;
    }

    .img-container img {
        border-left-width: 5px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        /* Volta pra 1 coluna no mobile */
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
    }
}