:root {
    --primary: #FFE600; /* Yellow */
    --primary-glow: rgba(255, 230, 0, 0.6);
    --accent: #00f0ff; /* Cyan */
    --accent-glow: rgba(0, 240, 255, 0.6);
    --bg-dark: #001233; /* Deep Blue background */
    --bg-panel: rgba(0, 30, 80, 0.6);
    --text-light: #ffffff;
    --text-muted: #9eb6d6;
    --font-main: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Background Effects - Deep Blue Fiber optic vibes */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(circle at top right, #002266 0%, #000c24 80%);
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
}

.glow-blue {
    top: -20%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
    opacity: 0.15;
}

.glow-cyan {
    bottom: -30%;
    left: -10%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, #ff8800 0%, transparent 60%);
    opacity: 0.15;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    border-radius: 40%;
    background: rgba(0, 240, 255, 0.03);
    animation: rotate 30s linear infinite;
    top: -50%;
    left: -50%;
}

.wave1 {
    border: 1px solid rgba(0, 240, 255, 0.1);
    animation-duration: 25s;
}

.wave2 {
    border: 2px solid rgba(0, 150, 255, 0.05);
    background: transparent;
    animation-duration: 40s;
    animation-direction: reverse;
}

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

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

/* Header */
.header {
    padding: 20px 0;
    background: rgba(0, 12, 36, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

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

/* LOGO */
.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 95px;
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 10px rgba(0, 240, 255, 0.2));
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-outline {
    border: 2px solid var(--accent);
    color: var(--text-light);
    background: rgba(0, 240, 255, 0.1);
}

.btn-outline:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 25px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: #000;
    border: none;
    font-size: 20px;
    padding: 18px 48px;
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 10px 40px var(--primary-glow);
    background: #fff;
}

/* Main Content */
.main {
    min-height: calc(100vh - 95px);
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    animation: slideUp 1s ease-out forwards;
}

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

.badge {
    display: inline-block;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

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

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.hero-title .highlight {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.feature-box {
    background: linear-gradient(90deg, rgba(0, 80, 200, 0.4) 0%, transparent 100%);
    padding: 15px 0 15px 25px;
    border-left: 6px solid var(--accent);
    margin-bottom: 40px;
}

.feature-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #e0f0ff;
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.benefits-list li i {
    color: var(--primary);
    width: 20px;
}

.planos-wrapper {
    margin-top: 20px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.plans-section {
    background: #0d0d0d;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8), 0 0 20px rgba(255, 230, 0, 0.1);
    border: 1px solid rgba(255, 230, 0, 0.3);
    gap: 40px;
}

.plans-list {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plan-item {
    display: flex;
    align-items: center;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    padding: 12px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-item:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 230, 0, 0.4);
}

.plan-name {
    color: #000;
    font-size: 34px;
    font-weight: 900;
    font-style: normal;
    flex: 1;
    display: flex;
    align-items: center;
}

.mega-text {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    border-left: 2px solid #000;
    padding-left: 10px;
    margin-left: 10px;
    color: #000;
}

.plan-details {
    background: transparent;
    color: #000;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.plan-price {
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: baseline;
}

.plan-price strong {
    font-size: 36px;
    font-weight: 900;
    margin: 0 4px;
    line-height: 1;
}

.home-office-section {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(255,230,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
    border: 1px solid rgba(255, 230, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    z-index: 10;
}

.home-office-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
}

.home-office-section h2 strong {
    color: var(--primary);
    font-weight: 900;
}


.contact-card {
    flex: 1;
    color: #fff;
    padding-left: 30px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.contact-card h3 {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.contact-details p {
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-details .subtitle {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

.contact-details .phone {
    font-size: 22px;
    font-weight: 800;
    margin: 5px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details .social {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-details .address {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Visual Side */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeIn 2s ease-out forwards;
}

.tech-shape {
    width: 450px;
    height: 450px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-shape::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 240, 255, 0.2);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 10s ease-in-out infinite alternate;
}

.tech-shape::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border: 2px dashed rgba(255, 230, 0, 0.3);
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    animation: morph 12s ease-in-out infinite alternate-reverse;
}

.tech-inner {
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.center-animated-logo {
    width: 380px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(255, 230, 0, 0.4));
    animation: pulse-icon 2s infinite;
    z-index: 3;
    position: relative;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--accent);
    animation: ripple 3s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pulse-ring.delay {
    animation-delay: 1.5s;
    border-color: var(--primary);
}

@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    100% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

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

@keyframes ripple {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Footer */
.footer {
    background: #00081a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    position: relative;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    max-width: 450px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.address {
    color: var(--text-muted);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.6;
}

.address i {
    color: var(--accent);
    margin-top: 5px;
    font-size: 18px;
}

.footer-social p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 700;
    font-style: italic;
    font-size: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 150, 255, 0.1);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.social-icon:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--accent-glow);
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #5a7b9c;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-box {
        border-left: none;
        border-bottom: 6px solid var(--accent);
        background: linear-gradient(180deg, rgba(0, 80, 200, 0.4) 0%, transparent 100%);
        padding: 20px;
        border-radius: 10px;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 46px;
    }

    .plans-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-card {
        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-top: 30px;
        text-align: center;
        width: 100%;
    }
    
    .contact-details .phone {
        justify-content: center;
    }

    .tech-shape {
        width: 320px;
        height: 320px;
    }
    
    .tech-inner {
        width: 180px;
        height: 180px;
    }
    
    .wifi-icon {
        font-size: 60px;
    }
    
    .footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .address {
        flex-direction: column;
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    .plan-item {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
        gap: 15px;
    }
    
    .plan-details {
        width: 100%;
        justify-content: space-between;
        box-sizing: border-box;
    }
    
    .plan-price strong {
        font-size: 32px;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .home-office-section {
        padding: 25px 15px;
    }
    
    .home-office-section h2 {
        font-size: 24px;
    }
}
