/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #25D366;
    color: #fff;
    border-color: #25D366;
}

.btn-primary:hover {
    background-color: #25D366;
    border-color: #25D366;
}

.btn-outline {
    background-color: transparent;
    color: #25D366;
    border-color: #25D366;
}

.btn-outline:hover {
    background-color: #25D366;
    color: #fff;
}

/* Hero Wrapper (Header + Hero unificados) */
.hero-wrapper {
    background-image: url('../images/2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-wrapper .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 240, 240, 0.95) 0%, rgba(235, 235, 235, 0.92) 100%);
    z-index: 1;
}

/* Header */
.header {
    background: transparent;
    padding: 30px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.logo {
    max-width: 240px;
    height: auto;
}

.header-text {
    margin-top: 10px;
}

.header-text p {
    color: #000;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Hide the second paragraph */
.header-text p:nth-child(2) {
    display: none;
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    position: relative;
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Desktop: 2 colunas - hero-left (título+botão) e hero-right (imagem+OAB+selo) */
.hero-left {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.hero-right {
    flex: 1;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-title-group,
.hero-text-first,
.hero-text-second,
.hero-cta-group {
    width: 100%;
    text-align: center;
}

.hero-image-wrapper,
.hero-oab-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.oab-text {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #1a2332;
    font-weight: 600;
}

.hero-selo {
    width: 120px;
    height: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    box-shadow: none;
    border-radius: 0;
}

.selo-text {
    color: #000;
    font-weight: 700;
    font-size: 14px;
    margin: 0;
    text-align: center;
}

.hero h1 {
    font-size: 28px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 15px;
    line-height: 1.3;
    text-transform: uppercase;
}

/* H1 injetado dinamicamente via JavaScript */
.hero-title-group h1 {
    font-size: 32px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 20px;
    line-height: 1.3;
    text-transform: uppercase;
    text-align: center;
}

.hero-subtitle {
    font-size: 26px;
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-text {
    font-size: 24px;
    color: #555;
    margin-bottom: 10px;
    font-style: italic;
}

.hero-description {
    font-size: 22px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    text-align: left;
}

.btn-subtext {
    font-size: 11px;
    color: #666;
    margin-top: 10px;
    line-height: 1.5;
}

.selos-oab {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.selo-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.selo-item img {
    width: 40px;
    height: 40px;
}

.selo-item span {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* Hero Card */
.hero-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 380px;
    position: relative;
}

.card-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: linear-gradient(135deg, #c9a227 0%, #d4af37 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.card-badge .badge-icon {
    display: none;
}

.badge-text {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.badge-text small {
    font-size: 10px;
    font-weight: 600;
}

.hero-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.services-list {
    list-style: none;
}

.services-list li {
    font-size: 13px;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.services-list li:last-child {
    border-bottom: none;
}

/* Orientação Jurídica */
.orientacao {
    background-color: #f5f0e6;
    padding: 60px 0;
}

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

.orientacao-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 40px;
    align-items: center;
}

.orientacao-content {
    flex: 1;
}

.orientacao-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.orientacao-card h3 .mobile-break {
    display: inline;
}

.orientacao-content p {
    text-align: left;
}

.orientacao-content ul {
    text-align: left;
}

.orientacao-image {
    flex: 1;
    max-width: 400px;
}

.orientacao-image img {
    width: 100%;
    border-radius: 10px;
}

/* Como Funciona */
.como-funciona {
    padding: 70px 0;
    background: #fff;
}

.como-funciona h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 20px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c9a227 0%, #d4af37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.step-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Experiência */
.experiencia {
    padding: 70px 0;
    background: #f9f9f9;
    text-align: center;
}

.experiencia h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

.experiencia p {
    text-align: left;
}

.experiencia-subtitle {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.experiencia-text {
    font-size: 14px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 15px;
    line-height: 1.7;
}

.experiencia-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Conhecemos */
.conhecemos {
    background: #e8e8e8;
    padding: 70px 0;
}

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

.conhecemos-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a2332;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
    text-transform: uppercase;
}

.conhecemos-title span {
    font-weight: 400;
    font-size: 18px;
    display: block;
    margin-top: 8px;
    color: #555;
}

.conhecemos-card {
    border-radius: 15px;
    box-shadow: none;
    padding: 50px;
    display: flex;
    gap: 63px;
    align-items: center;
}

.conhecemos-content {
    flex: 1;
    background: transparent;
    padding: 0;
}

.conhecemos h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 25px;
    line-height: 1.3;
    text-transform: uppercase;
}

.conhecemos h2 span {
    font-weight: 400;
    font-size: 18px;
    display: block;
    margin-top: 5px;
}

.conhecemos p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: left;
}

.conhecemos .btn {
    margin-top: 20px;
}

.conhecemos-image {
    flex: 1;
    max-width: 550px;
}

.conhecemos-image img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 100%;
}

/* Por que nos escolhem */
.porque {
    background: #1a2332;
    padding: 70px 0;
    text-align: center;
    color: #fff;
}

.porque h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.porque-subtitle {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 15px;
}

.porque-text {
    font-size: 14px;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto 10px;
    line-height: 1.7;
}

.porque-cta {
    font-size: 14px;
    color: #c9a227;
    font-weight: 600;
    margin-bottom: 40px;
}

.porque-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.porque-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
}

.porque-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c9a227 0%, #d4af37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
}

.porque-card h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1a2332;
    line-height: 1.4;
}

/* Artigos */
.artigos {
    padding: 70px 0;
    background: #fff;
    text-align: center;
}

.artigos h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.artigos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.artigo-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.artigo-image {
    height: 180px;
    overflow: hidden;
}

.artigo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artigo-card h4 {
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #1a2332;
    line-height: 1.4;
}

.artigos-link {
    color: #2d6a4f;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.artigos-link:hover {
    text-decoration: underline;
}

/* Make artigo-card links behave properly */
.artigo-card > a {
    display: block;
    color: inherit;
    text-decoration: none;
}

/* FAQ */
.faq {
    background: #1a2332;
    padding: 70px 0;
}

.faq h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.faq-question:hover {
    color: #c9a227;
}

.faq-toggle {
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 20px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
}

/* Conteudo SEO */
.conteudo-seo {
    padding: 80px 0;
    background: #f9f9f9;
}

.conteudo-seo h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 30px;
    line-height: 1.4;
    text-transform: uppercase;
}

.conteudo-seo-article {
    max-width: 900px;
    margin: 0 auto;
}

.conteudo-seo-article p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.conteudo-seo-article h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a2332;
    margin-top: 35px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.conteudo-seo-article .intro {
    font-size: 18px;
    color: #333;
    font-weight: 400;
    line-height: 1.7;
}

.conteudo-seo-article .conclusion {
    font-size: 17px;
    color: #2d6a4f;
    font-weight: 600;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.conteudo-seo-toggle {
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    font-size: 28px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.conteudo-seo-toggle-icon {
    font-size: 32px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.conteudo-seo-toggle.active .conteudo-seo-toggle-icon {
    transform: rotate(45deg);
}

.conteudo-seo-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    margin-bottom: 0;
}

.conteudo-seo-toggle.active ~ .conteudo-seo-content {
    max-height: none;
    opacity: 1;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: #f5f5f5;
    padding: 50px 0 30px;
}

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

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.footer-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c9a227 0%, #d4af37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.footer-item h5 {
    font-size: 14px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 5px;
}

.footer-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30%;
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 160px;
}

.footer-selo {
    max-width: 120px;
    height: auto;
}

.footer-selo-seguro {
    max-width: 160px;
    height: auto;
}

.footer-bottom p {
    font-size: 12px;
    color: #888;
}

.footer-credit {
    text-align: center;
    font-size: 0.875rem;
    color: #888;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.footer-credit a {
    color: #c9a227;
    text-decoration: none;
    font-weight: 600;
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background-color: #25D366;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 70px;
    background-color: #128C7E;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.whatsapp-float .tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-left: 6px solid #128C7E;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Responsivo */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        max-width: 100%;
        margin-top: 30px;
    }

    .orientacao-card {
        flex-direction: column;
    }

    .orientacao-image {
        max-width: 100%;
    }

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

    .conhecemos-card {
        flex-direction: column;
    }

    .conhecemos-image {
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .conhecemos-image img {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        display: block;
    }

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

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

    .footer-contact {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        min-width: 200px;
    }

    .footer-item h5 {
        margin-bottom: 8px;
        margin-top: 0;
    }

    .footer-item p {
        line-height: 1.6;
    }

    .conteudo-seo h2 {
        font-size: 24px;
    }

    .conteudo-seo-article h3 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 22px;
    }

    /* Reduzir em 50% os textos específicos no mobile */
    .hero-subtitle {
        font-size: 13px !important; /* 50% de 26px */
    }

    .hero-text {
        font-size: 12px !important; /* 50% de 24px */
    }

    /* Ajustar H1 para mobile */
    .hero-title-group h1 {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }

    .header-text p {
        font-size: 12px;
    }

    .orientacao-card h3 .mobile-break {
        display: block;
    }

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

    .experiencia-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

    .selos-oab {
        flex-direction: column;
        gap: 15px;
    }

    /* Centralizar texto do botão na versão mobile */
    .conhecemos .btn {
        text-align: center;
    }

    /* Hero mobile layout - reorganizar ordem dos elementos */
    .hero {
        padding: 40px 0 60px;
    }

    .hero-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
        max-width: 100%;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* Ordem no mobile: 1. Título, 2. Imagem, 3. Texto "Unindo técnica...", 4. Botão, 5. Texto "Essa vantagem...", 6. OAB+Selo */
    .hero-title-group {
        order: 1;
        margin-bottom: 10px;
    }

    .hero-image-wrapper {
        order: 2;
        margin-bottom: 10px;
    }

    .hero-text-first {
        order: 3;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .hero-cta-group {
        order: 4;
        margin-top: 10px;
        margin-bottom: 15px;
        padding: 0 20px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text-second {
        order: 5;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .hero-oab-group {
        order: 6;
        margin-top: 10px;
    }

    .hero-image-wrapper img {
        margin-bottom: 0;
    }

    .oab-text {
        margin-top: 10px;
        font-size: 16px;
        text-align: center;
    }

    .hero-selo {
        width: 120px;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .hero-content h1 {
        font-size: 20px;
        text-align: center;
    }

    .hero-content p {
        text-align: center;
    }

    .hero-content .btn-primary {
        width: 100%;
        text-align: center;
    }

    .hero-content .btn-subtext {
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 18px;
    }

    /* Ajustar H1 para telas pequenas */
    .hero-title-group h1 {
        font-size: 18px !important;
    }

    /* Garantir redução de 50% */
    .hero-subtitle {
        font-size: 13px !important;
    }

    .hero-text {
        font-size: 12px !important;
    }

    h2 {
        font-size: 20px !important;
    }

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

    .faq-question {
        font-size: 12px;
    }

    .conteudo-seo {
        padding: 50px 0;
    }

    .conteudo-seo h2 {
        font-size: 20px;
    }

    .conteudo-seo-article p {
        font-size: 15px;
        text-align: left;
    }

    .conteudo-seo-article .intro {
        font-size: 16px;
    }

    .conteudo-seo-article h3 {
        font-size: 17px;
        margin-top: 25px;
    }

    .footer-item {
        min-width: auto;
        padding: 0 10px;
    }

    .footer-icon {
        width: 45px;
        height: 45px;
    }

    .footer-item h5 {
        font-size: 13px;
    }

    .footer-item p {
        font-size: 12px;
    }

    .footer-logos {
        gap: 20%;
    }

    /* Botão WhatsApp mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float .tooltip {
        display: none;
    }
}

/* Garantir que botões com links sejam clicáveis */
.btn[href],
a.btn {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Garantir que links de artigos sejam clicáveis */
.artigos-link {
    pointer-events: auto !important;
    cursor: pointer !important;
    text-decoration: none;
}

.artigos-link:hover {
    text-decoration: underline;
}

/* Garantir que todos os botões-links sejam clicáveis */
a[href="#"].btn,
a[href].btn,
.btn[href],
section a[href] {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 1;
}

/* Garantir que links de artigos sejam clicáveis */
.artigos-link {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 10;
}

/* Garantir que botões em todas as seções sejam clicáveis */
.experiencia-buttons a,
.conhecemos-content a,
.porque a,
.conteudo-seo-toggle,
.faq-question {
    pointer-events: auto !important;
}

/* ===== CORREÇÃO: Garantir que botões-link sejam clicáveis ===== */
.experiencia-buttons a,
.conhecemos-content a,
.porque a,
.artigos-link {
    pointer-events: auto !important;
    cursor: pointer !important;
}
