/* Global Styles */
:root {
    --primary-color: #00f3ff;
    --secondary-color: #0066ff;
    --accent-color: #ff00de;
    --dark-bg: #050510;
    --card-bg: rgba(20, 20, 40, 0.7);
    --text-color: #ffffff;
    --text-muted: #a0a0b0;
    --glow-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Background Animation */
.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floating 20s infinite alternate;
}

.globe-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    top: -100px;
    left: -100px;
}

.globe-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-color);
    bottom: -100px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes floating {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-nav:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: var(--glow-shadow);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    max-width: 250px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.5));
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 243, 255, 0.6);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: var(--glow-shadow);
}

.btn-white {
    background: #fff;
    color: var(--dark-bg);
    border: none;
}

.btn-white:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.small {
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* Plans Section */
.plans-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.highlight {
    color: var(--primary-color);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.plan-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.plan-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--primary-color);
}

.price-currency {
    font-size: 1.2rem;
    margin-right: 2px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
}

.price-period {
    color: var(--text-muted);
    margin-left: 5px;
}

.features {
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e0e0;
}

.features i {
    color: var(--primary-color);
}

.plan-card .btn {
    width: 100%;
    justify-content: center;
}

/* Reseller Section */
.reseller-section {
    padding: 100px 0;
    position: relative;
}

.subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 60px;
    margin-top: -50px;
}

.reseller-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.reseller-info h3,
.reseller-pricing h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.reseller-info ul li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.reseller-info ul li i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.socio-card {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(255, 0, 222, 0.2), rgba(0, 102, 255, 0.2));
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--accent-color);
}

.socio-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.socio-card p {
    margin-bottom: 20px;
    color: #ffdce3;
}

.note {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

th,
td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    background: rgba(0, 102, 255, 0.2);
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
}

td strong {
    color: #fff;
    font-size: 1.1rem;
}

.cta-reseller {
    margin-top: 30px;
    text-align: center;
}

/* Footer */
footer {
    background: #02020a;
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    opacity: 0.8;
}

footer p {
    color: #666;
    font-size: 0.9rem;
}

/* WhatsApp Floating Button */
.float-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #25d366;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 243, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0);
    }
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .reseller-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .navbar .logo img {
        height: 40px;
    }

    .btn-nav span {
        display: none;
    }
}