/* =========================================
   RESET
========================================= */

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



/* =========================================
   ROOT
========================================= */

:root{

    --primary-color: #6bc22e;
    --secondary-color: #020b3a;

    --dark-bg: #030617;
    --dark-card: rgba(9, 18, 50, 0.72);

    --text-color: #ffffff;
    --text-soft: #b8c1d9;

    --border-color: rgba(255,255,255,0.08);

    --gradient-primary:
        linear-gradient(
            135deg,
            #6bc22e 0%,
            #48a512 100%
        );

    --gradient-dark:
        linear-gradient(
            135deg,
            #020b3a 0%,
            #06144f 100%
        );

    --shadow-primary:
        0 10px 40px rgba(107,194,46,0.20);

    --shadow-dark:
        0 10px 40px rgba(0,0,0,0.35);

    --transition:
        all 0.4s ease;

}



/* =========================================
   BODY
========================================= */

body{

    font-family: 'Inter', sans-serif;

    background:
        radial-gradient(circle at top left,
        rgba(107,194,46,0.10),
        transparent 25%),

        radial-gradient(circle at bottom right,
        rgba(0,102,255,0.10),
        transparent 25%),

        #030617;

    color: var(--text-color);

    overflow-x: hidden;

    position: relative;

}



/* =========================================
   PREMIUM GRID
========================================= */

body::before{

    content: '';

    position: fixed;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255,255,255,0.015) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.015) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    pointer-events: none;

    z-index: -2;

}



/* =========================================
   BG EFFECTS
========================================= */

.bg-effects{

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;

    z-index: -1;

    overflow: hidden;

}

.bg-effects::before{

    content: '';

    position: absolute;

    width: 600px;
    height: 600px;

    background:
        radial-gradient(
            circle,
            rgba(107,194,46,0.12),
            transparent 70%
        );

    top: -200px;
    left: -200px;

    filter: blur(80px);

}

.bg-effects::after{

    content: '';

    position: absolute;

    width: 700px;
    height: 700px;

    background:
        radial-gradient(
            circle,
            rgba(0,102,255,0.12),
            transparent 70%
        );

    bottom: -300px;
    right: -300px;

    filter: blur(100px);

}



/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar{

    width: 10px;

}

::-webkit-scrollbar-track{

    background: #020617;

}

::-webkit-scrollbar-thumb{

    background: var(--primary-color);

    border-radius: 30px;

}



/* =========================================
   LINKS
========================================= */

a{

    text-decoration: none;

    transition: var(--transition);

}



/* =========================================
   SECTIONS
========================================= */

section{

    position: relative;

    padding: 120px 0;

}



/* =========================================
   GLOBAL TITLES
========================================= */

.section-header{

    text-align: center;

    max-width: 800px;

    margin: 0 auto 70px;

}

.section-badge{

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(107,194,46,0.12);

    border:
        1px solid rgba(107,194,46,0.20);

    color: var(--primary-color);

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 25px;

    backdrop-filter: blur(12px);

}

.section-title{

    font-size: 52px;

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 25px;

    background:
        linear-gradient(
            to right,
            #ffffff,
            #dbe4ff
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

.section-description{

    color: var(--text-soft);

    font-size: 18px;

    line-height: 1.8;

}



/* =========================================
   NAVBAR
========================================= */

.custom-navbar{

    position: fixed;

    top: 20px;
    left: 50%;

    transform: translateX(-50%);

    width: calc(100% - 60px);

    z-index: 999;

    padding: 16px 28px;

    border-radius: 22px;

    background:
        rgba(5, 12, 35, 0.72);

    border:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);

    box-shadow: var(--shadow-dark);

    transition: var(--transition);

}

.custom-navbar.scrolled{

    top: 12px;

    padding: 12px 24px;

    background:
        rgba(3,8,25,0.88);

}



/* =========================================
   LOGO
========================================= */

.logo-area{

    display: flex;

    align-items: center;

    gap: 15px;

}

.logo-icon{

    position: relative;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

}

.planet-core{

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: var(--primary-color);

    box-shadow:
        0 0 25px rgba(107,194,46,0.8);

}

.planet-ring{

    position: absolute;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    border:
        2px solid rgba(107,194,46,0.7);

    transform: rotate(25deg);

}

.logo-text{

    display: flex;

    flex-direction: column;

    line-height: 1.1;

}

.logo-title{

    font-size: 24px;

    font-weight: 800;

    color: #ffffff;

}

.logo-subtitle{

    font-size: 12px;

    color: var(--text-soft);

    letter-spacing: 2px;

}



/* =========================================
   NAV LINKS
========================================= */

.navbar-nav{

    gap: 15px;

}

.nav-link{

    color: #ffffff !important;

    font-weight: 500;

    padding: 10px 18px !important;

    border-radius: 12px;

}

.nav-link:hover{

    background:
        rgba(255,255,255,0.06);

    color: var(--primary-color) !important;

}



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

.btn-sign,
.btn-primary-custom,
.btn-plan,
.submit-btn,
.contact-whatsapp-btn{

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 16px 28px;

    border-radius: 16px;

    border: none;

    background: var(--gradient-primary);

    color: #ffffff;

    font-weight: 700;

    box-shadow: var(--shadow-primary);

    position: relative;

    overflow: hidden;

}

.btn-sign::after,
.btn-primary-custom::after,
.btn-plan::after,
.submit-btn::after{

    content: '';

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,0.14),
            transparent
        );

    transform: translateX(-100%);

    transition: 0.8s;

}

.btn-sign:hover::after,
.btn-primary-custom:hover::after,
.btn-plan:hover::after,
.submit-btn:hover::after{

    transform: translateX(100%);

}



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

.hero-section{

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    position: relative;

}

.hero-section::before{

    content: '';

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at top right,
            rgba(0,94,255,0.14),
            transparent 30%
        ),

        radial-gradient(
            circle at left,
            rgba(107,194,46,0.10),
            transparent 35%
        );

    z-index: -1;

}

.hero-title{

    font-size: 72px;

    font-weight: 900;

    line-height: 1.05;

    letter-spacing: -3px;

    margin: 30px 0;

}

.hero-subtitle{

    font-size: 20px;

    line-height: 1.8;

    color: var(--text-soft);

    max-width: 650px;

}

.hero-buttons{

    display: flex;

    gap: 20px;

    margin-top: 40px;

    flex-wrap: wrap;

}



/* =========================================
   CARDS
========================================= */

.service-card,
.plan-card,
.coverage-card,
.contact-info-card,
.contact-form-card{

    position: relative;

    padding: 40px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(12,20,50,0.78),
            rgba(5,10,28,0.72)
        );

    border:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(20px);

    transition: var(--transition);

    box-shadow: var(--shadow-dark);

}

.service-card:hover,
.plan-card:hover,
.coverage-card:hover{

    transform:
        translateY(-12px)
        scale(1.02);

}



/* =========================================
   ICONS
========================================= */

.service-icon,
.contact-icon{

    width: 72px;
    height: 72px;

    border-radius: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background:
        rgba(107,194,46,0.12);

    border:
        1px solid rgba(107,194,46,0.18);

    color: var(--primary-color);

    font-size: 28px;

}



/* =========================================
   FORM
========================================= */

.custom-input{

    height: 58px;

    border-radius: 16px;

    border:
        1px solid rgba(255,255,255,0.08);

    background:
        rgba(255,255,255,0.04);

    color: #ffffff;

    padding: 18px;

}

.custom-input:focus{

    background:
        rgba(255,255,255,0.06);

    border-color:
        rgba(107,194,46,0.40);

    box-shadow:
        0 0 0 4px rgba(107,194,46,0.10);

    color: #ffffff;

}



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

.main-footer{

    position: relative;

    padding-top: 120px;

    overflow: hidden;

    background:
        linear-gradient(
            to top,
            rgba(2,11,58,0.95),
            rgba(2,11,58,0.65)
        );

    border-top:
        1px solid rgba(255,255,255,0.06);

}

.main-footer::before{

    content: '';

    position: absolute;

    width: 600px;
    height: 600px;

    background:
        radial-gradient(
            circle,
            rgba(107,194,46,0.08),
            transparent 70%
        );

    left: -200px;
    bottom: -200px;

    filter: blur(80px);

}

.footer-divider{

    width: 100%;
    height: 1px;

    margin: 50px 0;

    background:
        rgba(255,255,255,0.08);

    opacity: 0.5;

}

.footer-bottom{

    padding-bottom: 40px;

}

.footer-links ul{

    list-style: none;

    padding: 0;

}

.footer-links ul li{

    margin-bottom: 14px;

}

.footer-links a{

    color: var(--text-soft);

}

.footer-links a:hover{

    color: var(--primary-color);

}



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

.footer-right{

    display: flex;

    flex-direction: column;

    align-items: flex-end;

}



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

.footer-developed{

    margin-bottom: 6px;

    font-size: 15px;

    color: rgba(255,255,255,0.75);

}



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

.footer-signature{

    margin: 0;

    font-size: 12px;

    color: rgba(255,255,255,0.35);

}

.footer-signature a{

    color: rgba(107,194,46,0.88);

    text-decoration: none;

    font-weight: 600;

    margin-left: 4px;

}

.footer-signature a:hover{

    color: #6bc22e;

}



/* =========================================
   WHATSAPP FLOAT
========================================= */

.whatsapp-float{

    position: fixed;

    right: 30px;
    bottom: 30px;

    width: 68px;
    height: 68px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #25D366;

    color: #ffffff;

    font-size: 32px;

    z-index: 999;

    box-shadow:
        0 10px 35px rgba(37,211,102,0.45);

}



/* =========================================
   SELECTION
========================================= */

::selection{

    background: var(--primary-color);

    color: #ffffff;

}



/* =========================================
   MOBILE
========================================= */

@media(max-width: 768px){

    .hero-title{

        font-size: 42px;

    }

    .section-title{

        font-size: 36px;

    }

    .custom-navbar{

        width: calc(100% - 20px);

        padding: 14px 18px;

    }

    .footer-right{

        align-items: center;

        text-align: center;

        margin-top: 20px;

    }

}