/* ============================================
   SYNCHRO ASSESSORIA CONTÁBIL — GLOBAL STYLES
   Premium Design System
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Paleta Principal: Verde-Petróleo */
    --primary: #00A8C0;
    --primary-dark: #008A9E;
    --primary-light: #00C8E0;
    --primary-glow: rgba(0, 93, 111, 0.18);
    --primary-glow-strong: rgba(0, 93, 111, 0.35);
    /* Cores de suporte */
    --secondary: #C9A84C;
    --secondary-dark: #B8943F;
    --secondary-light: #E0C76A;
    --accent: #005D6F;
    /* Cores de status */
    --danger: #ff6b6b;
    --danger-dark: #ff4757;
    --success: #4cc9f0;
    --success-dark: #3a86ff;
    --warning: #ff9f1c;
    --info: #4cc9f0;
    /* Paleta de fundos — Verde-Petróleo */
    --dark: #001E28;
    --dark-100: #002B38;
    --dark-200: #003848;
    --dark-300: #004A5A;
    --dark-400: #005D6F;
    /* Tons de cinza para texto */
    --gray-100: #F5F1E8;
    --gray-200: #E8EDF1;
    --gray-300: #C5CDD8;
    --gray-400: #8892A0;
    --gray-500: #6B7A8D;
    --white: #FFFFFF;
    /* Texto principal */
    --text-dark: #FFFFFF;
    --text-body: #C5CDD8;
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #00A8C0 0%, #005D6F 100%);
    --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #E0C76A 100%);
    --gradient-danger: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    --gradient-success: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
    --gradient-warning: linear-gradient(135deg, #ff9f1c 0%, #ff6b35 100%);
    --gradient-info: linear-gradient(135deg, #4cc9f0 0%, #89cff0 100%);
    --gradient-dark: linear-gradient(180deg, #001E28 0%, #003848 100%);
    --gradient-card: linear-gradient(145deg, #004A5A 0%, #003848 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(0, 93, 111, 0.25);
    --shadow-glow-strong: 0 0 50px rgba(0, 93, 111, 0.4);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --container: 1200px;
    --container-narrow: 900px;
    --header-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background: var(--gray-100);
    color: #333333;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* --- Container --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.container--narrow {
    max-width: var(--container-narrow);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    font-weight: 600;
}

p {
    color: var(--gray-500);
    line-height: 1.75;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* --- Section Spacing --- */
.section {
    padding: clamp(80px, 10vw, 120px) 0;
}

.section--dark {
    background: var(--dark-400);
    color: var(--white);
}

.section--dark-alt {
    background: var(--gray-100);
    color: var(--dark);
}

.section--dark-alt .section-header h2 {
    color: var(--dark);
}

.section--dark-alt .section-header p {
    color: var(--gray-500);
}

.section--dark-alt .timeline__content h3 {
    color: var(--dark-100);
}

.section--dark-alt .timeline__content p {
    color: var(--gray-500);
}

.section--light .section-header h2,
.section--card-bg .section-header h2 {
    color: var(--dark);
}

.section--light .section-header p,
.section--card-bg .section-header p {
    color: var(--gray-500);
}

.section--card-bg {
    background: var(--white);
}

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

.section--gradient {
    background: var(--gradient-primary);
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(48px, 6vw, 64px);
}

.section-header .section-badge {
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: var(--white);
}

.section-header p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--gray-300);
}

/* --- Badge --- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--primary-glow);
    border: 1px solid var(--primary-glow-strong);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-badge--gold {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--secondary);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

.btn--secondary {
    background: transparent;
    color: var(--dark-400);
    border: 1.5px solid rgba(0, 93, 111, 0.4);
}

.btn--secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-glow);
}

.btn--gold {
    background: var(--gradient-gold);
    color: var(--dark);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

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

.btn--dark:hover {
    background: var(--dark-200);
    transform: translateY(-2px);
}

.btn--large {
    padding: 18px 42px;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* --- Cards --- */
.card {
    background: var(--white);
    border: 1px solid rgba(0, 93, 111, 0.12);
    border-radius: var(--radius-xl);
    padding: clamp(24px, 3vw, 36px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-glow-strong);
    box-shadow: var(--shadow-glow);
}

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

/* --- Grid Layouts --- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0s);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
    transition-delay: var(--delay, 0s);
}

.fade-in.visible {
    opacity: 1;
}

.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0s);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0s);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Header / Navbar --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition);
}

.header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.header.scrolled::after {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(0, 0, 0, 0.12);
}

.header__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.header__logo img {
    height: 42px;
    width: auto;
}

.header__logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark-400);
    letter-spacing: -0.03em;
}

.header__logo-text span {
    color: var(--primary);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.header__nav-link {
    padding: 8px 12px;
    color: var(--dark-400);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    position: relative;
}

.header__nav-link:hover,
.header__nav-link.active {
    color: var(--dark-400);
    background: rgba(0, 93, 111, 0.08);
}

.header__nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.header__login {
    padding: 10px 20px;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    transition: var(--transition);
    margin-right: 12px;
}

.header__login:hover {
    background: var(--primary);
    color: var(--dark);
}

.header__cta {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.header__cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    z-index: 1001;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark-400);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.mobile-nav a:hover {
    color: var(--primary);
    background: var(--primary-glow);
}

.mobile-nav__login {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 14px 32px !important;
    border-radius: var(--radius-full) !important;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(var(--header-height) + 40px) 0 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(0, 168, 133, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 30%, rgba(9, 132, 227, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 50% 80%, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
}

.hero__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__content {
    max-width: 600px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-glow);
    border: 1px solid var(--primary-glow-strong);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero__badge svg {
    width: 16px;
    height: 16px;
}

.hero__title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--dark);
}

.hero__description {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.7;
    color: #555555;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero__stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hero__stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero__stat-label {
    font-size: 0.85rem;
    color: #777777;
}

/* Hero Visual */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero__visual-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-xl);
    padding: 28px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-xl);
}

.hero__visual-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hero__visual-dots {
    display: flex;
    gap: 6px;
}

.hero__visual-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero__visual-dots span:nth-child(1) { background: #FF5F56; }
.hero__visual-dots span:nth-child(2) { background: #FFBD2E; }
.hero__visual-dots span:nth-child(3) { background: #27C93F; }

.hero__visual-title {
    font-size: 0.85rem;
    color: var(--dark);
    font-weight: 600;
}

.hero__visual-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 140px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hero__visual-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 6px 6px 0 0;
    height: var(--h);
    animation: barGrow 0.8s ease forwards;
    animation-delay: var(--d);
    opacity: 0;
}

@keyframes barGrow {
    from { height: 0; opacity: 0; }
    to { height: var(--h); opacity: 0.85; }
}

.hero__visual-metrics {
    display: flex;
    justify-content: space-between;
}

.hero__visual-metric-label {
    font-size: 0.8rem;
    color: #777777;
}

.hero__visual-metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

/* Floating elements */
.hero__floating {
    position: absolute;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.hero__floating--top {
    top: -65px;
    right: -45px;
    animation-delay: 0s;
}

.hero__floating--bottom {
    bottom: -50px;
    left: -45px;
    animation-delay: 0s;
}

.hero__floating-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-glow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__floating-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.hero__floating-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

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

/* --- Trust Bar --- */
.trust-bar {
    padding: 48px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.trust-bar__label {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #777777;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.trust-bar__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-bar__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.5;
    transition: var(--transition);
}

.trust-bar__logo:hover {
    opacity: 0.8;
    color: var(--gray-300);
}

.trust-bar__logo svg {
    width: 24px;
    height: 24px;
}

/* --- Service Cards --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    padding: clamp(28px, 3vw, 36px);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    background: var(--primary-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--primary);
}

.service-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-card__icon svg {
    color: var(--dark);
}

.service-card__title {
    margin-bottom: 0.75rem;
    color: var(--dark-400);
}

.service-card__text {
    font-size: 0.925rem;
    color: #444444;
    line-height: 1.6;
}
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-card__link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.service-card__link:hover svg {
    transform: translateX(4px);
}

/* --- Feature Cards (Why Choose Us) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    gap: 1.25rem;
    padding: clamp(24px, 3vw, 32px);
    background: var(--dark-200);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-glow-strong);
    background: var(--dark-300);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.feature-card__title {
    color: var(--white);
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}

.feature-card__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-300);
}

/* --- Timeline / Steps --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-glow-strong));
}

.timeline__step {
    display: flex;
    gap: 2rem;
    padding-bottom: 3rem;
    position: relative;
}

.timeline__step:last-child {
    padding-bottom: 0;
}

.timeline__number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--dark-300);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.timeline__content {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline__content h3 {
    margin-bottom: 0.75rem;
    color: var(--white);
}

.timeline__content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-300);
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    padding: clamp(24px, 3vw, 32px);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444444;
    font-style: italic;
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.testimonial-card__stars svg {
    width: 16px;
    height: 16px;
    color: var(--secondary);
    fill: var(--secondary);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.testimonial-card__role {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* --- FAQ Accordion --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
    gap: 1rem;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.08);
}

.faq-item.active {
    border-color: var(--primary-glow-strong);
}

.faq-item__question:hover {
    color: var(--primary);
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    transition: var(--transition);
    color: #999999;
}

.faq-item.active .faq-item__icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer-inner {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555555;
}

/* --- Urgency Section --- */
.urgency {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.urgency::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.urgency__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.urgency__title {
    color: var(--white);
    margin-bottom: 1rem;
}

.urgency__text {
    color: var(--gray-300);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.urgency__list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.urgency__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-300);
    font-weight: 500;
    font-size: 1rem;
}

.urgency__list li svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* --- CTA Section --- */
.cta-section {
    text-align: center;
}

.cta-section__title {
    margin-bottom: 1rem;
}

.cta-section__text {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-section__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Team Cards --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: clamp(32px, 4vw, 48px);
    background: var(--dark-300) !important;
    border-color: rgba(255, 255, 255, 0.07) !important;
    box-shadow: none !important;
}

.team-card__avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
}

.team-card__name {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.team-card__avatar {
    color: var(--white) !important;
}

.team-card__role {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.team-card__crc {
    display: block;
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.team-card__social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-card__social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: var(--transition);
}

.team-card__social a:hover {
    background: var(--primary);
    color: var(--dark);
}

.team-card__social a svg {
    width: 18px;
    height: 18px;
}

/* --- Values / Mission --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    text-align: center;
    padding: clamp(28px, 3vw, 36px);
}

.value-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: var(--primary-glow);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.value-card__title {
    color: var(--dark-400);
    margin-bottom: 0.75rem;
}

.value-card__text {
    font-size: 0.925rem;
    color: #444444;
}

/* --- Contact --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    min-width: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
}

.contact-info__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--dark-200);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
    min-width: 0;
    overflow: hidden;
}

.contact-info__item:hover {
    border-color: var(--primary-glow-strong);
}

.contact-info__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--primary-glow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info__icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.contact-info__item > div:not(.contact-info__icon) {
    min-width: 0;
    flex: 1;
}

.contact-info__label {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info__value {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.contact-form {
    background: var(--dark-200);
    padding: clamp(24px, 3vw, 36px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.04);
    min-width: 0;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark-300);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238892A0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--dark-300);
}

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

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

/* --- Blog --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    overflow: hidden;
    padding: 0;
}

.blog-card__image {
    width: 100%;
    height: 200px;
    background: var(--dark-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 2.5rem;
}

.blog-card__body {
    padding: clamp(20px, 3vw, 28px);
}

.blog-card__tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-glow);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.blog-card__title {
    color: var(--dark-400);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.35;
}

.blog-card__title:hover {
    color: var(--primary);
}

.blog-card__excerpt {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-card__meta {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* --- Page Hero (Internal Pages) --- */
.page-hero {
    padding: calc(var(--header-height) + 60px) 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 30% 50%, rgba(0, 168, 133, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 70% 30%, rgba(9, 132, 227, 0.1) 0%, transparent 70%);
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    text-align: left;
}

.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.page-hero__title {
    margin-bottom: 1.25rem;
    color: var(--white);
}

.page-hero__text {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    max-width: 650px;
    line-height: 1.7;
    color: var(--gray-300);
}

/* --- Advantages Grid --- */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.advantage-card {
    text-align: center;
    padding: clamp(24px, 3vw, 36px);
}

.advantage-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: var(--primary-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-card__icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
}

.advantage-card__title {
    color: var(--dark-400);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.advantage-card__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444444;
}

/* --- WhatsApp Float Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    color: white;
    fill: white;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* --- Login Modal --- */
.login-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.login-modal.active {
    opacity: 1;
    visibility: visible;
}

.login-modal__content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: clamp(32px, 5vw, 48px);
    width: 100%;
    max-width: 420px;
    position: relative;
    transform: scale(0.95);
    transition: var(--transition);
}

.login-modal.active .login-modal__content {
    transform: scale(1);
}

.login-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-500);
    transition: var(--transition);
}

.login-modal__close:hover {
    background: var(--gray-200);
    color: var(--dark);
}

.login-modal__close svg {
    width: 20px;
    height: 20px;
}

.login-modal__header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-modal__logo {
    height: 48px;
    margin-bottom: 1.5rem;
}

.login-modal__header h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.login-modal__header p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.login-modal__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.login-modal__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.login-modal__field label {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.login-modal__field input {
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--dark);
    transition: var(--transition);
}

.login-modal__field input:focus {
    outline: none;
    border-color: var(--primary);
}

.login-modal__submit {
    width: 100%;
    margin-top: 0.5rem;
}

.login-modal__help {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.login-modal__help a {
    color: var(--primary);
    font-weight: 600;
}

.login-modal__help a:hover {
    text-decoration: underline;
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer__brand p {
    margin: 1rem 0;
    font-size: 0.925rem;
    line-height: 1.7;
    color: var(--gray-400);
}

.footer__crc {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-glow);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
}

.footer__title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__link {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer__link:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

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

.footer__social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.footer__social:hover {
    background: var(--primary);
    color: var(--dark);
}

.footer__bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    color: var(--gray-500);
}

.footer__crc-highlight {
    color: var(--primary) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
}

/* --- Blog Placeholder --- */
.blog-placeholder {
    text-align: center;
    padding: 80px 0;
}

.blog-placeholder__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--primary-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-placeholder__icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.blog-placeholder__title {
    margin-bottom: 1rem;
}

.blog-placeholder__text {
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

/* --- Counter Animation --- */
.counter {
    display: inline;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__description {
        margin: 0 auto 2.5rem;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        display: none;
    }

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

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

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

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

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

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

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

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

/* Tablet Portrait */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .header__nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 40px) 0 60px;
    }

    .hero__stats {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
    }

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

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

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

    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__social {
        margin: 0.5rem auto 0;
    }

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

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

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

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

    .timeline::before {
        left: 20px;
    }

    .timeline__number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .timeline__step {
        gap: 1.25rem;
    }

    .hero__floating {
        display: none;
    }

    .trust-bar__logos {
        gap: 2rem;
    }

    .cta-section__buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Disruptive Hero Options */
.hero--disruptive-1 .hero__bg-gradient {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
}

.hero--disruptive-1 .hero__bg-circuit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b6b' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-4h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-4H6zM6 4V0H4v4H0v2h4v4h2V6h4V2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero--disruptive-2 .hero__bg-gradient {
    background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
}

.hero--disruptive-2 .hero__bg-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234cc9f0' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-4h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-4H6zM6 4V0H4v4H0v2h4v4h2V6h4V2H6z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero__title--disruptive {
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
}

.hero__description--disruptive {
    font-size: 1.25rem;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero__buttons--disruptive {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn--pulse {
    position: relative;
    overflow: hidden;
}

.btn--pulse::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.btn--border-gradient {
    position: relative;
    background: transparent;
    border: 2px solid;
    background-clip: padding-box;
}

.btn--border-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    z-index: -1;
    background-clip: padding-box;
}

.hero__stats--disruptive {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.hero__stat-item {
    text-align: center;
    min-width: 120px;
}

.hero__stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.hero__stat-label {
    font-size: 0.95rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__visual--disruptive {
    position: relative;
    margin-top: 3rem;
}

.hero__visual-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.hero__visual-card {
    background: rgba(0, 30, 40, 0.4);
    border: 1px solid rgba(0, 168, 192, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 350px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.hero__visual-header {
    margin-bottom: 1.5rem;
}

.hero__visual-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.hero__visual-chart {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero__visual-bar {
    width: 8px;
    border-radius: 4px;
    transition: height 0.5s ease;
}

.hero__visual-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero__visual-metric-label {
    font-size: 0.9rem;
    opacity: 0.7;
    display: block;
    margin-bottom: 0.25rem;
}

.hero__visual-metric-value {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
}

.hero__visual-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero__floating {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__floating-icon {
    width: 24px;
    height: 24px;
}

.hero__floating-text {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

.hero__floating--top-left {
    top: 15%;
    left: 5%;
}

.hero__floating--bottom-right {
    bottom: 15%;
    right: 5%;
}

.hero__floating--top {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.hero__floating--bottom {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.text-gradient-danger {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-future {
    background: linear-gradient(135deg, #4cc9f0, #4361ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-info {
    background: linear-gradient(135deg, #4cc9f0, #89cff0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Disruptive Hero Options */
.hero--disruptive-1 .hero__bg-gradient {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
}

.hero--disruptive-1 .hero__bg-circuit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b6b' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-4h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-4H6zM6 4V0H4v4H0v2h4v4h2V6h4V2H6z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero--disruptive-2 .hero__bg-gradient {
    background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
}

.hero--disruptive-2 .hero__bg-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234cc9f0' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-4h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-4H6zM6 4V0H4v4H0v2h4v4h2V6h4V2H6z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero__title--disruptive {
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
}

.hero__description--disruptive {
    font-size: 1.25rem;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero__buttons--disruptive {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn--pulse {
    position: relative;
    overflow: hidden;
}

.btn--pulse::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.btn--border-gradient {
    position: relative;
    background: transparent;
    border: 2px solid;
    background-clip: padding-box;
}

.btn--border-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    z-index: -1;
    background-clip: padding-box;
}

.hero__stats--disruptive {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.hero__stat-item {
    text-align: center;
    min-width: 120px;
}

.hero__stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.hero__stat-label {
    font-size: 0.95rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__visual--disruptive {
    position: relative;
    margin-top: 3rem;
}

.hero__visual-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.hero__visual-card {
    background: rgba(0, 30, 40, 0.4);
    border: 1px solid rgba(0, 168, 192, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 350px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.hero__visual-header {
    margin-bottom: 1.5rem;
}

.hero__visual-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.hero__visual-chart {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero__visual-bar {
    width: 8px;
    border-radius: 4px;
    transition: height 0.5s ease;
}

.hero__visual-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero__visual-metric-label {
    font-size: 0.9rem;
    opacity: 0.7;
    display: block;
    margin-bottom: 0.25rem;
}

.hero__visual-metric-value {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
}

.hero__visual-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero__floating {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__floating-icon {
    width: 24px;
    height: 24px;
}

.hero__floating-text {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

.hero__floating--top-left {
    top: 15%;
    left: 5%;
}

.hero__floating--bottom-right {
    bottom: 15%;
    right: 5%;
}

.hero__floating--top {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.hero__floating--bottom {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.text-gradient-danger {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-future {
    background: linear-gradient(135deg, #4cc9f0, #4361ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-success {
    background: linear-gradient(135deg, #4cc9f0, #89cff0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-warning {
    background: linear-gradient(135deg, #ff9f1c, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile */
@media (max-width: 480px) {
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .section {
        padding: 60px 0;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }

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