/* ============================================
   INOVAR DEDETIZADORA — Design System & Styles
   ============================================ */

/* ============================================
   THEME SYSTEM — 3 Color Schemes
   ============================================ */

/* ☀️ TEMA CLÁSSICO — Light Mode (Tradicional / Institucional) */
[data-theme="classico"],
:root {
    --primary: #C41E1E;
    --primary-light: #E53935;
    --primary-dark: #8B1A1A;
    --primary-glow: rgba(196, 30, 30, 0.10);
    --primary-border: rgba(196, 30, 30, 0.12);

    --accent: #D49800;
    --accent-glow: rgba(212, 152, 0, 0.15);

    --bg-primary: #FAFAF8;
    --bg-secondary: #F4F1EE;
    --bg-tertiary: #EDE9E4;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: rgba(255, 255, 255, 1);

    --text-main: #1A1A1A;
    --text-secondary: rgba(26, 26, 26, 0.65);
    --text-muted: rgba(26, 26, 26, 0.4);

    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(196, 30, 30, 0.25);

    --service-1: #C41E1E;
    --service-2: #D49800;
    --service-3: #C41E1E;
    --service-4: #D49800;
    --service-5: #C41E1E;
    --service-6: #D49800;

    --gradient-hero: linear-gradient(135deg, rgba(196, 30, 30, 0.06) 0%, rgba(212, 152, 0, 0.04) 100%);
    --gradient-btn: linear-gradient(135deg, #C41E1E 0%, #A01818 100%);
    --logo-color: #C41E1E;
    --logo-sub-color: #D49800;
}

/* 🟠 TEMA MODERNO — Estilo Asimov atualizado */
[data-theme="moderno"] {
    --primary: #FF4444;
    --primary-light: #FF6B6B;
    --primary-dark: #CC2222;
    --primary-glow: rgba(255, 68, 68, 0.15);
    --primary-border: rgba(255, 68, 68, 0.12);

    --accent: #FFB830;
    --accent-glow: rgba(255, 184, 48, 0.15);

    --bg-primary: #0C0A0F;
    --bg-secondary: #110E15;
    --bg-tertiary: #171320;
    --bg-card: rgba(23, 19, 32, 0.6);
    --bg-card-hover: rgba(30, 24, 42, 0.8);

    --text-main: #F8F0FF;
    --text-secondary: rgba(248, 240, 255, 0.6);
    --text-muted: rgba(248, 240, 255, 0.35);

    --border: rgba(255, 68, 68, 0.06);
    --border-hover: rgba(255, 68, 68, 0.18);

    --service-1: #C41E1E;
    --service-2: #D49800;
    --service-3: #C41E1E;
    --service-4: #D49800;
    --service-5: #C41E1E;
    --service-6: #D49800;

    --gradient-hero: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(255, 184, 48, 0.05) 100%);
    --gradient-btn: linear-gradient(135deg, #FF4444 0%, #FF6B6B 100%);
    --logo-color: #FF4444;
    --logo-sub-color: #FFB830;
}

/* 🟣 TEMA DISRUPTIVO — Evolução futurista */
[data-theme="disruptivo"] {
    --primary: #FF3366;
    --primary-light: #FF5588;
    --primary-dark: #CC1144;
    --primary-glow: rgba(255, 51, 102, 0.15);
    --primary-border: rgba(255, 51, 102, 0.12);

    --accent: #7C3AED;
    --accent-glow: rgba(124, 58, 237, 0.15);

    --bg-primary: #09090B;
    --bg-secondary: #0F0F13;
    --bg-tertiary: #16161D;
    --bg-card: rgba(22, 22, 29, 0.6);
    --bg-card-hover: rgba(30, 28, 42, 0.8);

    --text-main: #FAFAFA;
    --text-secondary: rgba(250, 250, 250, 0.6);
    --text-muted: rgba(250, 250, 250, 0.35);

    --border: rgba(255, 51, 102, 0.06);
    --border-hover: rgba(255, 51, 102, 0.18);

    --service-1: #FF3366;
    --service-2: #7C3AED;
    --service-3: #FF5588;
    --service-4: #A855F7;

    --gradient-hero: linear-gradient(135deg, rgba(255, 51, 102, 0.1) 0%, rgba(124, 58, 237, 0.08) 100%);
    --gradient-btn: linear-gradient(135deg, #FF3366 0%, #7C3AED 100%);
    --logo-color: #FF3366;
    --logo-sub-color: #7C3AED;
}

/* ---- Shared Tokens ---- */
:root {
    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Oswald', sans-serif;

    /* Spacing */
    --section-padding: 8rem 0;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

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

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

/* ---- Container ---- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- Section ---- */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    font-weight: 300;
    line-height: 1.7;
}

/* ============================================
   COMMON ELEMENTS
   ============================================ */

/* Badge */
.badge {
    display: inline-flex;
    padding: 0.4rem 1rem;
    background: var(--primary-glow);
    border: 1px solid var(--primary-border);
    border-radius: 9999px;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: fit-content;
}

/* Headline */
.headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.headline span {
    color: var(--primary);
    font-weight: 300;
    position: relative;
}

.headline span::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary);
    opacity: 0.3;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--gradient-btn);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    opacity: 0.7;
    transform: translateX(4px);
}

/* Beam Button */
.btn-beam {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
}

.btn-beam .beam-border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: conic-gradient(from 0deg, transparent 40%, var(--primary) 50%, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: beam-spin 4s linear infinite;
}

@keyframes beam-spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-beam .btn-content-bg {
    position: absolute;
    inset: 1.5px;
    background: var(--bg-tertiary);
    border-radius: inherit;
    z-index: 1;
}

.btn-beam .lines-overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent, transparent 3px,
            var(--primary-glow) 3px, var(--primary-glow) 4px);
}

.btn-beam .bottom-glow {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: var(--primary);
    box-shadow: 0 0 15px 3px var(--primary-glow);
}

.btn-beam-text {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn-beam-text i {
    width: 1.1rem;
    height: 1.1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.glass-nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 0;
}

/* Light Mode nav override */
.theme-light .glass-nav.scrolled {
    background: rgba(250, 250, 248, 0.90);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.theme-light .mobile-menu-btn span {
    background: var(--text-main);
}

.theme-light .nav-links a {
    color: var(--text-main);
}

.theme-light .nav-links a:hover {
    color: var(--primary);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* Logo Image */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    align-self: flex-start;
    /* Align logo to top for left alignment */
}

.logo-img {
    height: 135px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}

.glass-nav.scrolled .logo-img {
    height: 50px;
}

.logo-img-footer {
    height: 38px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
}

/* Theme Switcher - Floating Widget */
.theme-toggle-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--text-main) 65%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--bg-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.theme-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.theme-toggle-btn i {
    position: absolute;
    width: 22px;
    height: 22px;
    transition: all var(--transition-base);
}

.theme-toggle-btn:hover i {
    color: var(--primary);
}

/* Light theme defaults (Classico) */
[data-theme="classico"] .icon-moon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

[data-theme="classico"] .icon-sun {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Dark theme defaults (Moderno) */
[data-theme="moderno"] .icon-sun {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

[data-theme="moderno"] .icon-moon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: all var(--transition-base);
    border-radius: 2px;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: auto;
    padding: 13rem 0 6rem 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    /* reduced gap to give more room for content */
    align-items: center;
    width: 100%;
    margin-left: -2px;
    /* slight correction to align with logo's visual edge */
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.subheadline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 520px;
    font-weight: 300;
    line-height: 1.7;
}

.cta-group {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-top: 3.5rem;
}

/* Hero Visual (Shield) */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-shield {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon {
    width: 100px;
    height: 100px;
    color: var(--primary);
    filter: drop-shadow(0 0 30px var(--primary-glow));
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px var(--primary-glow));
    }

    50% {
        filter: drop-shadow(0 0 40px var(--primary-glow));
    }
}

.shield-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.5;
    z-index: -1;
}

.shield-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--primary-border);
    animation: ring-pulse 4s ease-in-out infinite;
}

.ring-1 {
    width: 180px;
    height: 180px;
    animation-delay: 0s;
}

.ring-2 {
    width: 260px;
    height: 260px;
    animation-delay: 1s;
    opacity: 0.5;
}

.ring-3 {
    width: 340px;
    height: 340px;
    animation-delay: 2s;
    opacity: 0.3;
}

@keyframes ring-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.6;
    }
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
}

.floating-stat i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.stat-1 {
    top: 8%;
    left: -2%;
    animation: float-1 8s ease-in-out infinite alternate;
}

.stat-2 {
    top: -2%;
    right: 5%;
    animation: float-2 7s ease-in-out infinite alternate-reverse;
}

.stat-3 {
    top: 38%;
    left: -5%;
    animation: float-3 9s ease-in-out infinite alternate;
}

.stat-4 {
    top: 25%;
    right: -8%;
    animation: float-1 8.5s ease-in-out infinite alternate-reverse;
}

.stat-5 {
    bottom: 12%;
    left: 2%;
    animation: float-2 7.5s ease-in-out infinite alternate;
}

.stat-6 {
    bottom: 15%;
    right: -2%;
    animation: float-3 8s ease-in-out infinite alternate-reverse;
}

@keyframes float-1 {
    0% {
        transform: translate(0, 0) rotate(-2deg);
    }

    100% {
        transform: translate(-10px, -25px) rotate(2deg);
    }
}

@keyframes float-2 {
    0% {
        transform: translate(0, 0) rotate(2deg);
    }

    100% {
        transform: translate(15px, -15px) rotate(-2deg);
    }
}

@keyframes float-3 {
    0% {
        transform: translate(0, 0) rotate(-1deg);
    }

    100% {
        transform: translate(-15px, 20px) rotate(3deg);
    }
}

/* Background Effects */
.bg-aura-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.aura {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.aura-1 {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    animation: aura-drift 15s ease-in-out infinite alternate;
}

.aura-2 {
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    animation: aura-drift 20s ease-in-out infinite alternate-reverse;
}

.aura-3 {
    top: 40%;
    left: 30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    animation: aura-drift 12s ease-in-out infinite alternate;
    opacity: 0.2;
}

@keyframes aura-drift {
    to {
        transform: translate(40px, 30px) scale(1.1);
    }
}

.bg-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    opacity: 0.4;
    pointer-events: none;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.15rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
    opacity: 0.9;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0.75rem;
    font-weight: 500;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.servicos-section {
    background: var(--bg-primary);
}

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

.service-card {
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    transition: all var(--transition-slow);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--card-accent, var(--primary)), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

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

.service-icon-wrapper {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-glow);
    border: 1px solid var(--primary-border);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 28px;
    height: 28px;
    color: var(--card-accent, var(--primary));
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-pests {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pest-tag {
    padding: 0.3rem 0.75rem;
    background: var(--primary-glow);
    border: 1px solid var(--primary-border);
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

/* ============================================
   SOBRE SECTION
   ============================================ */
.sobre-section {
    background: var(--bg-secondary);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.sobre-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sobre-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.sobre-features {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
}

.feature-item {
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-base);
}

.feature-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.feature-item i {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
}

/* Sobre Visual Cards */
.sobre-visual {
    display: flex;
    justify-content: center;
}

.sobre-card-stack {
    position: relative;
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sobre-stat-card {
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all var(--transition-base);
}

.sobre-stat-card:hover {
    border-color: var(--border-hover);
    transform: translateX(8px);
}

.sobre-stat-card i {
    width: 28px;
    height: 28px;
    color: var(--primary);
    flex-shrink: 0;
}

.card-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-main);
}

.card-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-left: auto;
    white-space: nowrap;
    text-align: right;
}

/* ============================================
   DIFERENCIAIS SECTION
   ============================================ */
.diferenciais-section {
    background: var(--bg-primary);
}

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

.diferencial-card {
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.diferencial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--primary-glow) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.diferencial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.diferencial-card:hover::after {
    opacity: 1;
}

.diferencial-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 200;
    color: var(--accent);
    opacity: 0.75;
    line-height: 1;
    margin-bottom: 1rem;
}

.diferencial-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.diferencial-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CONTATO SECTION
   ============================================ */
.contato-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.cta-aura {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: top;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contato-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contato-channels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    transition: all var(--transition-base);
}

.channel-item:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.channel-item i {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.channel-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.channel-value {
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
    margin-top: 0.15rem;
}

/* Form */
.contato-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    background: var(--form-input-bg, rgba(0, 0, 0, 0.25));
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

/* Light mode form override */
.theme-light .form-group input,
.theme-light .form-group select,
.theme-light .form-group textarea {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.15);
    color: #1A1A1A;
}

.theme-light .form-group label {
    color: rgba(26, 26, 26, 0.75);
}

.theme-light .form-group input::placeholder,
.theme-light .form-group textarea::placeholder {
    color: rgba(26, 26, 26, 0.35);
}

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

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-main);
}

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

/* WhatsApp Channel Highlight */
.channel-whatsapp {
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.3);
}

.channel-whatsapp i {
    color: #25D366;
    background: rgba(37, 211, 102, 0.15);
}

.channel-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25D366;
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.btn-submit .btn-loading,
.btn-submit .btn-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-submit.success {
    background: #16a34a;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-brand .logo-img {
    height: 30px;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color var(--transition-fast);
}

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

.footer-copy p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-blur-in {
    animation: blur-in 0.8s ease-out forwards;
}

@keyframes blur-in {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fade-up 0.8s ease-out forwards;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.delay-100 {
    animation-delay: 0.1s;
    animation-fill-mode: backwards;
}

.delay-200 {
    animation-delay: 0.2s;
    animation-fill-mode: backwards;
}

.delay-300 {
    animation-delay: 0.3s;
    animation-fill-mode: backwards;
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out calc(var(--delay, 0s)),
        transform 0.7s ease-out calc(var(--delay, 0s));
}

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

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #1EBE5D;
}

.whatsapp-float i {
    width: 32px;
    height: 32px;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .floating-stat {
        display: none;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

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

    .toast-container {
        bottom: 5rem;
        right: 1.25rem;
        left: 1.25rem;
        align-items: center;
    }

    .toast {
        transform: translateY(120%);
    }

    .toast.show {
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text {
        align-items: center;
    }

    .subheadline {
        margin: 0 auto;
    }

    .hero-visual {
        order: -1;
    }

    .hero-shield {
        width: 200px;
        height: 200px;
    }

    .shield-icon {
        width: 70px;
        height: 70px;
    }

    .ring-1 {
        width: 140px;
        height: 140px;
    }

    .ring-2 {
        width: 200px;
        height: 200px;
    }

    .ring-3 {
        width: 260px;
        height: 260px;
    }

    .btn-beam-text {
        font-size: 0.75rem;
        letter-spacing: 0.05em;
    }

    .cta-group {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

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

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 999;
    }

    .nav-links.mobile-open a {
        font-size: 1.5rem;
        color: var(--text-main);
    }

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

    .service-card {
        max-width: 100%;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

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

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

    .logo-img {
        height: 100px;
    }
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 9999;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--primary-glow);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.25rem;
    }

    .section {
        padding: 5rem 0;
    }

    .sobre-stat-card {
        padding: 1.25rem 1.25rem;
        gap: 0.75rem;
    }

    .card-number {
        font-size: 1.4rem;
    }

    .card-label {
        white-space: normal;
        font-size: 0.75rem;
    }

    .headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

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

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

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-img {
        height: 65px;
    }

    .theme-toggle-btn {
        width: 40px;
        height: 40px;
        bottom: 1.5rem;
        left: 1.5rem;
    }
    
    .theme-toggle-btn i {
        width: 18px;
        height: 18px;
    }
}