:root {
    --primary-color: #0f172a;
    --primary-dark: #1e1b4b;
    --secondary-color: #7c3aed;
    --accent-color: #06b6d4;
    --accent-light: #a78bfa;
    --dark: #0f172a;
    --dark-light: #1e1b4b;
    --light: #f8fafc;
    --white: #ffffff;
    --gray: #94a3b8;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.logo {
    cursor: pointer;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.2);
}

.logo-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(6, 182, 212, 0.3));
}

.logo-text h2 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.2;
}

.logo-text .dev-text {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.logo-subtitle {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

/* Grande Lua Flutuante */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25) 0%, rgba(167, 139, 250, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -150px;
    animation: moonFloat 30s ease-in-out infinite, moonPulse 8s ease-in-out infinite;
    filter: blur(2px);
    z-index: 2;
    box-shadow: 0 0 150px rgba(167, 139, 250, 0.3), inset -30px -30px 60px rgba(139, 92, 246, 0.2);
}



@keyframes moonFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    25% {
        transform: translateY(-50px) translateX(-30px) scale(1.1);
    }
    50% {
        transform: translateY(-100px) translateX(30px) scale(0.95);
    }
    75% {
        transform: translateY(-50px) translateX(-50px) scale(1.05);
    }
}

@keyframes moonPulse {
    0%, 100% {
        filter: blur(2px) brightness(1);
        box-shadow: 0 0 100px rgba(167, 139, 250, 0.2), inset -30px -30px 60px rgba(139, 92, 246, 0.15);
    }
    50% {
        filter: blur(1px) brightness(1.3);
        box-shadow: 0 0 180px rgba(167, 139, 250, 0.5), inset -30px -30px 80px rgba(139, 92, 246, 0.3), 0 0 80px rgba(6, 182, 212, 0.3);
    }
}

/* Lua Menor Secundária */
.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 35% 35%, rgba(6, 182, 212, 0.25) 0%, rgba(124, 58, 237, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    animation: moonFloat2 35s ease-in-out infinite, moonPulse2 10s ease-in-out infinite;
    filter: blur(3px);
    z-index: 2;
    box-shadow: 0 0 120px rgba(6, 182, 212, 0.2), inset -20px -20px 40px rgba(124, 58, 237, 0.15);
}

@keyframes moonFloat2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    25% {
        transform: translateY(40px) translateX(50px) scale(0.9);
    }
    50% {
        transform: translateY(80px) translateX(-40px) scale(1.1);
    }
    75% {
        transform: translateY(40px) translateX(60px) scale(0.95);
    }
}

@keyframes moonPulse2 {
    0%, 100% {
        filter: blur(3px) brightness(0.8);
        box-shadow: 0 0 80px rgba(6, 182, 212, 0.1), inset -20px -20px 40px rgba(124, 58, 237, 0.1);
    }
    50% {
        filter: blur(2px) brightness(1.2);
        box-shadow: 0 0 150px rgba(6, 182, 212, 0.4), inset -20px -20px 50px rgba(124, 58, 237, 0.25), 0 0 100px rgba(167, 139, 250, 0.2);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../public/img/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}
    
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.4) 0%, rgba(30, 27, 75, 0.4) 25%, rgba(45, 27, 105, 0.4) 50%, rgba(15, 23, 42, 0.4) 75%, rgba(6, 182, 212, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    animation: slideInUp 1s ease-out;
}

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

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5), 0 0 50px rgba(167, 139, 250, 0.2), 0 0 80px rgba(6, 182, 212, 0.1);
    line-height: 1.2;
    animation: titleGlowLunar 4s ease-in-out infinite, titleBreathe 3s ease-in-out infinite;
    letter-spacing: 1px;
}

@keyframes titleGlowLunar {
    0%, 100% {
        text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(167, 139, 250, 0.2), 0 0 60px rgba(124, 58, 237, 0.1);
    }
    50% {
        text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.6), 0 0 80px rgba(167, 139, 250, 0.5), 0 0 120px rgba(6, 182, 212, 0.3), 0 0 180px rgba(124, 58, 237, 0.2);
    }
}

@keyframes titleBreathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: subtitleSlide 1.2s ease-out, subtitleGlow 4s ease-in-out infinite 0.5s;
}

@keyframes subtitleGlow {
    0%, 100% {
        opacity: 0.9;
        text-shadow: 0 0 10px rgba(167, 139, 250, 0.2), 0 0 20px rgba(6, 182, 212, 0.1);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(167, 139, 250, 0.4), 0 0 50px rgba(6, 182, 212, 0.2);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite, glow 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn i {
    margin-right: 8px;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    border-radius: 50px;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    color: var(--secondary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    z-index: 1;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: buttonsSlide 1.3s ease-out;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    animation: statsSlide 1.4s ease-out;
}

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

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
}

.hero-stat i {
    font-size: 20px;
}

.highlight {
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--light);
}

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

.about-text p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-card > * {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.service-card:hover > * {
    color: var(--white);
}

.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact {
    background: var(--light);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--gray);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background: var(--white);
    padding: 0 5px;
    color: var(--primary-color);
}

.contact-form .btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.contact-form .btn:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.social-link {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }
}

/* Success Message */
.success-message {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    transform: translateX(400px);
    transition: transform 0.5s ease;
    z-index: 2000;
}

.success-message.show {
    transform: translateX(0);
}

/* Loading Animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

/* Why Choose Section */
.why-choose {
    background: var(--light);
}

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

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Promo Section */
.promo-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 25%, #1e1b4b 50%, #4c1d95 75%, #1e1b4b 100%);
    background-size: 400% 400%;
    animation: promoGalaxyBackground 25s ease infinite;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

@keyframes promoGalaxyBackground {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 50% 100%;
    }
    75% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Lua Grande da Promo */
.promo-section::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9) 0%, rgba(167, 139, 250, 0.4) 30%, rgba(124, 58, 237, 0.2) 60%, transparent 80%);
    border-radius: 50%;
    top: 50px;
    right: 100px;
    animation: promoMoonFloat 20s ease-in-out infinite, promoMoonGlow 8s ease-in-out infinite;
    filter: blur(1px);
    z-index: 2;
    box-shadow: 0 0 80px rgba(167, 139, 250, 0.3), inset -20px -20px 50px rgba(139, 92, 246, 0.2);
}

@keyframes promoMoonFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(5deg);
    }
    50% {
        transform: translateY(-60px) translateX(-20px) rotate(-5deg);
    }
    75% {
        transform: translateY(-30px) translateX(30px) rotate(3deg);
    }
}

@keyframes promoMoonGlow {
    0%, 100% {
        filter: blur(1px) brightness(1);
        box-shadow: 0 0 80px rgba(167, 139, 250, 0.3), inset -20px -20px 50px rgba(139, 92, 246, 0.2);
    }
    50% {
        filter: blur(0.5px) brightness(1.4);
        box-shadow: 0 0 150px rgba(167, 139, 250, 0.6), inset -20px -20px 70px rgba(139, 92, 246, 0.4), 0 0 100px rgba(255, 255, 255, 0.3);
    }
}

/* Lua Menor da Promo */
.promo-section::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 40% 40%, rgba(251, 191, 36, 0.8) 0%, rgba(236, 72, 153, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    bottom: 100px;
    left: 80px;
    animation: promoMoonFloat2 25s ease-in-out infinite, promoMoonGlow2 10s ease-in-out infinite;
    filter: blur(2px);
    z-index: 2;
    box-shadow: 0 0 100px rgba(251, 191, 36, 0.3), inset -15px -15px 35px rgba(236, 72, 153, 0.2);
}

@keyframes promoMoonFloat2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    33% {
        transform: translateY(40px) translateX(-30px) scale(1.05);
    }
    66% {
        transform: translateY(-40px) translateX(40px) scale(0.95);
    }
}

@keyframes promoMoonGlow2 {
    0%, 100% {
        filter: blur(2px) brightness(0.9);
        box-shadow: 0 0 100px rgba(251, 191, 36, 0.3), inset -15px -15px 35px rgba(236, 72, 153, 0.2);
    }
    50% {
        filter: blur(1px) brightness(1.3);
        box-shadow: 0 0 180px rgba(251, 191, 36, 0.6), inset -15px -15px 50px rgba(236, 72, 153, 0.4), 0 0 120px rgba(255, 255, 255, 0.2);
    }
}

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

.promo-section .section-header {
    position: relative;
    z-index: 10;
}

.promo-section .section-title,
.promo-section .section-subtitle {
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.promo-section .section-badge {
    background: rgba(236, 72, 153, 0.9);
    backdrop-filter: blur(10px);
}

.promo-timer {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.timer-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.timer-display {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.timer-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.timer-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.timer-label {
    display: block;
    font-size: 14px;
    margin-top: 8px;
    opacity: 0.9;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.promo-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.promo-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.promo-card.hot-deal {
    border-color: #ef4444;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(239, 68, 68, 0.6);
    }
}

.promo-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #ef4444;
    color: var(--white);
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.promo-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
}

.promo-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--dark);
}

.promo-discount {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
}

.old-price {
    display: block;
    font-size: 18px;
    color: var(--gray);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.new-price {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 10px;
}

.discount-badge {
    display: inline-block;
    background: #ef4444;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.promo-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.promo-features li {
    padding: 10px 0;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.promo-features i {
    color: #10b981;
    font-size: 16px;
}

.promo-btn {
    display: block;
    width: 100%;
    padding: 18px;
    background: #25D366;
    color: var(--white);
    text-align: center;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.promo-btn:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.promo-urgency {
    text-align: center;
    color: #ef4444;
    font-weight: 700;
    margin-top: 15px;
    font-size: 14px;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.promo-cta {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.promo-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark);
}

.promo-cta p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 25px;
}

/* Services Section Updates */
.service-card {
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.service-card.featured {
    border: 2px solid var(--primary-color);
}

.service-features {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: #10b981;
    font-size: 14px;
}

.service-card:hover .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card:hover .service-features i {
    color: var(--white);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card:hover .service-btn {
    color: var(--white);
}

/* Portfolio Section */
.portfolio {
    background: var(--light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.7), transparent);
    padding: 40px 20px 20px;
    color: var(--white);
    transform: translateY(80px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    font-size: 24px;
    margin-bottom: 8px;
}

.portfolio-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.portfolio-result {
    display: inline-block;
    background: #10b981;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.portfolio-btn {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.portfolio-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.portfolio-cta h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.portfolio-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Packages Section */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.package-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-15px);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
}

.package-header h3 {
    font-size: 28px;
    margin-bottom: 5px;
    color: var(--dark);
}

.package-header p {
    color: var(--gray);
    font-size: 14px;
}

.package-price {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 2px solid #f1f5f9;
    border-bottom: 2px solid #f1f5f9;
}

.price-currency {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
}

.price-value {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 5px;
}

.price-period {
    color: var(--gray);
    font-size: 16px;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    padding: 12px 0;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.package-features i {
    color: #10b981;
    font-size: 16px;
}

.package-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.guarantee-box {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.guarantee-box i {
    font-size: 48px;
    margin-bottom: 15px;
}

.guarantee-box h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
    background: var(--light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stars {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.testimonial-author h4 {
    margin-bottom: 3px;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-urgency {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
}

.cta-urgency i {
    color: #fbbf24;
}

/* Contact Section Updates */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

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

.form-privacy {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    margin-top: 15px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.info-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-card span {
    display: block;
    color: var(--gray);
    font-size: 14px;
    margin-top: 5px;
}

.status-online {
    color: #10b981 !important;
    font-weight: 600;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.badge-item {
    background: var(--white);
    padding: 20px 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.badge-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.badge-item span {
    display: block;
    font-size: 12px;
    color: var(--dark);
    line-height: 1.3;
}

/* Footer Updates */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-col ul li i {
    margin-right: 8px;
    color: var(--primary-color);
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-badges {
    display: flex;
    gap: 20px;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-badges i {
    color: #10b981;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #20a652 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 35px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
    content: attr(title);
    position: absolute;
    bottom: 85px;
    right: 0;
    background: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    bottom: 78px;
    right: 15px;
    width: 10px;
    height: 10px;
    background: #25D366;
    border-radius: 2px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: rotate(45deg);
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* Responsive Updates */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .cta-content h2 {
        font-size: 32px;
    }

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

    .section-title {
        font-size: 36px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}
