/* styles.css – versão moderna tema BRANCO - TOTALMENTE RESPONSIVO */

/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* PALETA TEMA CLARO */
:root {
    --primary-color: #1e40af;
    --secondary-color: #3b82f6;
    --accent-color: #10b981;
    --text-dark: #111827;
    --text-medium: #374151;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-lighter: #f3f4f6;
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;

    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-pill: 999px;

    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 45px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

/* Texto justificado para melhor leitura */
p {
    text-align: justify;
    text-justify: inter-word;
}

/* CONTAINER GERAL */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER / NAVBAR */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

header.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.logo-text-primary {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.logo-text-secondary {
    color: var(--text-light);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* MENU DESKTOP */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    position: relative;
    text-decoration: none;
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* BOTÃO ÁREA DO CLIENTE – HEADER */
.btn-area-cliente-header {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 1rem;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.btn-area-cliente-header span {
    font-size: 1.05rem;
}

.btn-area-cliente-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

/* HAMBURGER (MOBILE) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Esconde o botão dentro do menu no DESKTOP */
.nav-menu li .btn-area-cliente-header {
    display: none;
}

/* HERO */
.hero {
    position: relative;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #f0fdf4 100%);
    padding: 90px 0 90px;
    margin-top: 40px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

/* Conteúdo principal do hero */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 5px 12px 5px 5px;
    border-radius: 999px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 1.2rem;
}

.hero-kicker-badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #065f46;
}

.hero-kicker-text {
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Título hero */
.hero h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-highlight {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Descrição hero */
.hero p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Lista de benefícios no hero */
.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.6rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.hero-benefit-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.hero-benefit-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #059669;
    font-size: 0.85rem;
}

/* Botões Hero */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease,
        background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--border-medium);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero – cartões de destaque (lado direito) */
.hero-side-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 2rem 2rem 2.2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.hero-side-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-side-card-inner {
    position: relative;
    z-index: 1;
}

.hero-side-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.3rem;
}

.hero-side-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

.hero-side-pill {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: var(--primary-color);
}

/* Card "Anos de mercado / 30+" dentro do hero */
.hero-experience-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    max-width: 220px;
    margin: 0 auto 1rem;
}

.hero-experience-label {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 4px;
}

.hero-experience-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Linha de "empresas atendidas" */
.hero-trust {
    margin-top: 1rem;
    border-top: 1px dashed var(--border-medium);
    padding-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-trust-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light);
}

.hero-trust-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-trust-badge {
    font-size: 0.78rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--bg-lighter);
    color: var(--text-medium);
    border: 1px solid var(--border-light);
}

/* SEÇÕES GENÉRICAS */
section {
    padding: 90px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

/* SERVIÇOS */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem 1.8rem 2.2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease,
        border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1.3rem;
}

.service-card h3 {
    color: var(--text-dark);
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* SOBRE */
.about {
    background: var(--bg-white);
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.about-text p {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: var(--text-medium);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat {
    min-width: 180px;
    text-align: center;
}

.stat h3 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
}

.stat p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* DIFERENCIAIS */
.differentials {
    background: var(--bg-light);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.differential-item {
    background: var(--bg-white);
    border-radius: 18px;
    padding: 1.8rem 1.6rem 2rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.differential-item::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -40%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.differential-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.differential-item:hover::before {
    opacity: 1;
}

.diff-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    margin-bottom: 1rem;
}

.differential-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
    font-weight: 700;
}

.differential-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CONTATO */
.contact {
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.info-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Botão Área VIP dentro da seção de contato */
.btn-area-cliente-contato {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.2rem;
    padding: 12px 26px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-area-cliente-contato:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

/* FORMULÁRIO CONTATO */
.contact-form {
    background: var(--bg-light);
    padding: 2rem 2rem 2.2rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 15px;
    border-radius: 12px;
    border: 1px solid var(--border-medium);
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form button {
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

/* FOOTER */
footer {
    background: var(--text-dark);
    color: #d1d5db;
    text-align: center;
    padding: 2.2rem 0 2.5rem;
    border-top: 1px solid #374151;
    font-size: 0.9rem;
}

footer p {
    margin: 0.3rem 0;
}

.footer-link {
    color: #93c5fd;
    text-decoration: underline;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #bfdbfe;
}

/* BOTÃO WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    animation: pulse-whats 3s infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.5);
}

.whatsapp-icon-svg {
    width: 30px;
    height: 30px;
    display: block;
    fill: #ffffff;
}

/* Animação "pulse" */
@keyframes pulse-whats {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* BANNER DE COOKIES */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    color: var(--text-dark);
    padding: 18px 20px;
    z-index: 99999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    display: none;
}

.cookie-banner-content {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    gap: 1.2rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-banner p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-medium);
}

.cookie-link {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-link:hover {
    color: var(--primary-color);
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.cookie-btn {
    border: none;
    cursor: pointer;
    padding: 9px 20px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.4);
}

.cookie-btn-secondary {
    background: transparent;
    border: 1px solid var(--border-medium);
    box-shadow: none;
    color: var(--text-medium);
}

.cookie-btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-medium);
}

/* ============================================
   PÁGINAS DE CONTEÚDO (Termos/Política)
   ============================================ */
.page-wrapper {
    max-width: 900px;
    margin: 120px auto 60px;
    padding: 0 20px 40px;
}

.page-wrapper h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-wrapper h2,
.page-wrapper h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.page-wrapper h2 {
    font-size: 1.5rem;
}

.page-wrapper h3 {
    font-size: 1.2rem;
}

.page-wrapper p {
    margin-bottom: 0.8rem;
    text-align: justify;
    text-justify: inter-word;
    color: var(--text-medium);
    line-height: 1.8;
}

.page-wrapper ul {
    margin: 0.5rem 0 1rem 1.4rem;
}

.page-wrapper li {
    margin-bottom: 0.4rem;
    text-align: justify;
    text-justify: inter-word;
    color: var(--text-medium);
}

.page-wrapper a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-wrapper a:hover {
    color: var(--primary-color);
}

.page-wrapper strong {
    color: var(--text-dark);
    font-weight: 600;
}

.page-back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-back-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.4);
}

/* ============================================
   RESPONSIVO – TABLET
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        padding: 140px 0 100px;
    }

    section {
        padding: 70px 0;
    }

    .services-grid,
    .differentials-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

/* ============================================
   RESPONSIVO – MOBILE
   ============================================ */
@media (max-width: 768px) {
    /* Cabeçalho mobile */
    .navbar {
        padding: 0.8rem 0;
    }

    .logo-img {
        height: 42px;
    }

    .logo-text-primary {
        font-size: 1.2rem;
    }

    .logo-text-secondary {
        font-size: 0.75rem;
    }

    .hamburger {
        display: flex;
    }

    /* Mantém o botão visível no header mobile, ao lado do hamburger */
    .navbar > .btn-area-cliente-header {
        display: inline-flex;
        padding: 8px 14px;
        font-size: 0.82rem;
        margin-left: 0.5rem;
    }

    /* Esconde o ícone 👤 no header mobile – exibe só o texto */
    .navbar > .btn-area-cliente-header span {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 64px;
        right: 0;
        left: 0;
        background: var(--bg-white);
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 1rem 0 1.2rem;
        gap: 0.8rem;
        display: none;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid var(--border-light);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
    }

    /* Mostra o botão dentro do menu mobile */
    .nav-menu .btn-area-cliente-header {
        display: inline-flex;
        width: auto;
        max-width: 80%;
        margin: 0.5rem auto 0;
        padding: 12px 24px;
        justify-content: center;
    }

    /* Esconde o ícone 👤 no menu mobile também – exibe só o texto */
    .nav-menu .btn-area-cliente-header span {
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    /* Hero mobile */
    .hero {
        padding: 80px 0 60px;
        margin-top: 40px;
    }

    /* Seções mobile */
    section {
        padding: 60px 0;
    }

    .section-subtitle {
        margin-bottom: 2.5rem;
    }

    /* Grids em 1 coluna */
    .services-grid,
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Stats mobile */
    .stats {
        gap: 2rem;
    }

    /* WhatsApp mobile */
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-icon-svg {
        width: 28px;
        height: 28px;
    }

    /* Cookies mobile */
    .cookie-banner {
        padding: 14px 16px;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
    }

    .cookie-banner p {
        font-size: 0.87rem;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .cookie-btn {
        padding: 8px 18px;
        font-size: 0.86rem;
    }

    /* Footer mobile */
    footer {
        padding: 1.8rem 0 2rem;
        font-size: 0.87rem;
    }

    /* Páginas de conteúdo mobile */
    .page-wrapper {
        margin-top: 100px;
        margin-bottom: 40px;
    }

    .page-wrapper h1 {
        font-size: 1.8rem;
    }

    .page-wrapper h2 {
        font-size: 1.3rem;
    }

    .page-wrapper h3 {
        font-size: 1.1rem;
    }
}

/* ============================================
   RESPONSIVO – TELAS MUITO PEQUENAS
   ============================================ */
@media (max-width: 400px) {
    .logo-img {
        height: 38px;
    }

    .hero {
        padding: 70px 0 60px;
    }

    section {
        padding: 50px 0;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.92rem;
    }

    .service-icon,
    .diff-icon {
        font-size: 1.4rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
    }

    .whatsapp-icon-svg {
        width: 26px;
        height: 26px;
    }

    .page-wrapper h1 {
        font-size: 1.6rem;
    }
}
