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

:root {
    --primary: #111111;
    --secondary: #DD183B;
    --accent: #FF4D6A;
    --light: #1A1A1A;
    --text: #E0E0E0;
    --text-muted: #888888;
    --white: #FFFFFF;
    --border: #2A2A2A;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --font-display: 'Clash Display', sans-serif;
    --font-body: 'Satoshi', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary);
    color: var(--text);
    padding-top: 75px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* Atmospheric gradient orbs */
body::after {
    content: '';
    position: fixed;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(221, 24, 59, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

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

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

/* ============================================
   HEADER
   ============================================ */
.header {
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    background-color: var(--primary);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.menu {
    display: flex;
    align-items: center;
    gap: 32px;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.menu a {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.menu a:hover {
    color: var(--white);
}

.menu a.active {
    color: var(--white);
}

.menu a.active::after {
    width: 100%;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.btn-cta::after {
    display: none !important;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221, 24, 59, 0.4);
    color: var(--white) !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
}

.header-scrolled {
    background-color: rgba(17, 17, 17, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-label.center {
    text-align: center;
}

.section-label.light {
    color: var(--accent);
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 48px;
    line-height: 1.3;
    font-family: var(--font-display);
}

.section-title.light {
    color: var(--white);
}

.section-title.center {
    text-align: center;
}

.highlight {
    color: var(--secondary);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 60px;
    max-width: 1280px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    background-color: #222222;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.dot-blue {
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: inline-block;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--font-display);
    animation: fadeInUp 0.6s ease 100ms forwards;
    opacity: 0;
}

.hero-content p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 200ms forwards;
    opacity: 0;
}

.hero-subtext {
    margin-bottom: 32px !important;
    animation: fadeInUp 0.6s ease 300ms forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 400ms forwards;
    opacity: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary), #B8142F);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221, 24, 59, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--secondary);
    color: var(--text);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: border-color 0.3s, color 0.3s;
}

.btn-outline svg {
    width: 18px;
    height: 18px;
}

.btn-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* Hero Dashboard Cards */
.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
    min-height: 400px;
    overflow: hidden;
    animation: fadeInScale 0.8s ease 300ms forwards;
    opacity: 0;
}

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

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(221, 24, 59, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.dashboard-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
}

.text-muted {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}

.dashboard-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.dashboard-chart {
    width: 100%;
    height: 80px;
}

.dashboard-chart svg {
    width: 100%;
    height: 100%;
}

/* Card Automação */
.card-automacao {
    position: absolute;
    top: -10px;
    right: -30px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    width: 200px;
}

.card-automacao-header {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.automacao-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--primary);
    padding: 4px 0;
}

.step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-dot.green {
    background-color: #22C55E;
}

.step-dot.blue {
    background-color: var(--secondary);
}

.step-dot.yellow {
    background-color: #F59E0B;
}

.step-icon {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    margin-left: auto;
}

/* Card Eficiência */
.card-eficiencia {
    position: absolute;
    bottom: 60px;
    left: -20px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eficiencia-circle {
    position: relative;
    width: 60px;
    height: 60px;
}

.eficiencia-circle svg {
    width: 60px;
    height: 60px;
}

.eficiencia-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 800;
    color: var(--accent);
}

.eficiencia-info {
    display: flex;
    flex-direction: column;
}

.eficiencia-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
}

.eficiencia-sub {
    font-size: 11px;
    color: var(--text-muted);
}

/* Card Infraestrutura */
.card-infra {
    position: absolute;
    bottom: -10px;
    right: 10px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    width: 180px;
}

.card-infra-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.infra-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.infra-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--primary);
}

.infra-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.infra-dot.green {
    background-color: #22C55E;
}

.infra-status {
    margin-left: auto;
    font-weight: 600;
    font-size: 10px;
}

.infra-status.online {
    color: #22C55E;
}

.infra-status.alta {
    color: var(--secondary);
}

.infra-status.atualizado {
    color: var(--accent);
}

/* ============================================
   DIFERENCIAL
   ============================================ */
.diferencial {
    padding: 100px 0;
    background-color: var(--white);
}

.diferencial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.diferencial-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.3;
    font-family: var(--font-display);
}

.diferencial-text p {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.7;
}

.diferencial-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 8px;
}

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

.step-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.step-icon-circle svg {
    width: 26px;
    height: 26px;
    color: var(--secondary);
}

.step-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.step-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.step-arrow {
    display: flex;
    align-items: center;
    padding-top: 28px;
}

.step-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

/* ============================================
   SERVIÇOS
   ============================================ */
.servicos {
    padding: 100px 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.servicos::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(221, 24, 59, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.servico-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid var(--card-accent, var(--secondary));
    overflow: visible;
}

.servico-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-color: var(--card-accent, var(--accent));
}

.servico-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle at 50% 100%, var(--card-accent, var(--secondary)), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 0;
}

.servico-card:hover::after {
    opacity: 0.06;
}

.servico-card.destaque {
    border: 2px solid var(--accent);
}

.badge-destaque {
    position: absolute;
    top: -12px;
    left: 24px;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 12px;
    letter-spacing: 1px;
}

.servico-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background-color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.servico-icon svg {
    width: 28px;
    height: 28px;
    color: var(--secondary);
}

.servico-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.servico-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.link-saiba-mais {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    transition: gap 0.3s;
}

.link-saiba-mais svg {
    width: 16px;
    height: 16px;
}

.link-saiba-mais:hover {
    gap: 10px;
}

/* ============================================
   POR QUE ESCOLHER
   ============================================ */
.porque {
    padding: 100px 0;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.porque::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

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

.porque-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.porque-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: 12px;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.porque-item:hover {
    transform: translateY(-4px);
    background-color: var(--light);
    box-shadow: 0 8px 32px rgba(221, 24, 59, 0.15);
}

.porque-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background-color: rgba(255, 77, 106, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.porque-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.porque-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.porque-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   SOBRE
   ============================================ */
.sobre {
    padding: 0 0 100px;
    background-color: var(--white);
}

/* Sobre - Editorial Layout */
.sobre-editorial {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
}

.sobre-editorial-bg {
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
}

.sobre-editorial-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sobre-editorial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.92) 0%, rgba(17, 17, 17, 0.3) 40%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.sobre-editorial-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 60px 0 50px;
}

.sobre-editorial-content .section-label {
    color: var(--accent) !important;
}

.sobre-editorial-content h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.sobre-editorial-content p {
    font-size: 15px;
    color: var(--text);
    max-width: 640px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid var(--secondary);
    color: var(--text);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline-dark svg {
    width: 18px;
    height: 18px;
}

.btn-outline-dark:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(221, 24, 59, 0.3);
}

.sobre .btn-outline-dark {
    color: var(--primary);
}

.sobre .btn-outline-dark:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(221, 24, 59, 0.3);
}

.sobre-editorial-content .btn-outline-dark {
    color: var(--white);
    border-color: var(--white);
}

.sobre-editorial-content .btn-outline-dark:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    border-top: 1px solid var(--border);
    padding-top: 32px;
}

.stat-block {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    background-color: var(--light);
    border-radius: 12px;
    border-left: 3px solid var(--accent);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-block:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.stat-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    margin-bottom: 6px;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
}

.stat-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   PROCESSO
   ============================================ */
.processo {
    padding: 100px 0;
    background-color: var(--light);
}

.processo .section-title {
    color: var(--secondary);
}

.processo-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
    position: relative;
}

.processo-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 15%;
    right: 15%;
    height: 2px;
    background-color: var(--border);
    z-index: 0;
}

.processo-step {
    text-align: center;
    flex: 1;
    max-width: 200px;
    position: relative;
    z-index: 1;
    padding: 0 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.processo-step:hover {
    transform: translateY(-4px);
}

.processo-step:hover .processo-icon {
    background-color: var(--step-color, var(--secondary));
    border-color: var(--step-color, var(--secondary));
}

.processo-step:hover .processo-icon svg {
    color: var(--white);
}

.processo-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--step-color, var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.processo-icon svg {
    width: 26px;
    height: 26px;
    color: var(--step-color, var(--accent));
}

.processo-numero {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--step-color, var(--accent));
    margin-bottom: 4px;
}

.processo-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.processo-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.processo-arrow {
    display: flex;
    align-items: center;
    padding-top: 22px;
    z-index: 1;
}

.processo-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    padding: 60px 0;
    background-color: #1E1E1E;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(221, 24, 59, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

.cta-final-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-final-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.cta-final-text p {
    font-size: 15px;
    color: var(--text);
}

.cta-final-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid var(--secondary);
    color: var(--text);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    transition: background-color 0.3s, color 0.3s;
}

.btn-whatsapp svg {
    width: 18px;
    height: 18px;
}

.btn-whatsapp:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(221, 24, 59, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 0;
    background-color: var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo img {
    height: 36px;
    margin-bottom: 16px;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.footer-social a:hover {
    background-color: var(--secondary);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.footer-hours p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.hours-time {
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: 16px !important;
}

.btn-whatsapp-sm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    transition: opacity 0.3s;
}

.btn-whatsapp-sm svg {
    width: 16px;
    height: 16px;
}

.btn-whatsapp-sm:hover {
    opacity: 0.9;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    color: var(--text-muted);
}

.hazeflow-link {
    color: var(--accent);
    font-weight: 700;
    transition: color 0.3s;
}

.hazeflow-link:hover {
    color: var(--white);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 60px 40px;
        text-align: center;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 100%;
        min-height: 350px;
    }

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

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

    .step-arrow {
        display: none;
    }

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

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

    .processo-grid {
        flex-wrap: wrap;
        gap: 24px;
    }

    .sobre-editorial-bg {
        height: 400px;
    }

    .sobre-editorial-content h2 {
        font-size: 28px;
    }

    .sobre-editorial-content p {
        font-size: 14px;
        max-width: 100%;
    }

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

    .processo-arrow {
        display: none;
    }

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

    .cta-final-buttons {
        justify-content: center;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-nav {
        flex-direction: column;
        gap: 24px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .header {
        padding: 0 24px;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 40px 24px;
    }

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

    .hero-image {
        display: none;
    }

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

    .step-arrow {
        transform: rotate(90deg);
        justify-content: center;
        padding: 0;
    }

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

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

    .processo-step {
        flex: 1 1 40%;
    }

    .sobre-editorial-bg {
        height: 350px;
    }

    .sobre-editorial-content {
        padding: 40px 0 30px;
    }

    .sobre-editorial-content h2 {
        font-size: 24px;
    }

    .sobre-editorial-content {
        padding-left: 24px;
        padding-right: 24px;
    }

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

    .footer-brand {
        grid-column: 1;
    }

    .footer-nav {
        flex-direction: column;
        gap: 24px;
    }
}

/* ============================================
   RESPONSIVE - SMALL
   ============================================ */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 26px;
    }

    .diferencial-text h2 {
        font-size: 26px;
    }

    .processo-step {
        flex: 1 1 100%;
    }

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

    .cta-final-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-final-buttons a {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    padding: 100px 0 60px;
    background-color: var(--primary);
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.page-hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SERVIÇO DETALHE
   ============================================ */
.servico-detalhe {
    padding: 80px 0;
    background-color: var(--white);
}

.servico-detalhe.alt {
    background-color: var(--light);
}

.servico-detalhe.alt .servico-detalhe-content h2,
.servico-detalhe.alt .servico-detalhe-content p,
.servico-detalhe.alt .servico-lista li {
    color: var(--text);
}

.servico-detalhe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.servico-detalhe-grid.reverse {
    direction: rtl;
}

.servico-detalhe-grid.reverse > * {
    direction: ltr;
}

.servico-icon-lg {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background-color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.servico-icon-lg svg {
    width: 36px;
    height: 36px;
    color: var(--secondary);
}

.servico-detalhe-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.servico-detalhe-content p {
    font-size: 16px;
    color: var(--primary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.servico-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.servico-lista li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--primary);
}

.servico-lista svg {
    width: 18px;
    height: 18px;
    color: #22C55E;
    flex-shrink: 0;
}

.servico-detalhe-visual {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.servico-detalhe-visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* ============================================
   SOBRE - HISTÓRIA
   ============================================ */
.sobre-historia {
    padding: 80px 0;
    background-color: var(--white);
}

.sobre-historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-historia-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.3;
    font-family: var(--font-display);
}

.sobre-historia-text p {
    font-size: 15px;
    color: var(--primary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.sobre-historia-visual {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sobre-historia-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* ============================================
   SOBRE - VALORES
   ============================================ */
.sobre-valores {
    padding: 80px 0;
    background-color: var(--light);
}

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

.valor-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.valor-card:hover {
    transform: translateY(-4px);
}

.valor-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.valor-icon svg {
    width: 28px;
    height: 28px;
    color: var(--secondary);
}

.valor-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.valor-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   SOBRE - NÚMEROS
   ============================================ */
.sobre-numeros {
    padding: 80px 0;
    background-color: var(--primary);
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.numero-item {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.numero-item:hover {
    transform: translateY(-4px);
}

.numero-valor {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.numero-label {
    font-size: 15px;
    color: var(--text-muted);
}

/* ============================================
   PORTFÓLIO
   ============================================ */
.portfolio-filtros {
    padding: 40px 0 0;
    background-color: var(--light);
}

.filtros {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filtro-btn {
    padding: 10px 24px;
    border: 2px solid var(--border);
    border-radius: 30px;
    background: var(--white);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filtro-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.filtro-btn.active {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.portfolio-grid-section {
    padding: 48px 0 80px;
    background-color: var(--light);
}

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

.portfolio-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-4px);
}

.portfolio-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
}

.portfolio-categoria {
    background-color: var(--secondary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.portfolio-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   CONTATO
   ============================================ */
.contato-section {
    padding: 80px 0;
    background-color: var(--light);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

.contato-form {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contato-form h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.contato-form > p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.form-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: slideDown 0.3s ease;
}

.form-alert.success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.form-alert.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.form-alert i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    color: var(--primary);
    background-color: #FAFAFA;
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #AAAAAA;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #CCCCCC;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(221, 24, 59, 0.12);
    background-color: var(--white);
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
    box-shadow: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    cursor: pointer;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.full-width {
    width: 100%;
    justify-content: center;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background-color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--secondary);
}

.info-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.info-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   MAPA
   ============================================ */
.mapa-section {
    height: 300px;
    background-color: var(--border);
}

.mapa-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
}

.mapa-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--secondary);
}

.mapa-placeholder p {
    font-size: 16px;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE - INNER PAGES
   ============================================ */
@media (max-width: 1024px) {
    .servico-detalhe-grid,
    .servico-detalhe-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .sobre-historia-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .valores-grid,
    .numeros-grid {
        grid-template-columns: 1fr;
    }

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

    .sobre-stats {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    box-shadow: none;
    z-index: 999;
    transition: transform 0.3s, background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

@media (hover: hover) {
    .whatsapp-float:hover {
        transform: scale(1.1);
        background-color: var(--secondary);
        color: var(--white);
        box-shadow: 0 6px 28px rgba(221, 24, 59, 0.4);
    }
}

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

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 44px;
    height: 44px;
    background-color: var(--primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background-color 0.3s;
    z-index: 998;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

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

.back-to-top:hover {
    background-color: var(--secondary);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   MOBILE MENU SMOOTH TRANSITION
   ============================================ */

@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
        pointer-events: none;
        z-index: 1001;
    }

    .menu.active {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
    }

    .menu.active a {
        color: var(--primary);
    }
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
.depoimentos {
    padding: 100px 0;
    background-color: var(--white);
}

.depoimentos .section-title {
    color: var(--primary);
}

.depoimentos .section-label {
    color: var(--primary);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.depoimento-card {
    background-color: var(--light);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: transform 0.3s;
    border-left: 3px solid var(--secondary);
}

.depoimento-card:hover {
    transform: translateY(-4px);
}

.depoimento-card::before {
    content: '\201C';
    font-size: 60px;
    color: var(--accent);
    position: absolute;
    top: 16px;
    left: 24px;
    line-height: 1;
    opacity: 0.3;
}

.depoimento-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.depoimento-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.depoimento-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.depoimento-info p {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }
}

/* ============================================
   FOCUS VISIBLE - ACESSIBILIDADE
   ============================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

.menu a:focus-visible {
    outline-offset: 4px;
}

.btn-cta:focus-visible,
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.btn-whatsapp:focus-visible,
.btn-whatsapp-sm:focus-visible,
.btn-outline-dark:focus-visible,
.filtro-btn:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(221, 24, 59, 0.2);
}

/* ============================================
    PREFERS REDUCED MOTION
   ============================================ */
@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;
    }

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================
   HERO CARDS OVERFLOW
   ============================================ */

/* ============================================
   ERROR PAGE (404)
   ============================================ */
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 75px);
    text-align: center;
    padding: 40px 24px;
    background-color: var(--primary);
}

.error-code {
    font-size: 140px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
    font-family: var(--font-display);
}

.error-code::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 2px;
}

.error-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    margin-top: 24px;
    font-family: var(--font-display);
}

.error-text {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 460px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.error-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.error-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.error-icon svg {
    width: 36px;
    height: 36px;
    color: var(--secondary);
}

/* ============================================
   ERROR PAGE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .error-code {
        font-size: 80px;
    }

    .error-title {
        font-size: 22px;
    }

    .error-text {
        font-size: 15px;
    }

    .error-icon {
        width: 64px;
        height: 64px;
    }

    .error-icon svg {
        width: 28px;
        height: 28px;
    }
}