/* Reset e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(135deg, #060126 0%, #0a0235 50%, #0d0340 100%);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 5, 60, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(242, 34, 89, 0.3);
}

.navbar {
    padding: 1rem 0;
}

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

.logo h2 {
    font-family: 'Orbitron', 'Exo 2', monospace;
    background: linear-gradient(45deg, #F22259, #F20587, #F29F05, #F27405);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(242, 34, 89, 0.5);
    position: relative;
    animation: logoGlow 3s ease-in-out infinite alternate;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo h2:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(242, 34, 89, 0.8));
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(242, 34, 89, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(242, 34, 89, 0.8)) drop-shadow(0 0 30px rgba(242, 5, 135, 0.4));
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #F22259;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #F22259, #F20587);
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #060126 0%, #0a0235 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out;
}

.main-slogan {
    background: linear-gradient(45deg, #FF4081, #FF6B35, #FFB347, #FFA726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 800;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 20px rgba(255, 64, 129, 0.4));
    animation: glow 2s ease-in-out infinite alternate;
    display: block;
    padding: 15px 20px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

@keyframes glow {
    from {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 15px rgba(255, 64, 129, 0.4));
    }
    to {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 25px rgba(255, 107, 53, 0.6));
    }
}

.highlight {
    background: linear-gradient(45deg, #F22259, #F20587, #F29F05, #F27405);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 4px;
    border-radius: 4px;
    position: relative;
    font-weight: 700;
}

.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(242, 34, 89, 0.1), rgba(242, 5, 135, 0.1), rgba(242, 159, 5, 0.1), rgba(242, 116, 5, 0.1));
    border-radius: 4px;
    z-index: -1;
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 90%;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #F22259, #F20587, #F29F05);
    color: white;
    box-shadow: 0 8px 25px rgba(242, 34, 89, 0.4);
    position: relative;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(242, 34, 89, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #F29F05;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, #F29F05, #F27405);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: #060126;
    transform: translateY(-3px) scale(1.02);
    border-color: #F27405;
    box-shadow: 0 8px 25px rgba(242, 159, 5, 0.4);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Floating Elements */
.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: float 8s ease-in-out infinite;
    cursor: pointer;
}

.floating-card:hover {
    transform: translateY(-15px) scale(1.1) rotate(5deg);
    background: rgba(242, 34, 89, 0.25);
    border-color: rgba(242, 34, 89, 0.6);
    box-shadow: 0 15px 45px rgba(242, 34, 89, 0.4);
    animation: bounce 0.6s ease-out;
}

.floating-card:active {
    transform: translateY(-5px) scale(0.95);
    transition: all 0.1s ease;
}

.floating-card i {
    font-size: 2rem;
    background: linear-gradient(45deg, #F22259, #F20587, #F29F05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    transform-origin: center;
}

.floating-card:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(242, 34, 89, 0.6));
}

.card-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.card-1:hover i {
    animation: wiggle 0.5s ease-in-out;
}

.card-2 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.card-2:hover i {
    animation: pulse 0.8s ease-in-out;
}

.card-3 {
    top: 20%;
    right: 10%;
    animation-delay: 4s;
}

.card-3:hover i {
    animation: bounce 0.6s ease-out;
}

.card-4 {
    top: 70%;
    right: 20%;
    animation-delay: 6s;
}

.card-4:hover i {
    animation: float 1s ease-in-out;
}

/* Hero Decoration */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(242, 34, 89, 0.1), rgba(242, 159, 5, 0.1));
    animation: rotate 20s linear infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 60%;
    animation-duration: 25s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 70%;
    left: 70%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 80%;
    animation-duration: 20s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(2deg) scale(1.02);
    }
    50% {
        transform: translateY(-25px) rotate(0deg) scale(1.05);
    }
    75% {
        transform: translateY(-10px) rotate(-2deg) scale(1.02);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-15px) scale(1.1);
    }
    60% {
        transform: translateY(-8px) scale(1.05);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 12px 40px rgba(242, 34, 89, 0.4);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(3deg);
    }
    75% {
        transform: rotate(-3deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0235 0%, #0d0340 50%, #060126 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 34, 89, 0.5), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #F22259, #F29F05);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 34, 89, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(242, 34, 89, 0.5);
    box-shadow: 0 20px 40px rgba(242, 34, 89, 0.2);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #F22259, #F20587, #F29F05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(242, 34, 89, 0.3);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #F22259, #F20587, #F29F05, #F27405);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.service-card h3 {
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

.service-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #060126 0%, #0a0235 50%, #0d0340 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 159, 5, 0.5), transparent);
}

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

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2.5rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #F29F05, #F27405);
    border-radius: 2px;
}

.about-text p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}



/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0235 0%, #060126 50%, #0d0340 100%);
    position: relative;
    overflow: hidden;
}

.contact-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.contact-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(242, 159, 5, 0.1), rgba(242, 116, 5, 0.1));
    animation: float 6s ease-in-out infinite;
}

.contact-circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.contact-circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.contact-circle-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
}

.contact-intro {
    margin-bottom: 3rem;
}

.contact-intro h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-intro p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 159, 5, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 159, 5, 0.3);
    box-shadow: 0 10px 30px rgba(242, 159, 5, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #F29F05, #F27405);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.contact-details span {
    color: rgba(242, 159, 5, 0.8);
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F29F05, #F27405, #F22259);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #F29F05;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(242, 159, 5, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #060126;
    color: white;
    padding: 0.5rem;
}

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.form-submit i {
    transition: transform 0.3s ease;
}

.form-submit:hover i {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #060126 0%, #0a0235 50%, #0d0340 100%);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(90deg, transparent, rgba(242, 159, 5, 0.1), transparent);
    transform: skewY(-2deg);
    transform-origin: top left;
}

.footer-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(242, 159, 5, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s infinite ease-in-out;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 60%; left: 20%; animation-delay: 2s; }
.particle-3 { top: 30%; left: 70%; animation-delay: 4s; }
.particle-4 { top: 80%; left: 80%; animation-delay: 6s; }
.particle-5 { top: 50%; left: 50%; animation-delay: 1s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    padding-right: 2rem;
}

.brand-logo h3 {
    color: white;
    font-family: 'Orbitron', 'Exo 2', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #F29F05, #F27405, #F2059F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(242, 116, 5, 0.3);
    transition: all 0.3s ease;
}

.brand-logo h3:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(242, 116, 5, 0.6);
}

.brand-tagline {
    color: rgba(242, 159, 5, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section h3 {
    background: linear-gradient(45deg, #F22259, #F20587, #F29F05, #F27405);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h4 i {
    color: #F29F05;
    font-size: 1rem;
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
}

.footer-section a:hover {
    color: #F22259;
}

.footer-section ul li a:hover {
    color: #F29F05;
    transform: translateX(5px);
}

.footer-section ul li a i {
    font-size: 0.9rem;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 120px;
    justify-content: center;
}

.social-link:hover {
    background: linear-gradient(45deg, #F29F05, #F27405);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 159, 5, 0.3);
}

.social-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item-footer {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-footer i {
    color: #F29F05;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    width: 20px;
}

.contact-item-footer span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-item-footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-footer a:hover {
    color: #F29F05;
}

.contact-item-footer p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F29F05;
}

.footer-signature {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-signature p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-signature i {
    color: #F22259;
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .floating-card {
        padding: 1rem;
        font-size: 0.8rem;
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
    
    .decoration-circle {
        opacity: 0.3;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(15, 5, 60, 0.99);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(15px);
        padding: 2rem 0;
        box-shadow: 0 4px 20px rgba(242, 34, 89, 0.4);
        border-top: 1px solid rgba(242, 34, 89, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .floating-card {
        padding: 1rem;
        font-size: 0.8rem;
        border-radius: 15px;
        min-width: 85px;
        min-height: 85px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .floating-card i {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }
    
    .hero {
        padding: 8rem 0 5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        padding: 2rem 15px;
    }
    
    .hero-visual {
        height: 350px;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
        line-height: 1.6;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
        padding: 1rem 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
        border-radius: 20px;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .tech-stack {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 10px;
    }
    
    .section-header {
        margin-bottom: 3rem;
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .contact-info {
        margin-bottom: 2rem;
        padding: 0 15px;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 10px;
        border-radius: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        padding: 0 15px;
    }
    
    .contact-info-footer {
        text-align: left;
        gap: 2rem;
        padding: 0 10px;
    }
    
    .contact-item-footer {
        gap: 1.2rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .contact-item-footer:last-child {
        border-bottom: none;
    }
    
    .contact-item-footer i {
        font-size: 1.3rem;
        width: 25px;
        flex-shrink: 0;
    }
    
    .contact-item-footer span {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-item-footer a,
    .contact-item-footer p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 0 15px;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer-links a {
        padding: 0.5rem 1rem;
        border-radius: 25px;
        transition: all 0.3s ease;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .social-link {
        min-width: 85px;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        border-radius: 25px;
    }
    
    .social-link i {
        font-size: 1.1rem;
        margin-right: 0.3rem;
    }
    
    .about {
        padding: 4rem 0;
    }
    
    .about-content {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .floating-card {
        padding: 0.8rem;
        font-size: 0.7rem;
        border-radius: 12px;
        min-width: 75px;
        min-height: 75px;
    }
    
    .floating-card i {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-container {
        padding: 1.5rem 10px;
        gap: 2rem;
    }
    
    .hero-visual {
        height: 280px;
    }
    
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 5px;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        max-width: 240px;
        padding: 0.9rem 1.8rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .services-grid {
        gap: 1.5rem;
        padding: 0 5px;
    }
    
    .service-card {
        padding: 1.5rem 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0 10px;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
        margin: 0 5px;
    }
    
    .contact-item {
        padding: 1.5rem 1.2rem;
        margin-bottom: 1.2rem;
        gap: 0.8rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .contact-details span {
        font-size: 0.8rem;
    }
    
    .footer-content {
        gap: 2rem;
        padding: 0 10px;
    }
    
    .contact-info-footer {
        gap: 1.5rem;
        padding: 0 5px;
    }
    
    .contact-item-footer {
        gap: 1rem;
        padding: 0.8rem 0;
    }
    
    .contact-item-footer i {
        font-size: 1.2rem;
        width: 22px;
    }
    
    .contact-item-footer span {
        font-size: 0.8rem;
    }
    
    .contact-item-footer a,
    .contact-item-footer p {
        font-size: 0.9rem;
    }
    
    .social-link {
        min-width: 75px;
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .about {
        padding: 5rem 0;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .contact {
        padding: 5rem 0;
    }
    
    .contact-item {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        padding: 1.8rem 1.5rem;
        border-radius: 18px;
        margin-bottom: 1.5rem;
        align-items: flex-start;
    }
    
    .whatsapp-card {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        padding: 1.8rem 1.5rem;
        border-radius: 18px;
        margin-bottom: 1.5rem;
        align-items: flex-start;
        transition: all 0.3s ease;
    }
    
    .whatsapp-card:hover {
        background: rgba(37, 211, 102, 0.15);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .contact-icon i {
        font-size: 1.3rem;
    }
    
    .contact-details {
        flex: 1;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-details p {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-details span {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .hero-visual {
         height: 300px;
     }
     
     .logo-animation {
         width: 250px;
         height: 250px;
     }
     
     .letter-a {
         font-size: 6rem;
     }
     
     .rocket-orbit {
         width: 200px;
         height: 200px;
     }
     
     .rocket {
        font-size: 1.5rem;
    }
}

/* WhatsApp Pop-up Button */
.whatsapp-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
    gap: 10px;
    min-width: 60px;
    justify-content: center;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.whatsapp-btn i {
    font-size: 24px;
    transition: transform 0.3s ease;
}

/* WhatsApp Card Styles */
.whatsapp-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    cursor: pointer;
}

.whatsapp-card:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.2);
}

.whatsapp-card:hover .contact-icon i {
    color: #25D366;
    transform: scale(1.1);
}

.whatsapp-card:hover h4 {
    color: #25D366;
}

.whatsapp-card:active {
    transform: translateY(-4px);
    transition: all 0.1s ease;
}

.whatsapp-card:visited {
    color: inherit;
}

.whatsapp-btn:hover i {
    transform: rotate(15deg);
}

.whatsapp-text {
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-text {
    opacity: 1;
    max-width: 120px;
    margin-left: 5px;
}

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

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-popup {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .whatsapp-btn i {
        font-size: 20px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .main-slogan {
        font-size: 1.6rem;
        padding: 8px;
        margin: 0 10px;
    }
}