/* ==========================================================================
   Giga Speed Website - Premium Style System
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --primary: #67bd52;
    --primary-hover: #56a542;
    --primary-rgb: 103, 189, 82;
    --primary-glow: rgba(103, 189, 82, 0.35);
    
    --bg-dark: #05030a;
    --bg-card: rgba(20, 16, 35, 0.6);
    --bg-card-hover: rgba(25, 20, 45, 0.85);
    --border-card: rgba(255, 255, 255, 0.06);
    --border-card-hover: rgba(103, 189, 82, 0.3);
    
    --text-white: #ffffff;
    --text-muted: #a19eb0;
    --text-grey: #606060;
    
    --font-outfit: 'Outfit', sans-serif;
    --font-inter: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    font-family: var(--font-inter);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(103, 189, 82, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(120, 50, 200, 0.03) 0%, transparent 45%);
    background-attachment: fixed;
}

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

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

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

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-outfit);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Animations */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px var(--primary-glow);
    }
    50% {
        box-shadow: 0 0 30px rgba(103, 189, 82, 0.6);
    }
}

@keyframes pulseDot {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.8;
    }
}

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

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

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

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

.btn-outline {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-card);
    color: var(--text-white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-brand {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline-brand:hover {
    background-color: rgba(103, 189, 82, 0.1);
    transform: translateY(-2px);
}

.w-full {
    width: 100%;
}

.shadow-glow {
    animation: pulseGlow 3s infinite;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background-color: rgba(5, 3, 10, 0.85);
    backdrop-filter: blur(15px);
    height: 70px;
    border-bottom: 1px solid var(--border-card);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.brand-logo {
    height: 56px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.main-header.scrolled .brand-logo {
    height: 46px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-outfit);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Drawer Menu */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #0c0916;
    z-index: 2000;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--border-card);
}

.mobile-drawer.open {
    right: 0;
}

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

.drawer-logo {
    height: 40px;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-link {
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.drawer-link:hover {
    color: var(--primary);
    padding-left: 8px;
}

.drawer-btn {
    margin-top: 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.speed-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 3, 10, 0.4) 0%, rgba(5, 3, 10, 0.95) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: rgba(103, 189, 82, 0.1);
    border: 1px solid rgba(103, 189, 82, 0.25);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
    font-family: var(--font-outfit);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 1.5s infinite;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary);
    background: linear-gradient(90deg, var(--primary) 0%, #b0f498 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

/* CEP Coverage Check Form */
.cep-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 580px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cep-form-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.cep-form {
    display: flex;
    gap: 12px;
}

.input-wrapper {
    position: relative;
    flex: 1;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.cep-form input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition-fast);
    outline: none;
}

.cep-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(103, 189, 82, 0.2);
}

.cep-form input:focus + .input-icon {
    color: var(--primary);
}

.cep-helper-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

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

.giga-glow-sphere {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(103, 189, 82, 0.18) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
}

.hero-card-glow {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(25, 20, 45, 0.8) 0%, rgba(10, 8, 20, 0.95) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.speedometer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border: 4px solid transparent;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    box-shadow: inset 0 0 20px rgba(103,189,82,0.1);
}

.speed-value {
    font-family: var(--font-outfit);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
}

.speed-unit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.speed-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-grey);
    letter-spacing: 0.1em;
    margin-top: 8px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    background-color: rgba(255,255,255,0.03);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.05);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--primary);
}

.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--text-muted);
    font-size: 2rem;
    animation: bounceIndicator 2s infinite;
}

.scroll-down-indicator:hover {
    color: var(--primary);
}

/* Sections Standards */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-badge {
    text-transform: uppercase;
    color: var(--primary);
    font-family: var(--font-outfit);
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.section-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Vantagens Section */
.advantages-section {
    background-color: rgba(10, 8, 20, 0.3);
}

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

.advantage-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 40px 32px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-icon-container {
    width: 64px;
    height: 64px;
    background-color: rgba(103, 189, 82, 0.08);
    border: 1px solid rgba(103, 189, 82, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.card-icon-container i {
    width: 28px;
    height: 28px;
}

.advantage-card-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-white);
}

.advantage-card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex: 1;
}

.card-indicator {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background-color: rgba(103, 189, 82, 0.05);
    border-radius: 50px;
}

/* Advantage Card Hover Effect */
.advantage-card:hover, .advantage-card.active {
    transform: translateY(-8px);
    background-color: var(--bg-card-hover);
    border-color: var(--border-card-hover);
    box-shadow: 0 15px 30px rgba(103, 189, 82, 0.08);
}

.advantage-card:hover .card-icon-container, .advantage-card.active .card-icon-container {
    background-color: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Planos Section */
.plans-section {
    position: relative;
    background-color: #06040b;
}

.blur-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: 1;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background-color: rgba(103, 189, 82, 0.08);
    top: 10%;
    left: -10%;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background-color: rgba(120, 50, 250, 0.05);
    bottom: 5%;
    right: -10%;
}

.plans-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.plan-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.plan-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid var(--border-card);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.plan-header {
    margin-bottom: 24px;
}

.plan-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: baseline;
}

.plan-price .currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-right: 4px;
}

.plan-price .value {
    font-family: var(--font-outfit);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-white);
}

.plan-price .period {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-left: 2px;
}

/* TV App Seal - HIGHLIGHTED BADGE */
.tv-app-seal {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(103, 189, 82, 0.08);
    border: 1px solid rgba(103, 189, 82, 0.2);
    color: var(--primary);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 32px;
    font-family: var(--font-outfit);
}

.tv-app-seal i {
    width: 18px;
    height: 18px;
}

/* Featured Plan (Card 500 Mega) */
.plan-card.featured {
    background-color: rgba(20, 16, 35, 0.85);
    border: 2px solid var(--primary);
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(103, 189, 82, 0.08);
}

.plan-card.featured .featured-badge {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--bg-dark);
}

.plan-card.featured .featured-seal {
    background-color: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.feature-icon {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-icon.green {
    color: var(--primary);
}

.plan-footer {
    margin-top: auto;
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-card-hover);
    box-shadow: 0 15px 30px rgba(103, 189, 82, 0.05);
}

.plan-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 20px 40px rgba(103, 189, 82, 0.15);
}

.plans-fidelidade-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-grey);
    margin-top: 48px;
}

/* Sobre Nós Section */
.about-section {
    background-color: rgba(10, 8, 20, 0.2);
}

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

.about-badge {
    text-transform: uppercase;
    color: var(--primary);
    font-family: var(--font-outfit);
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.about-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-text {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.stat-num {
    font-family: var(--font-outfit);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Cyber Box graphic */
.about-graphic {
    display: flex;
    justify-content: center;
}

.cyber-box {
    background-color: #090610;
    border: 1px solid var(--border-card);
    border-radius: 12px;
    width: 100%;
    max-width: 460px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.cyber-header {
    background-color: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border-card);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cyber-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.cyber-dot.red { background-color: #ff5f56; }
.cyber-dot.yellow { background-color: #ffbd2e; }
.cyber-dot.green { background-color: #27c93f; }

.cyber-title {
    font-family: var(--font-outfit);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: 10px;
    font-weight: 600;
}

.cyber-body {
    padding: 24px;
    font-family: monospace;
    font-size: 0.85rem;
    color: #c5c2d8;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cyber-line span {
    color: var(--primary);
    margin-right: 8px;
}

.cyber-line.text-brand {
    color: var(--primary);
}

.cyber-bar-container {
    height: 4px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-top: 12px;
    overflow: hidden;
}

.cyber-bar {
    height: 100%;
    background-color: var(--primary);
    border-radius: 10px;
    box-shadow: 0 0 8px var(--primary);
}

/* Contato & Localização Section */
.contact-section {
    background-color: #050308;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
}

.contact-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 24px;
}

.contact-card-title {
    font-size: 1.6rem;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon.bg-green {
    background-color: rgba(103, 189, 82, 0.1);
    border: 1px solid rgba(103, 189, 82, 0.2);
    color: var(--primary);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
}

.contact-value:hover {
    color: var(--primary);
}

.social-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-box-title {
    font-size: 0.95rem;
    color: var(--text-muted);
}

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

.social-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.social-btn i,
.social-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
    display: block;
}

.social-btn:hover {
    background-color: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-card);
    height: 480px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.card-glow-green {
    transition: var(--transition-smooth);
}

.card-glow-green:hover {
    border-color: var(--border-card-hover);
    box-shadow: 0 15px 30px rgba(103, 189, 82, 0.08);
}

/* Footer Section */
.main-footer {
    background-color: #030206;
    border-top: 1px solid var(--border-card);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    height: 56px;
    margin-bottom: 24px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--text-white);
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-card);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-grey);
}

/* Floating WhatsApp Widget */
.whatsapp-floating-widget {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background-color: #25d366;
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.whatsapp-floating-widget:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background-color: #0c0916;
    border: 1px solid var(--border-card);
    color: var(--text-white);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.whatsapp-floating-widget:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 40px;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .plan-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 350px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1.2fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    #client-area-btn {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .cep-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .whatsapp-floating-widget {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-num {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-num {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   Ambient Animated Background Glows
   ========================================================================== */
.bg-ambient-glows {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.08;
    mix-blend-mode: screen;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background-color: var(--primary);
    top: -100px;
    left: -100px;
    animation: floatBlob1 25s infinite alternate ease-in-out;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background-color: #7832c8;
    bottom: -150px;
    right: -100px;
    animation: floatBlob2 30s infinite alternate ease-in-out;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background-color: var(--primary);
    top: 50%;
    left: 60%;
    animation: floatBlob3 20s infinite alternate ease-in-out;
}

@keyframes floatBlob1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(120px, 80px) scale(1.1) rotate(45deg);
        opacity: 0.14;
    }
    100% {
        transform: translate(-40px, 150px) scale(0.9) rotate(90deg);
    }
}

@keyframes floatBlob2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-100px, -120px) scale(0.95) rotate(-30deg);
        opacity: 0.12;
    }
    100% {
        transform: translate(80px, 50px) scale(1.05) rotate(60deg);
    }
}

@keyframes floatBlob3 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-150px, 100px) scale(1.2);
        opacity: 0.10;
    }
    100% {
        transform: translate(50px, -80px) scale(0.85);
    }
}

/* ==========================================================================
   Corporate Theme Overrides (B2B Violet Tone)
   ========================================================================== */
/* ==========================================================================
   Corporate Theme Overrides (B2B Green & Gray Tone)
   ========================================================================== */
.corporate-body {
    --primary: #00ffd5;
    --primary-hover: #00e5c1;
    --primary-rgb: 0, 255, 213;
    --primary-glow: rgba(0, 255, 213, 0.35);
    
    --bg-dark: #050a0f;
    --bg-card: rgba(13, 22, 33, 0.65);
    --bg-card-hover: rgba(20, 32, 48, 0.85);
    --border-card: rgba(255, 255, 255, 0.06);
    --border-card-hover: rgba(0, 255, 213, 0.4);
    
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 213, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(148, 163, 184, 0.03) 0%, transparent 45%);
}

/* Corporate Ambient Blob Definitions */
.corp-blob-1 {
    width: 500px;
    height: 500px;
    background-color: var(--primary); /* Green #67bd52 */
    top: -100px;
    left: -100px;
    animation: floatBlob1 25s infinite alternate ease-in-out;
}

.corp-blob-2 {
    width: 600px;
    height: 600px;
    background-color: #64748b; /* Slate Gray */
    bottom: -150px;
    right: -100px;
    animation: floatBlob2 30s infinite alternate ease-in-out;
}

.corp-blob-3 {
    width: 400px;
    height: 400px;
    background-color: #475569; /* Darker Slate Gray */
    top: 50%;
    left: 60%;
    animation: floatBlob3 20s infinite alternate ease-in-out;
}

/* Translucent Section Background & Overlay Overrides for B2B */
.corporate-body .bg-carousel-overlay {
    background: linear-gradient(180deg, 
        rgba(5, 10, 15, 0.95) 0%, 
        rgba(5, 10, 15, 0.55) 10%, 
        rgba(5, 10, 15, 0.55) 90%, 
        rgba(5, 10, 15, 0.95) 100%
    ) !important;
}

.corporate-body .advantages-section {
    background-color: rgba(5, 10, 15, 0.35) !important;
}

.corporate-body .plans-section {
    background-color: rgba(7, 13, 20, 0.45) !important;
}

.corporate-body .about-section {
    background-color: rgba(5, 10, 15, 0.35) !important;
}

.corporate-body .contact-section {
    background-color: rgba(4, 8, 12, 0.65) !important;
}

.corporate-body .main-footer {
    background-color: rgba(3, 6, 9, 0.85) !important;
}

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

.corporate-body .btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4);
}

.corporate-body .btn-outline-brand {
    border-color: var(--primary);
    color: var(--primary);
}

.corporate-body .btn-outline-brand:hover {
    background-color: rgba(var(--primary-rgb), 0.1);
}

/* Specific Corporate Custom Details */
.nav-highlight-corp {
    color: #00ffd5 !important;
    border: 1px solid rgba(0, 255, 213, 0.3);
    padding: 6px 16px !important;
    border-radius: 50px;
    margin-left: 10px;
    transition: var(--transition-smooth) !important;
}

.nav-highlight-corp::after {
    display: none !important;
}

.nav-highlight-corp:hover {
    background-color: rgba(0, 255, 213, 0.1);
    border-color: #00ffd5;
    color: #fff !important;
}

.drawer-highlight-corp {
    color: #00ffd5 !important;
    border: 1px solid rgba(0, 255, 213, 0.3);
    padding: 10px 16px !important;
    border-radius: 8px;
    text-align: center;
    background-color: rgba(0, 255, 213, 0.05);
}

.drawer-highlight-corp:hover {
    background-color: rgba(0, 255, 213, 0.15) !important;
    padding-left: 16px !important;
    color: #fff !important;
}

.nav-highlight-res {
    color: #67bd52 !important;
    border: 1px solid rgba(103, 189, 82, 0.3);
    padding: 6px 16px !important;
    border-radius: 50px;
    margin-left: 10px;
    transition: var(--transition-smooth) !important;
}

.nav-highlight-res::after {
    display: none !important;
}

.nav-highlight-res:hover {
    background-color: rgba(103, 189, 82, 0.1);
    border-color: #67bd52;
    color: #fff !important;
}

.drawer-highlight-res {
    color: #67bd52 !important;
    border: 1px solid rgba(103, 189, 82, 0.3);
    padding: 10px 16px !important;
    border-radius: 8px;
    text-align: center;
    background-color: rgba(103, 189, 82, 0.05);
}

.drawer-highlight-res:hover {
    background-color: rgba(103, 189, 82, 0.15) !important;
    padding-left: 16px !important;
    color: #fff !important;
}

/* Corporate Page Specific Layout Customizations */
.corp-badge-tag {
    background-color: rgba(var(--primary-rgb), 0.1) !important;
    border-color: rgba(var(--primary-rgb), 0.25) !important;
    color: var(--primary) !important;
}

.corp-pulse-dot {
    background-color: var(--primary) !important;
    box-shadow: 0 0 8px var(--primary);
}

.corp-hero-title span {
    color: var(--primary);
    background: linear-gradient(90deg, var(--primary) 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.corp-lead-container {
    border-color: rgba(var(--primary-rgb), 0.15) !important;
    background: rgba(13, 22, 33, 0.7) !important;
}

.corp-lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    width: 100%;
}

.corp-lead-form .input-wrapper input {
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    padding: 16px 16px 16px 48px;
    color: var(--text-white);
    font-size: 0.95rem;
}

.corp-lead-form .input-wrapper input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.2);
}

.corp-lead-form .input-wrapper input:focus + .input-icon {
    color: var(--primary);
}

.corp-glow-sphere {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    filter: blur(25px);
    z-index: 1;
}

.corp-speedometer {
    border-top-color: var(--primary) !important;
    box-shadow: inset 0 0 20px rgba(var(--primary-rgb), 0.1) !important;
}

.corp-speedometer .speed-value {
    color: var(--primary) !important;
}

.corp-status-dot {
    background-color: var(--primary) !important;
    box-shadow: 0 0 8px var(--primary) !important;
}

.corp-status-indicator {
    background-color: rgba(255, 255, 255, 0.02) !important;
}

.corp-badge {
    color: var(--primary) !important;
}

/* Corporate Plan Styling (Sob Consulta) */
.corporate-price-box {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: 24px;
}

.price-consult {
    font-family: var(--font-outfit);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
}

.price-consult.featured-text {
    color: #fff;
    text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3);
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.price-period.featured-period {
    color: #94a3b8;
}

.corp-plan-card {
    border-color: rgba(255, 255, 255, 0.04);
}

.corp-plan-card:hover {
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.05) !important;
}

.corp-plan-card.featured {
    border: 2px solid var(--primary) !important;
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.08) !important;
    background-color: rgba(13, 22, 33, 0.85) !important;
}

.corp-plan-card.featured:hover {
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.15) !important;
}

.corp-plan-badge {
    color: var(--primary) !important;
    background-color: rgba(var(--primary-rgb), 0.08) !important;
    border-color: rgba(var(--primary-rgb), 0.2) !important;
}

.corp-featured-badge {
    background-color: var(--primary) !important;
    color: var(--bg-dark) !important;
    border-color: var(--primary) !important;
}

.corp-color {
    color: var(--primary) !important;
}

.corp-note {
    color: var(--text-grey) !important;
}

/* Corporate Forms and Overrides */
.corporate-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

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

.corporate-contact-form .input-wrapper input,
.corporate-contact-form .input-wrapper textarea {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background-color: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    outline: none;
    font-family: var(--font-inter);
}

.corporate-contact-form .input-wrapper textarea {
    padding: 16px 16px 16px 48px;
    resize: none;
}

.corporate-contact-form .input-wrapper input:focus,
.corporate-contact-form .input-wrapper textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.2);
}

.corporate-contact-form .input-wrapper input:focus + .input-icon,
.corporate-contact-form .input-wrapper textarea:focus + .input-icon {
    color: var(--primary);
}

.text-area-wrapper {
    position: relative;
}

.text-area-icon {
    top: 28px !important;
}

.corp-info-card {
    margin-bottom: 24px !important;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.corp-icon-bg {
    background-color: rgba(var(--primary-rgb), 0.1) !important;
    border: 1px solid rgba(var(--primary-rgb), 0.2) !important;
    color: var(--primary) !important;
}

.corp-icon-container {
    background-color: rgba(var(--primary-rgb), 0.08) !important;
    border-color: rgba(var(--primary-rgb), 0.2) !important;
    color: var(--primary) !important;
}

.corp-card:hover .corp-icon-container,
.corp-card.active .corp-icon-container {
    background-color: var(--primary) !important;
    color: var(--bg-dark) !important;
    box-shadow: 0 0 15px var(--primary-glow) !important;
}

.corp-indicator {
    background-color: rgba(var(--primary-rgb), 0.05) !important;
    color: var(--primary) !important;
}

.corp-stat-color {
    color: var(--primary) !important;
}

.corp-line-color span {
    color: var(--primary) !important;
}

.corp-line-color {
    color: var(--primary) !important;
}

.corp-cyber-bar {
    background-color: var(--primary) !important;
    box-shadow: 0 0 8px var(--primary) !important;
}

.corp-whatsapp {
    background-color: #00d2b0 !important;
    box-shadow: 0 10px 25px rgba(0, 210, 176, 0.4) !important;
}

.corp-whatsapp:hover {
    box-shadow: 0 12px 30px rgba(0, 210, 176, 0.6) !important;
}

/* ==========================================================================
   Gateway/Portal Page Styles
   ========================================================================== */
.gateway-body {
    background-color: #040208;
    overflow-y: auto;
    position: relative;
    min-height: 100vh;
}

.gateway-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.gateway-wrapper {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 24px;
}

.gateway-header {
    text-align: left;
    margin-bottom: 40px;
    width: 100%;
    max-width: 1000px;
    align-self: center;
}

.gateway-logo {
    height: 90px;
    object-fit: contain;
    margin: 0 0 16px 0;
}

.gateway-tagline {
    font-family: var(--font-outfit);
    color: #f7fafc;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    max-width: 650px;
    line-height: 1.45;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.gateway-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1000px;
    margin: auto 0;
}

.gateway-card {
    position: relative;
    background: rgba(14, 11, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    cursor: pointer;
}

.card-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.gateway-card:hover .card-glow-effect {
    opacity: 1;
}

.gateway-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: var(--transition-smooth);
}

.gateway-icon-wrapper i {
    width: 32px;
    height: 32px;
}

.gateway-profile-tag {
    font-family: var(--font-outfit);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.gateway-card-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    font-family: var(--font-outfit);
}

.gateway-card-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 32px;
    flex-grow: 1;
}

.gateway-highlights-list {
    list-style: none;
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gateway-highlights-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 500;
}

.gateway-highlights-list li i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.gateway-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 1.05rem;
    width: 100%;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

/* Residencial Gateway Elements Card */
.card-residential .gateway-icon-wrapper {
    background-color: rgba(103, 189, 82, 0.08);
    border: 1px solid rgba(103, 189, 82, 0.2);
    color: #67bd52;
}

.card-residential .gateway-profile-tag {
    color: #67bd52;
}

.card-residential .gateway-highlights-list li i {
    color: #67bd52;
}

.card-residential .gateway-btn {
    background-color: rgba(103, 189, 82, 0.05);
    border-color: rgba(103, 189, 82, 0.2);
    color: #67bd52;
}

/* Corporate Gateway Elements Card */
.card-corporate .gateway-icon-wrapper {
    background-color: rgba(0, 255, 213, 0.08);
    border: 1px solid rgba(0, 255, 213, 0.2);
    color: #00ffd5;
}

.card-corporate .gateway-profile-tag.corporate {
    color: #94a3b8;
}

.card-corporate .gateway-highlights-list.corporate li i {
    color: #00ffd5;
}

.card-corporate .gateway-btn.corporate {
    background-color: rgba(0, 255, 213, 0.05);
    border-color: rgba(0, 255, 213, 0.2);
    color: #00ffd5;
}

/* Gateway Card Hover Actions */
.card-residential:hover {
    transform: translateY(-8px);
    border-color: rgba(103, 189, 82, 0.35);
    box-shadow: 0 20px 45px rgba(103, 189, 82, 0.1);
    background: rgba(18, 14, 30, 0.85);
}

.card-residential:hover .gateway-icon-wrapper {
    background-color: #67bd52;
    color: #05030a;
    box-shadow: 0 0 20px rgba(103, 189, 82, 0.4);
}

.card-residential:hover .gateway-btn {
    background-color: #67bd52;
    border-color: #67bd52;
    color: #05030a;
    box-shadow: 0 0 15px rgba(103, 189, 82, 0.3);
}

.card-corporate:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 213, 0.35);
    box-shadow: 0 20px 45px rgba(0, 255, 213, 0.1);
    background: rgba(13, 22, 33, 0.85);
}

.card-corporate:hover .gateway-icon-wrapper {
    background-color: #00ffd5;
    color: #050a0f;
    box-shadow: 0 0 20px rgba(0, 255, 213, 0.4);
}

.card-corporate:hover .gateway-btn.corporate {
    background-color: #00ffd5;
    border-color: #00ffd5;
    color: #050a0f;
    box-shadow: 0 0 15px rgba(0, 255, 213, 0.3);
}

.gateway-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--text-grey);
}

.gateway-footer-address {
    margin-top: 6px;
    color: var(--text-muted);
}

.gateway-blob-1 {
    width: 600px;
    height: 600px;
    background-color: rgba(103, 189, 82, 0.05);
    top: -200px;
    left: -150px;
}

.gateway-blob-2 {
    width: 600px;
    height: 600px;
    background-color: rgba(0, 255, 213, 0.05);
    bottom: -200px;
    right: -150px;
}

.gateway-body .bg-ambient-glows {
    opacity: 1;
}

/* Media Query Adaptations for B2B/Gateway */
@media (max-width: 900px) {
    .gateway-header {
        text-align: center;
        max-width: 500px;
    }
    
    .gateway-logo {
        margin: 0 auto 16px auto;
    }

    .gateway-tagline {
        font-size: 1.15rem;
        margin: 0 auto;
    }

    .gateway-choices {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
    }
    
    .gateway-card {
        padding: 36px;
    }
}

@media (max-width: 768px) {
    .corp-lead-form {
        grid-template-columns: 1fr;
    }
    
    .corporate-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .corporate-contact-form {
        padding: 24px;
    }
}

/* ==========================================================================
   Premium Page Transition System (Shutter Wipe)
   ========================================================================== */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #0a0815 0%, #050308 100%);
    z-index: 999999;
    pointer-events: auto;
    transform: translateY(0);
    transition: transform 0.65s cubic-bezier(0.85, 0, 0.15, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Loading animation spinner inside transition */
.page-transition-overlay::after {
    content: '';
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.03);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: transitionSpinner 0.8s linear infinite;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Slide UP out of view when page loaded */
.page-transition-overlay.loaded {
    transform: translateY(-100%);
    pointer-events: none;
}

.page-transition-overlay.loaded::after {
    opacity: 0;
}

/* Slide UP into view on page exit */
.page-transition-overlay.exit {
    transform: translateY(0);
    pointer-events: auto;
}

.page-transition-overlay.exit::after {
    opacity: 1;
}

/* Shutter moving glow line */
.page-transition-overlay .shutter-glow-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 15px var(--primary-glow);
}

@keyframes transitionSpinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   Background Parallax Image Carousel for Post-Hero Sections
   ========================================================================== */
.sections-wrapper-with-bg {
    position: relative;
    overflow: hidden;
}

.bg-sections-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.bg-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.bg-carousel-slide.active {
    opacity: 0.35; /* Increased opacity to show the background images better */
}

/* Dark gradient overlay to blend images and sections */
.bg-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(5, 3, 10, 0.95) 0%, 
        rgba(5, 3, 10, 0.55) 10%, 
        rgba(5, 3, 10, 0.55) 90%, 
        rgba(5, 3, 10, 0.95) 100%
    );
    z-index: -1;
}

/* Make section backgrounds translucent for background slideshow to bleed through */
.advantages-section {
    background-color: rgba(10, 8, 20, 0.35) !important;
}

.plans-section {
    background-color: rgba(6, 4, 11, 0.45) !important;
}

.about-section {
    background-color: rgba(10, 8, 20, 0.35) !important;
}

.contact-section {
    background-color: rgba(5, 3, 8, 0.45) !important;
}


.main-footer {
    background-color: rgba(3, 2, 6, 0.85) !important;
}

/* Media Query Adaptations for Parallax */
@media (max-width: 1024px) {
    .bg-carousel-slide {
        background-attachment: scroll;
    }
}

/* ==========================================================================
   BGP Interconnection Request Form Styles
   ========================================================================== */
.bgp-hero-section {
    padding: 140px 0 80px 0;
    position: relative;
    z-index: 1;
}

.bgp-header-panel {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.bgp-brand-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.bgp-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 255, 213, 0.05);
    border: 1px solid rgba(0, 255, 213, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    color: #e2e8f0;
}

.bgp-meta-item i {
    width: 14px;
    height: 14px;
    color: var(--primary-corp); /* Cyan */
}

.bgp-page-title {
    font-family: var(--font-outfit);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #ffffff;
}

.bgp-page-title span {
    color: var(--primary-corp); /* Cyan */
    text-shadow: 0 0 20px rgba(0, 255, 213, 0.2);
}

.bgp-page-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.bgp-form {
    max-width: 900px;
    margin: 0 auto;
}

.bgp-card {
    background: linear-gradient(135deg, rgba(7, 15, 22, 0.75), rgba(3, 8, 12, 0.85));
    border: 1px solid rgba(0, 255, 213, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.bgp-card:hover {
    border-color: rgba(0, 255, 213, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 255, 213, 0.05);
}

.bgp-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.header-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(0, 255, 213, 0.1);
    color: var(--primary-corp);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon-box i {
    width: 20px;
    height: 20px;
}

.bgp-card-header h3 {
    font-family: var(--font-outfit);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

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

.bgp-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.input-helper {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}

.section-helper-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Tables inside form */
.bgp-table-responsive {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 10px;
}

.bgp-table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(5, 10, 15, 0.3);
    text-align: left;
}

.bgp-table th, .bgp-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: middle;
}

.bgp-table th {
    font-family: var(--font-outfit);
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    background-color: rgba(7, 15, 22, 0.8);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bgp-table tbody tr:last-child td {
    border-bottom: none;
}

.version-label {
    font-family: var(--font-outfit);
    font-weight: 900;
    font-size: 1.1rem;
    text-align: center;
}

.version-label.ipv4-theme {
    color: #00ffd5;
}

.version-label.ipv6-theme {
    color: #a855f7; /* Violet */
}

.table-input-wrapper {
    position: relative;
}

.table-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    pointer-events: none;
}

.bgp-table input[type="text"] {
    width: 100%;
    background-color: rgba(5, 10, 15, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    padding: 10px 12px 10px 36px !important;
    border-radius: 6px !important;
    font-size: 0.9rem !important;
    transition: var(--transition-smooth) !important;
}

.bgp-table input[type="text"]:focus {
    border-color: var(--primary-corp) !important;
    box-shadow: 0 0 10px rgba(0, 255, 213, 0.15) !important;
    outline: none !important;
}

.bgp-table select {
    width: 100%;
    background-color: rgba(5, 10, 15, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    padding: 10px 12px !important;
    border-radius: 6px !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: var(--transition-smooth) !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a0aec0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 16px !important;
    padding-right: 36px !important;
}

.bgp-table select:focus {
    border-color: var(--primary-corp) !important;
    outline: none !important;
}

.policy-name {
    font-weight: 500;
    color: #e2e8f0;
    font-size: 0.95rem;
}

/* Custom Styled Checkboxes for Table */
.checkbox-group {
    display: inline-flex;
    gap: 20px;
    justify-content: center;
}

.checkbox-container {
    display: inline-flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
    user-select: none;
    gap: 8px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-checkmark {
    position: relative;
    height: 18px;
    width: 18px;
    background-color: rgba(5, 10, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.checkbox-container:hover input ~ .checkbox-checkmark {
    border-color: var(--primary-corp);
}

.checkbox-container input:checked ~ .checkbox-checkmark {
    background-color: var(--primary-corp);
    border-color: var(--primary-corp);
    box-shadow: 0 0 10px rgba(0, 255, 213, 0.2);
}

.checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkbox-checkmark:after {
    display: block;
}

.checkbox-container .checkbox-checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #050a0f;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ span {
    color: #ffffff;
}

/* Password field visibility custom triggers */
.select-field-wrapper {
    position: relative;
}

.field-action-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    z-index: 10;
}

.field-action-btn:hover {
    color: #ffffff;
}

.field-action-btn i {
    width: 16px;
    height: 16px;
}

/* Comments textarea wrapper */
.text-area-wrapper-bgp textarea {
    width: 100%;
    background-color: rgba(5, 10, 15, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    padding: 16px !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    font-family: inherit !important;
    resize: vertical !important;
    transition: var(--transition-smooth) !important;
}

.text-area-wrapper-bgp textarea:focus {
    border-color: var(--primary-corp) !important;
    box-shadow: 0 0 15px rgba(0, 255, 213, 0.15) !important;
    outline: none !important;
}

.bgp-submit-wrapper {
    margin-top: 40px;
    margin-bottom: 80px;
}

.bgp-btn-glow {
    font-size: 1.1rem !important;
    padding: 16px !important;
}

/* Responsive Adaptations for BGP */
@media (max-width: 768px) {
    .bgp-hero-section {
        padding: 110px 0 60px 0;
    }
    
    .bgp-page-title {
        font-size: 2.2rem;
    }
    
    .bgp-grid-3, .bgp-grid-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .bgp-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .bgp-table th, .bgp-table td {
        padding: 10px 12px;
    }
}





