:root {
    /* Brand Colors extracted from logo */
    --clr-cyan: #10BDE0;
    --clr-pink: #F61168;
    --clr-purple: #5C2B88;
    --clr-white: #FFFFFF;
    --clr-light: #F8F9FA;
    --clr-dark: #2A2A2A;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--clr-cyan), #0d9ab8);
    --grad-secondary: linear-gradient(135deg, var(--clr-pink), #c70b52);
    --grad-accent: linear-gradient(135deg, var(--clr-purple), #431f63);
    
    /* Shadows */
    --shadow-soft: 0 8px 30px rgba(0,0,0,0.05);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    
    /* Font */
    --font-main: 'Nunito', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--clr-dark);
    background-color: var(--clr-light);
    overflow-x: hidden;
    position: relative;
}

/* Background Blobs for Modern Aesthetic */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
    animation: moveBlobs 20s infinite alternate;
}

.bg-shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(16, 189, 224, 0.3);
    top: -10%;
    left: -10%;
}

.bg-shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(246, 17, 104, 0.2);
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}

.bg-shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(92, 43, 136, 0.2);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes moveBlobs {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.2); }
}

/* Utility Classes */
.section {
    padding: 80px 20px;
    position: relative;
}

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

.text-center {
    text-align: center;
}

.mt-2 { margin-top: 1rem; }

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--clr-purple);
    margin-bottom: 1.5rem;
}

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

.section-description {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Glassmorphism Classes */
.glass-section {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: var(--shadow-glass);
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(31, 38, 135, 0.15);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--grad-secondary);
    color: var(--clr-white);
    box-shadow: 0 10px 20px rgba(246, 17, 104, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(246, 17, 104, 0.4);
}

.btn-secondary {
    background: var(--clr-white);
    color: var(--clr-cyan);
    border: 2px solid var(--clr-cyan);
}

.btn-secondary:hover {
    background: var(--clr-cyan);
    color: var(--clr-white);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 45px 0 15px 0;
    transition: all 0.4s ease;
}

.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: repeating-linear-gradient(
        to right,
        var(--clr-pink) 0, var(--clr-pink) 25px,
        var(--clr-purple) 25px, var(--clr-purple) 50px,
        var(--clr-cyan) 50px, var(--clr-cyan) 75px,
        #8cc63f 75px, #8cc63f 100px
    );
}

.navbar::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 15px;
    background-size: 100px 15px;
    background-image: 
        radial-gradient(circle at 12.5px 0, var(--clr-pink) 12px, transparent 12.5px),
        radial-gradient(circle at 37.5px 0, var(--clr-purple) 12px, transparent 12.5px),
        radial-gradient(circle at 62.5px 0, var(--clr-cyan) 12px, transparent 12.5px),
        radial-gradient(circle at 87.5px 0, #8cc63f 12px, transparent 12.5px);
    background-repeat: repeat-x;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-soft);
    padding: 40px 0 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--clr-dark);
    font-weight: 800;
    font-size: 1.1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--clr-cyan);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-links a:hover {
    color: var(--clr-cyan);
}

.btn-whatsapp-nav {
    background: #25D366;
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--clr-purple);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--clr-purple);
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--clr-cyan);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(246, 17, 104, 0.2);
    z-index: -1;
    border-radius: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.blob-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.blob-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: var(--grad-primary);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
    animation: morph 8s ease-in-out infinite alternate;
    opacity: 0.8;
}

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

.hero-mascot {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.floating {
    animation: float 4s ease-in-out infinite;
}

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

/* Split Section (Product) */
.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
}

.video-container {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    position: relative;
}

.video-container video {
    width: 100%;
    display: block;
    border-radius: 24px;
    object-fit: cover;
}

.content-side {
    flex: 1;
}

.content-side h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--clr-purple);
    margin-bottom: 20px;
}

.content-side h2 span {
    color: var(--clr-pink);
}

.content-side p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

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

.features-list li {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--clr-dark);
}

.features-list li i {
    color: var(--clr-cyan);
    font-size: 1.5rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 4/3;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(16, 189, 224, 0.3);
}

.info-card.highlight-card .icon-box {
    background: #25D366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--clr-purple);
    margin-bottom: 15px;
    font-weight: 800;
}

.info-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: var(--clr-dark);
    padding: 60px 20px 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--clr-light);
    border-radius: 0 0 50% 50%;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 100px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-links a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--clr-pink);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .split-section {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links, .btn-whatsapp-nav {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    /* Mobile Menu Active State */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        padding: 20px;
        box-shadow: var(--shadow-soft);
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
