/* ================================================
   AEROSAFE — LANDING PAGE CSS
   Design System · Dark Tech · High Conversion
   ================================================ */

/* ========================
   VARIABLES
   ======================== */
:root {
    --clr-bg: #050a15;
    --clr-bg-surface: rgba(8, 14, 28, 0.85);
    --clr-bg-card: rgba(12, 20, 40, 0.7);
    --clr-text: #e2e8f0;
    --clr-text-muted: #8899bb;

    --clr-primary: #00f0ff;
    --clr-primary-glow: rgba(0, 240, 255, 0.4);
    --clr-secondary: #0055ff;
    --clr-accent: #00e676;
    /* WhatsApp green */
    --clr-accent-hover: #00c853;
    --clr-accent-glow: rgba(0, 230, 118, 0.35);
    --clr-white: #ffffff;

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-xxl: 8rem;

    --transition-fast: 0.2s ease;
    --transition-base: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    --glass-blur: blur(14px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.07);
    --radius: 14px;
    --radius-sm: 8px;
}

/* ========================
   RESET & BASE
   ======================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.18;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================
   LAYOUT
   ======================== */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--space-xxl) 0;
}

.bg-darker {
    background-color: rgba(2, 5, 15, 0.6);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3.5rem;
}

.mb-5 {
    margin-bottom: 3.5rem;
}

/* ========================
   TYPOGRAPHY
   ======================== */
.text-gradient {
    background: linear-gradient(120deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(120deg, #fff 0%, #a0e8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clr-primary);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    padding: 0.3rem 0.9rem;
    margin-bottom: 1rem;
    background: rgba(0, 240, 255, 0.05);
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header .section-subtitle {
    margin-top: 0.75rem;
}

/* ========================
   FADE IN ANIMATIONS
   ======================== */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================
   BUTTONS
   ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    white-space: nowrap;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1.15rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 10px;
}

/* WhatsApp Button (green) */
.btn-whatsapp {
    background: var(--clr-accent);
    color: #050a15;
    font-weight: 700;
    box-shadow: 0 4px 28px var(--clr-accent-glow);
}

.btn-whatsapp:hover {
    background: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(0, 200, 83, 0.5);
    color: #050a15;
}

.btn-whatsapp:active {
    transform: translateY(0);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--clr-primary);
    border: 1.5px solid var(--clr-primary);
}

.btn-outline:hover {
    background: rgba(0, 240, 255, 0.08);
    color: var(--clr-white);
    border-color: var(--clr-white);
    transform: translateY(-2px);
}

/* ========================
   NAVBAR
   ======================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.15rem 0;
    z-index: 1000;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: var(--clr-bg-surface);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.7rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-white);
    letter-spacing: 0.08em;
    flex-shrink: 0;
}

.logo-drone-icon {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    position: relative;
    transition: color 0.2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--clr-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--clr-white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.55rem 1.1rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 1001;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--clr-white);
    border-radius: 2px;
    transition: 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 60%, rgba(0, 50, 150, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 200, 255, 0.1) 0%, transparent 50%),
        var(--clr-bg);
    z-index: 0;
}

.hero-bg-3d {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: auto;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 10, 21, 0.15) 0%, transparent 50%, var(--clr-bg) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--clr-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 9s;
}

.particle:nth-child(2) {
    left: 25%;
    top: 60%;
    animation-delay: 1.5s;
    animation-duration: 7s;
}

.particle:nth-child(3) {
    left: 70%;
    top: 15%;
    animation-delay: 3s;
    width: 3px;
    height: 3px;
}

.particle:nth-child(4) {
    left: 85%;
    top: 50%;
    animation-delay: 0.7s;
    animation-duration: 10s;
}

.particle:nth-child(5) {
    left: 50%;
    top: 80%;
    animation-delay: 2s;
    animation-duration: 8.5s;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
        transform: translateY(-80px) scale(0.5);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
    padding-top: 5rem;
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-primary);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 20px;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1.4rem;
    background: rgba(0, 240, 255, 0.06);
    letter-spacing: 0.03em;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--clr-text-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.hero-drone-spacer {
    display: block;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-dot {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    position: relative;
}

.scroll-dot::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background: var(--clr-primary);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.3;
    }
}

/* ========================
   SOBRE SECTION
   ======================== */
.sobre {
    background: var(--clr-bg);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.sobre-text-col .section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 1.25rem;
}

.sobre-text {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.sobre-text strong {
    color: var(--clr-text);
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.stat-card {
    background: var(--clr-bg-card);
    border: var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
    border-radius: 2px 2px 0 0;
}

.stat-card:hover {
    border-color: rgba(0, 240, 255, 0.2);
    transform: translateY(-3px);
}

.stat-card-wide {
    grid-column: 1 / -1;
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-plus,
.stat-unit {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    font-weight: 500;
    margin-top: 0.15rem;
}

/* ========================
   SERVIÇOS SECTION
   ======================== */
.servicos {
    position: relative;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.servico-card {
    background: var(--clr-bg-card);
    border: var(--glass-border);
    border-radius: var(--radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.servico-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.servico-card:hover {
    border-color: rgba(0, 240, 255, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 240, 255, 0.07);
}

.servico-card:hover::after {
    transform: scaleX(1);
}

.servico-card-wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
}

.servico-card-wide h3 {
    font-size: 1.25rem;
}

.servico-icon-wrap {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    transition: var(--transition-base);
}

.servico-card:hover .servico-icon-wrap {
    background: rgba(0, 240, 255, 0.12);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.servico-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-white);
}

.servico-card p {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    flex: 1;
}

.servico-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-primary);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 0.2rem 0.6rem;
    background: rgba(0, 240, 255, 0.04);
    width: fit-content;
    margin-top: auto;
}

/* ========================
   PÚBLICO-ALVO SECTION
   ======================== */
.publico {
    position: relative;
}

.publico-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.publico-card {
    background: var(--clr-bg-card);
    border: var(--glass-border);
    border-radius: var(--radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.publico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--clr-secondary), var(--clr-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.publico-card:hover {
    border-color: rgba(0, 240, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

.publico-card:hover::before {
    transform: scaleX(1);
}

.publico-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(0, 85, 255, 0.1);
    border: 1px solid rgba(0, 85, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    transition: var(--transition-base);
    margin-bottom: 0.25rem;
}

.publico-card:hover .publico-icon {
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
}

.publico-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
}

.publico-card>p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    flex: 1;
}

.publico-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.75rem;
}

.publico-list li {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.publico-list li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--clr-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========================
   DIFERENCIAIS SECTION
   ======================== */
.diferenciais {
    position: relative;
}

.diferenciais-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.diferenciais-text .section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.diferenciais-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.diferen-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.diferen-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(0, 230, 118, 0.1);
    border: 1.5px solid rgba(0, 230, 118, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    margin-top: 0.1rem;
}

.diferen-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 0.15rem;
}

.diferen-item p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Visual blob */
.diferenciais-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-blob {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blob-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 240, 255, 0.15);
    animation: blobPulse 4s ease-in-out infinite;
}

.ring-1 {
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    border-color: rgba(0, 240, 255, 0.35);
}

.ring-2 {
    width: 220px;
    height: 220px;
    animation-delay: 0.5s;
}

.ring-3 {
    width: 320px;
    height: 320px;
    animation-delay: 1s;
    border-color: rgba(0, 240, 255, 0.07);
}

@keyframes blobPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

.blob-center {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, rgba(0, 85, 255, 0.05) 100%);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: droneSpin 12s linear infinite;
}

@keyframes droneSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.blob-center svg {
    animation: droneSpin 12s linear infinite reverse;
}

.blob-stat {
    position: absolute;
    background: var(--clr-bg-card);
    border: var(--glass-border);
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
    backdrop-filter: var(--glass-blur);
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    white-space: nowrap;
}

.blob-stat strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-primary);
    font-family: var(--font-heading);
}

.blob-stat span {
    font-size: 0.7rem;
    color: var(--clr-text-muted);
}

.bs1 {
    top: 5%;
    right: -5%;
}

.bs2 {
    bottom: 10%;
    right: -5%;
}

.bs3 {
    bottom: 5%;
    left: -5%;
}

/* ========================
   ÁREA DE ATUAÇÃO SECTION
   ======================== */
.atuacao {
    position: relative;
}

.atuacao-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.atuacao-map-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.atuacao-map {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 240, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
}

.map-pulse {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(0, 240, 255, 0.12);
    animation: mapPulse 3s ease-in-out infinite;
}

@keyframes mapPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.map-center-dot {
    width: 16px;
    height: 16px;
    background: var(--clr-primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--clr-primary-glow), 0 0 40px rgba(0, 240, 255, 0.2);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

.map-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-white);
    font-family: var(--font-heading);
    text-align: center;
    letter-spacing: 0.03em;
}

.map-radius-label {
    font-size: 0.7rem;
    color: var(--clr-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.atuacao-cidades h3 {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.cidades-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.cidade-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--clr-text);
    padding: 0.65rem 0.9rem;
    background: var(--clr-bg-card);
    border: var(--glass-border);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.cidade-item:hover {
    border-color: rgba(0, 240, 255, 0.2);
    background: rgba(0, 240, 255, 0.04);
}

.cidade-badge {
    margin-left: auto;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(0, 240, 255, 0.1);
    color: var(--clr-primary);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 0.15rem 0.55rem;
    border-radius: 20px;
}

.atuacao-obs {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.9rem 1rem;
    background: rgba(0, 240, 255, 0.04);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.atuacao-obs p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin: 0;
}

.atuacao-obs svg {
    flex-shrink: 0;
    margin-top: 1px;
}

/* ========================
   CTA FINAL SECTION
   ======================== */
.cta-section {
    position: relative;
    padding: 0;
}

.cta-inner {
    background: linear-gradient(135deg, #020c25 0%, #030f2e 40%, #05143a 100%);
    border-top: 1px solid rgba(0, 240, 255, 0.12);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 85, 255, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner::after {
    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='%2300f0ff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-accent);
    border: 1px solid rgba(0, 230, 118, 0.25);
    border-radius: 20px;
    padding: 0.35rem 1rem;
    background: rgba(0, 230, 118, 0.06);
    letter-spacing: 0.03em;
}

.cta-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.2;
    max-width: 700px;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(177, 200, 230, 0.85);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

.cta-disclaimer {
    font-size: 0.8rem;
    color: rgba(136, 153, 187, 0.7);
    margin-top: 0.25rem;
    letter-spacing: 0.03em;
}

/* ========================
   FOOTER
   ======================== */
.footer {
    background: #030810;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: inline-flex;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links-col h4,
.footer-contact h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--clr-text-muted);
    margin-bottom: 0.25rem;
}

.footer-links-col a {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    transition: color 0.2s;
}

.footer-links-col a:hover {
    color: var(--clr-white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--clr-white);
}

.foot-wa {
    color: var(--clr-accent);
}

.foot-wa:hover {
    color: #fff;
}

.footer-addr {
    font-size: 0.8rem;
    color: rgba(136, 153, 187, 0.6);
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(136, 153, 187, 0.45);
}

/* ========================
   WHATSAPP FLOAT BUTTON
   ======================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    background: var(--clr-accent);
    color: #050a15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    box-shadow: 0 6px 30px rgba(0, 200, 83, 0.5);
    transition: var(--transition-base);
    animation: floatIn 0.6s ease 2s both;
}

@keyframes floatIn {
    from {
        transform: scale(0) translateY(20px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: var(--clr-accent-hover);
    box-shadow: 0 10px 40px rgba(0, 200, 83, 0.65);
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: #1a1a2e;
    color: var(--clr-white);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: 0.25s ease;
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Pulse ring */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.3);
    animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* ========================
   RESPONSIVE — TABLET
   ======================== */
@media (max-width: 1024px) {
    .publico-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servico-card-wide {
        grid-column: 1 / -1;
    }

    .diferenciais-inner,
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .diferenciais-visual {
        display: none;
    }

    .atuacao-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .atuacao-map-wrap {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-drone-spacer {
        display: none;
    }
}

/* ========================
   RESPONSIVE — MOBILE
   ======================== */
@media (max-width: 768px) {
    :root {
        --space-xxl: 5rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 10, 21, 0.97);
        backdrop-filter: var(--glass-blur);
        padding-top: 6rem;
        gap: 1.5rem;
        font-size: 1.25rem;
        z-index: 999;
    }

    .nav-links.active a {
        font-size: 1.2rem;
        color: var(--clr-text);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-container {
        padding-top: 7rem;
        padding-bottom: 3rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-trust {
        align-items: center;
    }

    .sobre-content,
    .diferenciais-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .servicos-grid,
    .publico-grid {
        grid-template-columns: 1fr;
    }

    .servico-card-wide {
        flex-direction: column;
        grid-column: 1;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bs1,
    .bs2,
    .bs3 {
        display: none;
    }

    .cta-inner {
        padding: 4rem 0;
    }

    .whatsapp-float {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}