/* ========================================
   VARIÁVEIS E RESET
   ======================================== */

:root {
    --primary-color: #00d4ff;
    --primary-dark: #00a8cc;
    --secondary-color: #a9a9a9;
    --dark-bg: #0a0e27;
    --darker-bg: #000000;
    --light-text: #ffffff;
    --light-gray: #f0f0f0;
    --border-color: #1a1f3a;
    --accent-color: #ff6b6b;
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   CONTAINER E LAYOUT
   ======================================== */

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

/* ========================================
   HEADER E NAVEGAÇÃO
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--light-text);
    font-weight: 700;
    font-size: 1.3rem;
    font-family: var(--font-heading);
}

/* Marca d'água no fundo da página */
.watermark {
    position: fixed;
    bottom: 4%;
    right: 4%;
    width: 280px;
    height: 280px;
    background-image: url('images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    pointer-events: none;
    z-index: 9999;
    display: block;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-pbx-combined {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.3));
}

.footer-pbx-combined {
    height: 28px !important;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-consultdev {
    height: 40px !important;
    width: auto;
    opacity: 0.9;
}

.logo-pbx {
    height: 36px !important;
    width: auto;
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
}



.logo-text {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 1rem;
    z-index: 999;
}

.mobile-nav-link {
    color: var(--light-text);
    text-decoration: none;
    padding: 0.8rem;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--primary-color);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    margin-top: 70px;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.hero-blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-blob-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: 100px;
    right: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-blob-3 {
    width: 250px;
    height: 250px;
    background: var(--primary-color);
    bottom: 200px;
    left: 50%;
    animation: float 12s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.0rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    white-space: normal;
    animation: hero-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-reveal {
    0%   { opacity: 0; transform: translateY(24px); filter: blur(8px); }
    60%  { filter: blur(0); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 0.8s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: slideUp 0.8s ease 0.4s backwards;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    animation: slideUp 0.8s ease 0.6s backwards;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-top: 0.5rem;
}

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

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

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--darker-bg);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--darker-bg);
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.0rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    background: linear-gradient(110deg, #00d4ff 0%, #00d4ff 35%, #ffffff 50%, #00d4ff 65%, #00d4ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-title 6s linear 2s infinite;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-graphic {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.network-node.node-2 {
    width: 40px;
    height: 40px;
    top: 50px;
    right: 80px;
    animation: pulse 2s ease-in-out infinite 0.3s;
}

.network-node.node-3 {
    width: 50px;
    height: 50px;
    bottom: 80px;
    left: 100px;
    animation: pulse 2s ease-in-out infinite 0.6s;
}

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

.network-line {
    position: absolute;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0.3;
}

.line-1 {
    width: 150px;
    height: 2px;
    top: 80px;
    left: 100px;
    transform: rotate(-30deg);
}

.line-2 {
    width: 120px;
    height: 2px;
    bottom: 100px;
    right: 150px;
    transform: rotate(45deg);
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.03) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.0rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
    background: linear-gradient(110deg, #00d4ff 0%, #00d4ff 35%, #ffffff 50%, #00d4ff 65%, #00d4ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-title 6s linear 2s infinite;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(169, 169, 169, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 380px;
    justify-content: flex-start;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    flex-shrink: 0;
}

.icon-ura::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><rect x="16" y="12" width="32" height="40" rx="4" fill="white" stroke="white" stroke-width="2"/><circle cx="32" cy="44" r="2" fill="%230a0e27"/><path d="M 24 6 Q 32 2 40 6" stroke="white" stroke-width="2" fill="none" stroke-linecap="round"/><path d="M 20 8 Q 32 0 44 8" stroke="white" stroke-width="2" fill="none" stroke-linecap="round" opacity="0.6"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-queue::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><circle cx="20" cy="16" r="6" fill="white"/><rect x="12" y="26" width="16" height="8" rx="2" fill="white"/><circle cx="44" cy="16" r="6" fill="white" opacity="0.7"/><rect x="36" y="26" width="16" height="8" rx="2" fill="white" opacity="0.7"/><circle cx="32" cy="42" r="6" fill="white" opacity="0.5"/><rect x="24" y="52" width="16" height="8" rx="2" fill="white" opacity="0.5"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-recording::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><rect x="10" y="16" width="44" height="32" rx="3" fill="none" stroke="white" stroke-width="2"/><circle cx="32" cy="32" r="8" fill="white"/><circle cx="32" cy="32" r="5" fill="%230a0e27"/><rect x="52" y="24" width="4" height="16" rx="2" fill="white"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-mobile::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><rect x="16" y="12" width="24" height="40" rx="2" fill="none" stroke="white" stroke-width="2"/><rect x="18" y="14" width="20" height="28" fill="white" opacity="0.3"/><circle cx="28" cy="50" r="2" fill="white"/><path d="M 44 20 L 48 16 M 48 16 L 52 20 M 48 16 L 48 24" stroke="white" stroke-width="2" fill="none" stroke-linecap="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-voicemail::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><rect x="12" y="16" width="40" height="28" rx="2" fill="none" stroke="white" stroke-width="2"/><path d="M 12 16 L 32 28 L 52 16" stroke="white" stroke-width="2" fill="none" stroke-linejoin="round"/><path d="M 44 40 Q 48 38 52 40" stroke="white" stroke-width="1.5" fill="none" stroke-linecap="round" opacity="0.7"/><path d="M 44 46 Q 48 44 52 46" stroke="white" stroke-width="1.5" fill="none" stroke-linecap="round" opacity="0.7"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-conference::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><circle cx="32" cy="32" r="20" fill="none" stroke="white" stroke-width="1.5" opacity="0.5"/><circle cx="32" cy="16" r="4" fill="white"/><circle cx="44" cy="24" r="4" fill="white"/><circle cx="48" cy="36" r="4" fill="white"/><circle cx="44" cy="48" r="4" fill="white"/><circle cx="32" cy="52" r="4" fill="white"/><circle cx="20" cy="48" r="4" fill="white"/><circle cx="16" cy="36" r="4" fill="white"/><circle cx="20" cy="24" r="4" fill="white"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light-text);
    line-height: 1.4;
}

.feature-card p {
    color: var(--secondary-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========================================
   WHY CHOOSE SECTION
   ======================================== */

.why-choose {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
}

.why-choose h2 {
    font-family: var(--font-heading);
    font-size: 2.0rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
    background: linear-gradient(110deg, #00d4ff 0%, #00d4ff 35%, #ffffff 50%, #00d4ff 65%, #00d4ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-title 6s linear 2s infinite;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(169, 169, 169, 0.03) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--light-text);
}

.benefit-item p {
    color: var(--secondary-color);
    line-height: 1.7;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.03) 100%);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(169, 169, 169, 0.05) 100%);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 500px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--darker-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.price {
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.currency {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 500;
}

.price-description {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    width: 100%;
}

.features-list li {
    padding: 0.8rem 0;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: flex-start;
}

.check {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-note {
    text-align: center;
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-top: 2rem;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(169, 169, 169, 0.05) 100%);
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.0rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
    background: linear-gradient(110deg, #00d4ff 0%, #00d4ff 35%, #ffffff 50%, #00d4ff 65%, #00d4ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-title 6s linear 2s infinite;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

/* ========================================
   MODAL
   ======================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--light-text);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    background: var(--border-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--light-text);
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.05);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-logo .logo-consultdev {
    height: 30px !important;
}

.footer-logo .logo-pbx {
    height: 26px !important;
}

.footer-logo .logo-brand {
    gap: 4px;
}

.footer-logo .logo-text {
    font-size: 1rem;
}

.footer-section p {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 0.4rem 0;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* ========================================
   RESPONSIVIDADE - TABLET (768px)
   ======================================== */

@media (max-width: 768px) {
    .header {
        padding: 0.8rem 0;
    }

    .logo-consultdev {
        height: 30px !important;
    }

    .logo-pbx-combined {
        height: 30px !important;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

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

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

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .features {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 1rem;
    }

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

    .feature-card {
        padding: 1.5rem;
        min-height: 320px;
        border-radius: 16px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
        border-radius: 14px;
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .why-choose {
        padding: 60px 0;
    }

    .why-choose h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-item {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .benefit-number {
        font-size: 2rem;
    }

    .benefit-item h3 {
        font-size: 1.1rem;
    }

    .benefit-item p {
        font-size: 0.9rem;
    }

    .pricing {
        padding: 60px 0;
    }

    .pricing-card {
        max-width: 100%;
        padding: 2rem;
        border-radius: 16px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card h3 {
        font-size: 1.5rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .features-list li {
        padding: 0.6rem 0;
        font-size: 0.95rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .modal-content {
        padding: 1.5rem;
        border-radius: 16px;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 1rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

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

/* ========================================
   RESPONSIVIDADE - MOBILE (480px)
   ======================================== */

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    .header {
        padding: 0.6rem 0;
    }

    .logo {
        gap: 8px;
    }

    .logo-consultdev {
        height: 24px !important;
    }

    .logo-pbx-combined {
        height: 24px !important;
    }

    .logo-text {
        font-size: 1rem;
    }

    .hero {
        margin-top: 55px;
        padding: 40px 0;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .hero-cta {
        gap: 0.6rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .hero-stats {
        gap: 0.8rem;
        margin-top: 2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .about {
        padding: 40px 0;
    }

    .about-text h2 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .features {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .features-grid {
        gap: 1rem;
    }

    .feature-card {
        padding: 1.2rem;
        min-height: 300px;
        border-radius: 12px;
        gap: 0.8rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.8rem;
        border-radius: 12px;
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .why-choose {
        padding: 40px 0;
    }

    .why-choose h2 {
        font-size: 1.35rem;
        margin-bottom: 1.5rem;
    }

    .benefit-item {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .benefit-number {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .benefit-item h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .benefit-item p {
        font-size: 0.85rem;
    }

    .pricing {
        padding: 40px 0;
    }

    .pricing-card {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .pricing-card h3 {
        font-size: 1.3rem;
    }

    .amount {
        font-size: 2rem;
    }

    .period {
        font-size: 0.85rem;
    }

    .price-description {
        font-size: 0.85rem;
    }

    .features-list li {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }

    .check {
        font-size: 1rem;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 1.35rem;
        margin-bottom: 0.8rem;
    }

    .cta-section p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .modal-content {
        padding: 1.2rem;
        border-radius: 12px;
        width: 98%;
    }

    .modal-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .modal-close {
        font-size: 1.8rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.95rem;
        border-radius: 6px;
    }

    .contact-form {
        gap: 1rem;
    }

    .footer {
        padding: 1.5rem 0 0.8rem;
    }

    .footer-content {
        gap: 1rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }

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

    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.8rem;
    }
}

/* ========================================
   BARRA DE SCROLL PERSONALIZADA
   ======================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0e27;
    border-left: 1px solid rgba(0, 212, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00d4ff 0%, #0077aa 50%, #00d4ff 100%);
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00eeff 0%, #00aadd 100%);
    box-shadow: 0 0 14px rgba(0, 212, 255, 0.9);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #00d4ff #0a0e27;
}

/* ========================================
   BARRA DE PROGRESSO DE SCROLL (TOPO)
   ======================================== */

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #00d4ff, #a9a9a9, #00d4ff);
    background-size: 200% auto;
    animation: shimmer-bar 2s linear infinite;
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

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

/* ========================================
   MARCA D'ÁGUA — IMAGEM REAL
   ======================================== */

.watermark {
    position: fixed;
    bottom: 4%;
    right: 4%;
    width: 260px;
    height: 260px;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.07;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none !important; /* remove background, usa img */
}

.watermark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(30%) brightness(1.2);
}

/* ========================================
   PARTÍCULAS FLUTUANTES
   ======================================== */

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 6px rgba(0, 212, 255, 0.8);
    animation: float-particle linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes float-particle {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 0.6; }
    100% {
        transform: translateY(-120px) translateX(40px) scale(0.3);
        opacity: 0;
    }
}

/* ========================================
   EFEITO SHIMMER NO TÍTULO (SUBSTITUI GLITCH)
   ======================================== */

/* Aplica apenas o gradiente/shimmer sem sobrescrever font-size ou layout */
.hero-title {
    position: relative;
    background: linear-gradient(
        110deg,
        #00d4ff 0%,
        #00d4ff 35%,
        #ffffff 50%,
        #00d4ff 65%,
        #00d4ff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hero-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) both,
               shimmer-title 6s linear 2s infinite;
    /* font-size e layout definidos no bloco base acima */
}

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

/* ========================================
   ANIMAÇÃO FADE-IN-UP NOS CARDS
   ======================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   EFEITO RIPPLE NOS BOTÕES
   ======================================== */

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

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ========================================
   EFEITO GLOW NOS CARDS (MOUSE TRACKING)
   ======================================== */

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0;
    border-radius: 50%;
}

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

/* ========================================
   HEADER SCROLLED
   ======================================== */

.header.scrolled {
    background: rgba(10, 14, 39, 0.98);
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.12);
    border-bottom-color: rgba(0, 212, 255, 0.2);
}

/* ========================================
   EFEITO BRILHO NOS ÍCONES DOS CARDS
   ======================================== */

.feature-card:hover .feature-icon {
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.5), 0 0 48px rgba(0, 212, 255, 0.2);
    transform: scale(1.08) rotate(-3deg);
    transition: all 0.35s ease;
}

/* ========================================
   LINHA DECORATIVA ANIMADA NAS SEÇÕES
   ======================================== */

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, transparent);
    margin: 0.8rem auto 0;
    border-radius: 2px;
    animation: expand-line 1.5s ease forwards;
}

@keyframes expand-line {
    from { width: 0; opacity: 0; }
    to   { width: 60px; opacity: 1; }
}

/* ========================================
   EFEITO PULSE NO BADGE "MAIS POPULAR"
   ======================================== */

.popular-badge {
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
    50%       { box-shadow: 0 0 0 8px rgba(0, 212, 255, 0); }
}

/* ========================================
   EFEITO NEON NO PREÇO
   ======================================== */

.amount {
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6), 0 0 20px rgba(0, 212, 255, 0.3);
    animation: neon-flicker 4s ease-in-out infinite;
}

@keyframes neon-flicker {
    0%, 95%, 100% { text-shadow: 0 0 10px rgba(0, 212, 255, 0.6), 0 0 20px rgba(0, 212, 255, 0.3); }
    96%            { text-shadow: none; }
    97%            { text-shadow: 0 0 10px rgba(0, 212, 255, 0.6), 0 0 20px rgba(0, 212, 255, 0.3); }
    98%            { text-shadow: none; }
}

/* ========================================
   EFEITO SCAN LINE NO HERO (SUTIL)
   ======================================== */

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 212, 255, 0.01) 2px,
        rgba(0, 212, 255, 0.01) 4px
    );
    pointer-events: none;
    z-index: 1;
}

/* Cursor piscante removido — subtítulo estático */

/* ========================================
   ANIMAÇÃO DE ENTRADA DO HERO — FADE REVEAL
   ======================================== */

.hero-subtitle {
    animation: hero-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.hero-cta {
    animation: hero-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.hero-stats {
    animation: hero-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both;
}

/* ========================================
   FUNDO ANIMADO GLOBAL — TODA A PÁGINA
   ======================================== */

.page-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.55;
}

/* Blobs de fundo globais */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.07;
    will-change: transform;
}

.bg-blob-a {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #00d4ff, transparent 70%);
    top: -150px;
    left: -150px;
    animation: drift-a 18s ease-in-out infinite;
}

.bg-blob-b {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #a9a9a9, transparent 70%);
    top: 40%;
    right: -100px;
    animation: drift-b 22s ease-in-out infinite;
}

.bg-blob-c {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #00d4ff, transparent 70%);
    bottom: 20%;
    left: 30%;
    animation: drift-c 16s ease-in-out infinite;
}

.bg-blob-d {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #a9a9a9, transparent 70%);
    bottom: -80px;
    right: 20%;
    animation: drift-d 20s ease-in-out infinite;
}

@keyframes drift-a {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(80px, 60px) scale(1.1); }
    66%       { transform: translate(-40px, 100px) scale(0.95); }
}

@keyframes drift-b {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(-70px, 80px) scale(1.05); }
    66%       { transform: translate(50px, -60px) scale(1.1); }
}

@keyframes drift-c {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(60px, -80px) scale(1.08); }
}

@keyframes drift-d {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%       { transform: translate(-50px, -60px) scale(1.1); }
    80%       { transform: translate(40px, 30px) scale(0.95); }
}

/* Garantir que todas as seções fiquem acima do fundo */
.header,
.hero,
.about,
.features,
.why-choose,
.pricing,
.cta-section,
.footer,
.modal {
    position: relative;
    z-index: 1;
}

/* Hero não precisa mais do seu próprio background de blobs */
.hero-background {
    display: none;
}

/* ========================================
   HERO — LAYOUT DUAS COLUNAS COM IMAGEM
   ======================================== */

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

.hero-layout .hero-content {
    text-align: left;
}

.hero-layout .hero-cta {
    justify-content: flex-start;
}

.hero-layout .hero-stats {
    justify-content: flex-start;
    gap: 2rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.hero-dashboard-img {
    width: 100%;
    max-width: 580px;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15), 0 0 0 1px rgba(0, 212, 255, 0.1);
    display: block;
    animation: float-img 6s ease-in-out infinite;
}

.hero-img-glow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: rgba(0, 212, 255, 0.3);
    filter: blur(20px);
    border-radius: 50%;
    pointer-events: none;
}

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

/* ========================================
   ABOUT — IMAGEM DE REDE
   ======================================== */

.about-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-network-img {
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.1);
    display: block;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-network-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), transparent 60%);
    pointer-events: none;
    border-radius: 16px;
}

/* ========================================
   SEÇÃO MOBILIDADE
   ======================================== */

.mobility-section {
    padding: 80px 0;
    position: relative;
}

.mobility-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: center;
    gap: 4rem;
}

.mobility-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.mobility-phone-img {
    width: 100%;
    max-width: 340px;
    border-radius: 32px;
    filter: drop-shadow(0 20px 50px rgba(0, 212, 255, 0.25));
    animation: float-img 7s ease-in-out infinite;
    display: block;
    margin: 0 auto;
}

.mobility-img-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 30px;
    background: rgba(0, 212, 255, 0.35);
    filter: blur(18px);
    border-radius: 50%;
    pointer-events: none;
}

.mobility-text h2 {
    font-family: var(--font-heading);
    font-size: 2.0rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    background: linear-gradient(110deg, #00d4ff 0%, #00d4ff 35%, #ffffff 50%, #00d4ff 65%, #00d4ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-title 6s linear 2s infinite;
}

.mobility-text p {
    color: var(--secondary-color);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.mobility-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2rem;
}

.mobility-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--light-text);
    font-size: 1rem;
}

.mobility-check {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* ========================================
   RESPONSIVIDADE DAS NOVAS SEÇÕES
   ======================================== */

@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-layout .hero-content {
        text-align: center;
    }

    .hero-layout .hero-cta {
        justify-content: center;
    }

    .hero-layout .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-dashboard-img {
        max-width: 480px;
    }

    .mobility-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .mobility-list li {
        justify-content: center;
    }

    .mobility-text h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .hero-dashboard-img {
        max-width: 100%;
    }

    .about-network-img {
        max-width: 100%;
    }

    .mobility-phone-img {
        max-width: 260px;
    }

    .mobility-text h2 {
        font-size: 1.35rem;
    }

    .mobility-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .mobility-phone-img {
        max-width: 220px;
    }

    .mobility-list li {
        font-size: 0.9rem;
    }
}
