/* ================================================================
   CARTÓRIO DE REGISTRO DE IMÓVEIS E ANEXOS — NUPORANGA/SP
   Design profissional · Paleta: Vermelho #88020a · Verde #1e5239 · Dourado #a97623
   ================================================================ */

:root {
    --vermelho: #88020a;
    --vermelho-escuro: #6a0108;
    --vermelho-claro: #a5121b;
    --verde: #1e5239;
    --verde-escuro: #143a28;
    --verde-claro: #2a6e4d;
    --dourado: #a97623;
    --dourado-claro: #d4a04a;
    --dourado-suave: #f5e6c8;
    --branco: #ffffff;
    --cinza-50: #fafafa;
    --cinza-100: #f5f5f5;
    --cinza-200: #e8e8e8;
    --cinza-300: #d4d4d4;
    --texto: #1a1a1a;
    --texto-medio: #444444;
    --texto-suave: #6b6b6b;
    --sombra-sm: 0 2px 8px rgba(0,0,0,0.06);
    --sombra-md: 0 8px 30px rgba(0,0,0,0.08);
    --sombra-lg: 0 20px 60px rgba(0,0,0,0.10);
    --sombra-xl: 0 32px 80px rgba(0,0,0,0.12);
    --sombra-card: 0 4px 20px rgba(136,2,10,0.06);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--texto);
    background: var(--branco);
    overflow-x: hidden;
    padding-top: 90px;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

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

.container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.section-space {
    padding: 120px 0;
}

/* ================================================================
   ANIMAÇÕES KEYFRAMES
   ================================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

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

@keyframes slideWidth {
    from { width: 0; }
    to { width: 60px; }
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes borderDraw {
    0% { clip-path: inset(0 100% 0 0); }
    100% { clip-path: inset(0 0 0 0); }
}

@keyframes heroParticle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
    10% { opacity: 1; transform: translateY(-20px) scale(1); }
    90% { opacity: 1; transform: translateY(-180px) scale(0.6); }
}

/* ================================================================
   REVEAL SYSTEM
   ================================================================ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* ================================================================
   HEADER
   ================================================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(136,2,10,0.06);
    transition: all 0.35s ease;
}

header.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--vermelho), var(--dourado), var(--verde), var(--dourado), var(--vermelho));
    background-size: 200% 100%;
    animation: shimmer 6s ease infinite;
}

.menu {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: transform var(--transition-fast);
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 62px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(136,2,10,0.12));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong {
    font-size: 15px;
    color: var(--vermelho);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.logo-text span {
    font-size: 11px;
    color: var(--texto-suave);
    font-weight: 500;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

nav a {
    position: relative;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--texto-medio);
    letter-spacing: 0.02em;
    border-radius: 999px;
    transition: all var(--transition-fast);
}

nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    /*background: var(--vermelho);*/
    opacity: 0;
    transform: scale(0.85);
    transition: all var(--transition-fast);
}

nav a:hover {
    color: var(--branco);
}

nav a:hover::before {
    opacity: 1;
    transform: scale(1);
}

nav a span {
    position: relative;
    z-index: 1;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--vermelho);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
    position: relative;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #0d0102 0%, #1a0305 40%, #120204 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(136,2,10,0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(169,118,35,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(30,82,57,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--dourado-claro);
    opacity: 0;
}

.hero-particle:nth-child(1) { left: 10%; bottom: 0; animation: heroParticle 8s 0s infinite; }
.hero-particle:nth-child(2) { left: 25%; bottom: 0; animation: heroParticle 10s 1s infinite; }
.hero-particle:nth-child(3) { left: 40%; bottom: 0; animation: heroParticle 7s 2s infinite; }
.hero-particle:nth-child(4) { left: 55%; bottom: 0; animation: heroParticle 9s 0.5s infinite; }
.hero-particle:nth-child(5) { left: 70%; bottom: 0; animation: heroParticle 11s 3s infinite; }
.hero-particle:nth-child(6) { left: 85%; bottom: 0; animation: heroParticle 8s 1.5s infinite; }
.hero-particle:nth-child(7) { left: 15%; bottom: 0; animation: heroParticle 12s 4s infinite; }
.hero-particle:nth-child(8) { left: 60%; bottom: 0; animation: heroParticle 9s 2.5s infinite; }

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.hero-glow-1 {
    top: -100px;
    right: -100px;
    background: rgba(136,2,10,0.2);
    animation: pulse 8s ease infinite;
}

.hero-glow-2 {
    bottom: -150px;
    left: -100px;
    background: rgba(30,82,57,0.15);
    animation: pulse 10s ease 2s infinite;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: var(--branco);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(169,118,35,0.15);
    border: 1px solid rgba(169,118,35,0.3);
    font-size: 13px;
    font-weight: 600;
    color: var(--dourado-claro);
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-badge i {
    font-size: 14px;
}

.hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s 0.2s ease both;
}

.hero h1 .text-gradient {
    background: linear-gradient(135deg, var(--dourado-claro), #f0d48a, var(--dourado));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    max-width: 560px;
    font-size: 17px;
    line-height: 1.85;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s 0.6s ease both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    animation: fadeInUp 0.8s 0.8s ease both;
}

.hero-stat {
    position: relative;
    padding: 20px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    transition: all var(--transition);
}

.hero-stat:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(169,118,35,0.3);
    transform: translateY(-4px);
}

.hero-stat .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--dourado-claro);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat .stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.hero-panel {
    position: relative;
    animation: fadeInRight 1s 0.4s ease both;
}

.hero-card {
    position: relative;
    padding: 40px;
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    color: var(--branco);
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vermelho), var(--dourado), var(--verde));
}

.hero-card-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(136,2,10,0.2);
    border: 1px solid rgba(136,2,10,0.3);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.hero-card h2 {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 28px;
    font-weight: 700;
}

.hero-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-info-item {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all var(--transition);
}

.hero-info-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.hero-info-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 18px;
    background: linear-gradient(135deg, rgba(169,118,35,0.2), rgba(169,118,35,0.1));
    color: var(--dourado-claro);
}

.hero-info-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--branco);
}

.hero-info-item span {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* ================================================================
   BOTÕES
   ================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--vermelho), var(--vermelho-claro));
    color: var(--branco);
    box-shadow: 0 8px 30px rgba(136,2,10,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(136,2,10,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--branco);
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
    color: #1a0305;
    box-shadow: 0 8px 30px rgba(169,118,35,0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(169,118,35,0.4);
}

.btn-dark {
    background: linear-gradient(135deg, var(--vermelho), var(--vermelho-escuro));
    color: var(--branco);
    box-shadow: 0 8px 30px rgba(136,2,10,0.25);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(136,2,10,0.35);
}

/* ================================================================
   FAIXA DE DESTAQUES
   ================================================================ */
.highlight-strip {
    position: relative;
    padding: 0;
    background: var(--branco);
    z-index: 10;
}

.highlight-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: -40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
    background: var(--branco);
    border: 1px solid var(--cinza-200);
    transition: all var(--transition);
}

.highlight-item:first-child {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.highlight-item:last-child {
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.highlight-item:hover {
    box-shadow: var(--sombra-md);
    transform: translateY(-4px);
    z-index: 2;
}

.highlight-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 22px;
    flex-shrink: 0;
}

.highlight-icon.red {
    background: rgba(136,2,10,0.08);
    color: var(--vermelho);
}

.highlight-icon.green {
    background: rgba(30,82,57,0.08);
    color: var(--verde);
}

.highlight-icon.gold {
    background: rgba(169,118,35,0.08);
    color: var(--dourado);
}

.highlight-text strong {
    display: block;
    font-size: 15px;
    color: var(--texto);
    margin-bottom: 2px;
}

.highlight-text span {
    font-size: 13px;
    color: var(--texto-suave);
}

/* ================================================================
   SECTION TITLES
   ================================================================ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header.left {
    text-align: left;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.tag-red {
    background: rgba(136,2,10,0.06);
    color: var(--vermelho);
    border: 1px solid rgba(136,2,10,0.12);
}

.tag-green {
    background: rgba(30,82,57,0.06);
    color: var(--verde);
    border: 1px solid rgba(30,82,57,0.12);
}

.tag-gold {
    background: rgba(169,118,35,0.06);
    color: var(--dourado);
    border: 1px solid rgba(169,118,35,0.12);
}

.tag-light {
    background: rgba(255,255,255,0.1);
    color: var(--dourado-claro);
    border: 1px solid rgba(255,255,255,0.15);
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
    color: var(--texto);
    margin-bottom: 16px;
}

.section-header h2 .accent {
    color: var(--vermelho);
}

.section-header p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--texto-suave);
    max-width: 640px;
    margin: 0 auto;
}

.section-header.left p {
    margin: 0;
}

.section-line {
    display: block;
    width: 60px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--vermelho), var(--dourado));
    margin: 20px auto 0;
}

.section-header.left .section-line {
    margin-left: 0;
}

.section-header.light h2 {
    color: var(--branco);
}

.section-header.light p {
    color: rgba(255,255,255,0.7);
}

.section-header.light .section-line {
    background: linear-gradient(90deg, var(--dourado-claro), rgba(255,255,255,0.3));
}

/* ================================================================
   APRESENTAÇÃO / SOBRE
   ================================================================ */
.about {
    position: relative;
    background: var(--branco);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--sombra-xl);
}

.about-img-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vermelho), var(--dourado), var(--verde));
    z-index: 2;
}

.about-img-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.03);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vermelho), var(--vermelho-escuro));
    color: var(--branco);
    box-shadow: 0 12px 40px rgba(136,2,10,0.3);
    animation: float 6s ease infinite;
    z-index: 3;
}

.about-badge span:first-child {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.about-badge span:last-child {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    opacity: 0.9;
    text-align: center;
    line-height: 1.3;
    margin-top: 4px;
}

.about-corner-decor {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(169,118,35,0.2);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.about-text h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--texto);
    margin-bottom: 20px;
}

.about-text h2 .accent {
    color: var(--vermelho);
}

.about-divider {
    width: 60px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--vermelho), var(--dourado));
    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--texto-suave);
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--cinza-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--cinza-200);
    transition: all var(--transition);
}

.about-feature:hover {
    background: var(--branco);
    box-shadow: var(--sombra-sm);
    transform: translateX(6px);
}

.about-feature i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 16px;
    flex-shrink: 0;
    background: rgba(136,2,10,0.08);
    color: var(--vermelho);
}

.about-feature span {
    font-size: 14px;
    font-weight: 600;
    color: var(--texto);
}

/* ================================================================
   SERVIÇOS
   ================================================================ */
.services {
    position: relative;
    background: var(--cinza-50);
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cinza-200), transparent);
}

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

.service-card {
    position: relative;
    padding: 36px 28px;
    background: var(--branco);
    border-radius: var(--radius-lg);
    border: 1px solid var(--cinza-200);
    overflow: hidden;
    transition: all var(--transition);
    cursor: default;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--vermelho), var(--dourado));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-lg);
    border-color: transparent;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 20px;
    font-size: 26px;
    background: linear-gradient(135deg, var(--vermelho), var(--vermelho-claro));
    color: var(--branco);
    transition: all var(--transition);
    box-shadow: 0 8px 20px rgba(136,2,10,0.15);
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 12px 30px rgba(136,2,10,0.25);
}

.service-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--texto-suave);
}

/* Variações de cor dos ícones */
.service-icon.green {
    background: linear-gradient(135deg, var(--verde), var(--verde-claro));
    box-shadow: 0 8px 20px rgba(30,82,57,0.15);
}

.service-card:hover .service-icon.green {
    box-shadow: 0 12px 30px rgba(30,82,57,0.25);
}

.service-icon.gold {
    background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
    box-shadow: 0 8px 20px rgba(169,118,35,0.15);
}

.service-card:hover .service-icon.gold {
    box-shadow: 0 12px 30px rgba(169,118,35,0.25);
}

/* ================================================================
   ETAPAS / PROCESSO
   ================================================================ */
.process {
    position: relative;
    background: var(--branco);
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-grid::before {
    content: "";
    position: absolute;
    top: 52px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--vermelho), var(--dourado), var(--verde), var(--dourado));
    z-index: 0;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 0 20px;
    z-index: 1;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    position: relative;
    transition: all var(--transition);
}

.step-number::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(136,2,10,0.2);
    animation: rotateGlow 20s linear infinite;
}

.step-number.red {
    background: linear-gradient(135deg, var(--vermelho), var(--vermelho-claro));
    color: var(--branco);
    box-shadow: 0 8px 24px rgba(136,2,10,0.25);
}

.step-number.gold {
    background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
    color: #1a0305;
    box-shadow: 0 8px 24px rgba(169,118,35,0.25);
}

.step-number.green {
    background: linear-gradient(135deg, var(--verde), var(--verde-claro));
    color: var(--branco);
    box-shadow: 0 8px 24px rgba(30,82,57,0.25);
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--texto-suave);
}

/* ================================================================
   SERP — SERVIÇOS ELETRÔNICOS
   ================================================================ */
.serp {
    position: relative;
    background: var(--cinza-50);
}

.serp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.serp-group {
    background: var(--branco);
    border-radius: var(--radius-lg);
    border: 1px solid var(--cinza-200);
    overflow: hidden;
    transition: all var(--transition);
}

.serp-group:hover {
    box-shadow: var(--sombra-md);
}

.serp-group-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--cinza-200);
}

.serp-group-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--texto);
}

.serp-group-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
    flex-shrink: 0;
}

.serp-group-icon.red {
    background: rgba(136,2,10,0.08);
    color: var(--vermelho);
}

.serp-group-icon.green {
    background: rgba(30,82,57,0.08);
    color: var(--verde);
}

.serp-group-icon.gold {
    background: rgba(169,118,35,0.08);
    color: var(--dourado);
}

.serp-list {
    list-style: none;
    padding: 8px 0;
}

.serp-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--texto-medio);
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.serp-list li a:hover {
    background: var(--cinza-50);
    color: var(--vermelho);
    border-left-color: var(--vermelho);
}

.serp-list li a > i:first-child {
    width: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--texto-suave);
    flex-shrink: 0;
    transition: color var(--transition-fast);
}

.serp-list li a:hover > i:first-child {
    color: var(--vermelho);
}

.serp-list li a span {
    margin-left: auto;
    opacity: 0;
    transform: translateX(-6px);
    transition: all var(--transition-fast);
    color: var(--vermelho);
    font-size: 12px;
}

.serp-list li a:hover span {
    opacity: 1;
    transform: translateX(0);
}

.serp-cta {
    text-align: center;
    margin-top: 40px;
}

/* ================================================================
   COMPROMISSO
   ================================================================ */
.commitment {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0102 0%, var(--vermelho-escuro) 50%, #0d0102 100%);
}

.commitment::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(169,118,35,0.12), transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(30,82,57,0.08), transparent 50%);
    pointer-events: none;
}

.commitment::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.commitment .container {
    position: relative;
    z-index: 1;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.commitment-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--branco);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dourado-claro), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.commitment-card:hover::before {
    opacity: 1;
}

.commitment-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-6px);
    border-color: rgba(169,118,35,0.2);
}

.commitment-card i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 20px;
    font-size: 24px;
    background: linear-gradient(135deg, rgba(169,118,35,0.2), rgba(169,118,35,0.08));
    color: var(--dourado-claro);
}

.commitment-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.commitment-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
}

/* ================================================================
   CONTATO
   ================================================================ */
.contact {
    background: var(--branco);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: var(--branco);
    border: 1px solid var(--cinza-200);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vermelho), var(--dourado));
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card:hover::after {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sombra-lg);
    border-color: transparent;
}

.contact-card i {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 20px;
    font-size: 24px;
    background: linear-gradient(135deg, var(--vermelho), var(--vermelho-claro));
    color: var(--branco);
    box-shadow: 0 8px 20px rgba(136,2,10,0.15);
    transition: all var(--transition);
}

.contact-card:hover i {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(136,2,10,0.25);
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 15px;
    color: var(--texto-medio);
    margin-bottom: 4px;
}

.contact-card span {
    font-size: 13px;
    color: var(--texto-suave);
    display: block;
    line-height: 1.7;
}

.contact-card a {
    color: var(--vermelho);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.contact-card a:hover {
    color: var(--vermelho-escuro);
}

.contact-cta {
    padding: 36px 40px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--vermelho), var(--vermelho-escuro));
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 20px 60px rgba(136,2,10,0.2);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(169,118,35,0.15);
    filter: blur(60px);
    pointer-events: none;
}

.contact-cta-text {
    position: relative;
    z-index: 1;
}

.contact-cta strong {
    display: block;
    font-size: 22px;
    margin-bottom: 8px;
}

.contact-cta p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
    position: relative;
    background: #0d0102;
    color: var(--branco);
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(136,2,10,0.1), transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(169,118,35,0.06), transparent 50%);
    pointer-events: none;
}

footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--vermelho), var(--dourado), var(--verde), var(--dourado), var(--vermelho));
}

.footer-main {
    position: relative;
    z-index: 1;
    padding: 72px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 48px;
    align-items: start;
}

.footer-brand-section {
    padding-right: 32px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.footer-logo-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.footer-logo-text span {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.footer-brand-section p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--vermelho);
    border-color: var(--vermelho);
    color: var(--branco);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: all var(--transition-fast);
}

.footer-links a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dourado);
    opacity: 0;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--dourado-claro);
    transform: translateX(6px);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-map iframe {
    width: 100%;
    height: 220px;
    border: none;
    display: block;
    filter: grayscale(0.3) contrast(1.1);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: var(--dourado-claro);
    font-weight: 600;
}

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--vermelho), var(--vermelho-claro));
    color: var(--branco);
    font-size: 20px;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 24px rgba(136,2,10,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(136,2,10,0.4);
}

/* ================================================================
   WHATSAPP FLOAT (opcional)
   ================================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25D366;
    color: var(--branco);
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
    z-index: 999;
    transition: all var(--transition);
    animation: float 4s ease infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37,211,102,0.45);
}

/* ================================================================
   PÁGINA DE PRIVACIDADE / LGPD
   ================================================================ */
.privacy-hero {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #0d0102 0%, var(--vermelho-escuro) 50%, #0d0102 100%);
    color: var(--branco);
    overflow: hidden;
}

.privacy-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(169,118,35,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(30,82,57,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.privacy-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vermelho), var(--dourado), var(--verde));
}

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

.privacy-hero h1 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0 16px;
}

.privacy-hero p {
    max-width: 700px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
}

.privacy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.privacy-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    font-weight: 600;
}

.privacy-meta span i {
    color: var(--dourado-claro);
}

.privacy-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
    align-items: start;
}

.privacy-main {
    display: grid;
    gap: 24px;
}

.privacy-card {
    padding: 32px;
    background: var(--branco);
    border-radius: var(--radius-lg);
    border: 1px solid var(--cinza-200);
    transition: box-shadow var(--transition);
}

.privacy-card:hover {
    box-shadow: var(--sombra-md);
}

.privacy-card h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 20px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 16px;
    line-height: 1.3;
}

.privacy-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--vermelho), var(--vermelho-claro));
    color: var(--branco);
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.privacy-card p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--texto-medio);
    margin-bottom: 12px;
    text-align: justify;
}

.privacy-card p:last-child {
    margin-bottom: 0;
}

.privacy-card ul {
    margin: 12px 0 0;
    padding-left: 20px;
}

.privacy-card li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--texto-medio);
    margin-bottom: 8px;
    text-align: justify;
}

.privacy-card li strong {
    color: var(--texto);
}

.privacy-notice {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--dourado);
    background: rgba(169,118,35,0.06);
    margin-top: 16px;
}

.privacy-notice i {
    color: var(--dourado);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.privacy-notice p {
    margin: 0;
    font-size: 14px;
}

.privacy-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    background: rgba(136,2,10,0.06);
    border: 1px solid rgba(136,2,10,0.12);
    color: var(--vermelho);
    font-weight: 700;
    font-size: 15px;
    transition: all var(--transition-fast);
    margin-top: 8px;
}

.privacy-email:hover {
    background: var(--vermelho);
    color: var(--branco);
    border-color: var(--vermelho);
}

.privacy-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 20px;
    align-content: start;
}

.privacy-sidebar-card {
    padding: 24px;
    background: var(--branco);
    border-radius: var(--radius-lg);
    border: 1px solid var(--cinza-200);
}

.privacy-sidebar-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--vermelho), var(--vermelho-claro));
    color: var(--branco);
    font-size: 20px;
    margin-bottom: 16px;
}

.privacy-sidebar-card strong {
    display: block;
    font-size: 17px;
    color: var(--texto);
    margin-bottom: 8px;
}

.privacy-sidebar-card p {
    font-size: 14px;
    color: var(--texto-suave);
    line-height: 1.7;
    margin-bottom: 14px;
}

.privacy-toc strong {
    margin-bottom: 14px;
}

.privacy-toc a {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    margin: 0 -12px;
    border-bottom: 1px solid var(--cinza-200);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--texto-medio);
    transition: all var(--transition-fast);
}

.privacy-toc a:last-child {
    border-bottom: none;
}

.privacy-toc a:hover {
    color: #ffffff;
    background: var(--vermelho);
    border-bottom-color: transparent;
}

/* ================================================================
   RESPONSIVIDADE
   ================================================================ */
@media (max-width: 1100px) {
    .privacy-grid {
        grid-template-columns: 1fr;
    }

    .privacy-sidebar {
        position: static;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero {
        min-height: auto;
        padding: 60px 0 80px;
    }

    .hero-stats {
        max-width: 500px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-badge {
        bottom: 20px;
        right: 20px;
    }

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

    .serp-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .process-grid::before {
        display: none;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .highlight-strip-inner {
        grid-template-columns: 1fr;
        margin-top: -20px;
    }

    .highlight-item:first-child,
    .highlight-item:last-child {
        border-radius: var(--radius-md);
    }

    .highlight-item {
        border-radius: var(--radius-md);
    }
}

@media (max-width: 860px) {
    body {
        padding-top: 76px;
    }

    .menu {
        min-height: 76px;
        position: relative;
    }

    .logo-img {
        height: 48px;
    }

    .logo-text {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--branco);
        border-bottom: 1px solid var(--cinza-200);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    nav.open {
        max-height: 400px;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 4px;
    }

    nav a {
        display: block;
        padding: 14px 20px;
        border-radius: var(--radius-sm);
    }

    nav a::before {
        border-radius: var(--radius-sm);
    }

    .section-space {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .hero-stat .stat-number {
        font-size: 24px;
    }

    .hero-info-grid {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .about-img-wrapper img {
        height: 380px;
    }

    .contact-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .container {
        width: calc(100% - 32px);
    }

    .section-space {
        padding: 64px 0;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .hero-stat {
        padding: 14px 8px;
    }

    .hero-stat .stat-number {
        font-size: 20px;
    }

    .hero-stat .stat-label {
        font-size: 10px;
    }

    .hero-card {
        padding: 24px;
    }

    .service-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .about-badge {
        width: 100px;
        height: 100px;
    }

    .about-badge span:first-child {
        font-size: 26px;
    }

    .about-corner-decor {
        display: none;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .contact-cta {
        padding: 28px 24px;
    }

    .contact-cta strong {
        font-size: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }
}
