/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #0A0A0A;
    color: #FAFAFA;
    overflow-x: hidden;
}

/* CSS Variables */
:root {
    --neon-blue: #00D4FF;
    --neon-purple: #BF00FF;
    --neon-green: #39FF14;
    --electric-blue: #0080FF;
    --electric-violet: #8A2BE2;
    --electric-lime: #32CD32;
    --dark-primary: #0A0A0A;
    --dark-secondary: #1A1A1A;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Utility classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gradient-text {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.text-white {
    color: #FAFAFA;
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* Gradient backgrounds */
.gradient-blue {
    background: linear-gradient(45deg, var(--neon-blue), var(--electric-blue));
}

.gradient-purple {
    background: linear-gradient(45deg, var(--neon-purple), var(--electric-violet));
}

.gradient-green {
    background: linear-gradient(45deg, var(--neon-green), var(--electric-lime));
}

/* Animations */
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-30px); }
    70% { transform: translateY(-15px); }
    90% { transform: translateY(-4px); }
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

.animate-fade-in-delayed {
    animation: fade-in 1s ease-out 0.3s both;
}

.animate-fade-in-delayed-2 {
    animation: fade-in 1s ease-out 0.6s both;
}

.animate-fade-in-delayed-3 {
    animation: fade-in 1s ease-out 0.9s both;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Particles Background */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A2E 50%, #0A0A0A 100%);
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    animation: float-particle 20s linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0,212,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,212,255,0.1) 0%, transparent 50%, rgba(191,0,255,0.1) 100%);
}

.hero-content {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.brand {
    margin-bottom: 2rem;
}

.brand-container {
    display: inline-block;
    padding: 1rem;
    border-radius: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.brand-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon span {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #D1D5DB;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    position: relative;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: white;
    font-weight: 600;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 212, 255, 0.5);
}

.btn-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-green));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover .btn-gradient-overlay {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 10;
}

.btn-outline {
    padding: 1rem 2rem;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    background: transparent;
    font-weight: 600;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-outline:hover {
    background: var(--neon-green);
    color: black;
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(57, 255, 20, 0.5);
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: rgba(0, 212, 255, 0.2);
}

.floating-2 {
    top: 10rem;
    right: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(191, 0, 255, 0.2);
    animation-delay: 2s;
}

.floating-3 {
    bottom: 5rem;
    left: 5rem;
    width: 6rem;
    height: 6rem;
    background: rgba(57, 255, 20, 0.2);
    animation-delay: 4s;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--neon-blue);
    border-radius: 1.25rem;
    display: flex;
    justify-content: center;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.75rem;
    background: var(--neon-blue);
    border-radius: 0.125rem;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #D1D5DB;
    max-width: 48rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 6xl;
    margin: 0 auto;
}

.service-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.5s ease;
    height: 100%;
    overflow: hidden;
}

.service-card:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-glow {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(40px);
}

.service-card:hover .service-glow {
    opacity: 0.1;
}

.service-card[data-service="1"]:hover .service-glow {
    background: linear-gradient(135deg, var(--neon-blue), var(--electric-blue));
}

.service-card[data-service="2"]:hover .service-glow {
    background: linear-gradient(135deg, var(--neon-purple), var(--electric-violet));
}

.service-card[data-service="3"]:hover .service-glow {
    background: linear-gradient(135deg, var(--neon-green), var(--electric-lime));
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-title {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-description {
    color: #D1D5DB;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #9CA3AF;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-features li {
    transform: translateX(0.5rem);
    color: white;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    margin-right: 0.75rem;
}

.service-overlay {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 0.05;
}

.floating-dot {
    position: absolute;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-dot-1 {
    top: -0.5rem;
    right: -0.5rem;
}

.floating-dot-2 {
    bottom: -0.5rem;
    left: -0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    animation-delay: 0.5s;
}

.service-card:hover .floating-dot {
    opacity: 1;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    position: relative;
}

.process-container {
    max-width: 6xl;
    margin: 0 auto;
}

.process-desktop {
    display: none;
    position: relative;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-green));
    transform: translateY(-50%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    position: relative;
    text-align: center;
    transition: all 0.5s ease;
}

.process-step.active {
    transform: scale(1.1);
}

.step-circle {
    position: relative;
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: all 0.5s ease;
}

.process-step.active .step-circle {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    box-shadow: 0 25px 50px -12px rgba(0, 212, 255, 0.5);
}

.step-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    animation: pulse 2s infinite;
    opacity: 0.3;
}

.process-step:not(.active) .step-pulse {
    display: none;
}

.step-icon {
    font-size: 1.5rem;
    position: relative;
    z-index: 10;
}

.step-content {
    text-align: center;
}

.step-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
    transition: all 0.3s ease;
}

.process-step.active .step-title {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-description {
    color: #D1D5DB;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.step-details {
    font-size: 0.75rem;
    color: #9CA3AF;
    transition: all 0.3s ease;
}

.process-step.active .step-details {
    color: var(--neon-blue);
    opacity: 1;
}

.step-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #6B7280;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.process-step.active .step-number {
    background: var(--neon-green);
    color: black;
}

.process-mobile {
    display: block;
    space: 1.5rem;
}

.process-step-mobile {
    position: relative;
    padding: 1.5rem;
    border-radius: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: all 0.5s ease;
    margin-bottom: 1.5rem;
}

.process-step-mobile.active {
    border-color: var(--neon-blue);
    box-shadow: 0 10px 25px -5px rgba(0, 212, 255, 0.2);
}

.step-info {
    display: flex;
    align-items: center;
    space: 1rem;
}

.step-circle-mobile {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #374151;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.process-step-mobile.active .step-circle-mobile {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
}

.step-text {
    flex: 1;
}

.step-number-mobile {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #6B7280;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.process-step-mobile.active .step-number-mobile {
    background: var(--neon-green);
    color: black;
}

.step-selector {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 0.5rem;
}

.step-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #6B7280;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-dot:hover {
    background: #9CA3AF;
}

.step-dot.active {
    background: var(--neon-blue);
    box-shadow: 0 10px 25px -5px rgba(0, 212, 255, 0.5);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    position: relative;
}

.contact-container {
    max-width: 4xl;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    space: 2rem;
}

.why-choose-us {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.info-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.benefits {
    space: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    space: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(0.5rem);
}

.benefit-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-text {
    flex: 1;
}

.benefit-title {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-title {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-desc {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.contact-methods {
    space: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    space: 1rem;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.contact-method:hover {
    border-color: var(--neon-blue);
}

.method-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.contact-method:hover .method-icon {
    transform: scale(1.1);
}

.method-info {
    flex: 1;
}

.method-label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.method-value {
    font-size: 0.875rem;
}

.method-value.email {
    color: var(--neon-blue);
}

.method-value.whatsapp {
    color: var(--neon-green);
}

.contact-form-container {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.form-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,212,255,0.05) 0%, transparent 50%, rgba(191,0,255,0.05) 100%);
}

.form-content {
    position: relative;
    z-index: 10;
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-form {
    space: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9CA3AF;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-textarea {
    resize: none;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: white;
    font-weight: 600;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 212, 255, 0.5);
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-green));
}

.form-submit:disabled {
    background: #6B7280;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.success-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.success-text {
    color: #D1D5DB;
}

/* Footer */
.footer {
    position: relative;
    border-top: 1px solid var(--glass-border);
    background: rgba(26, 26, 26, 0.5);
}

.footer-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, var(--dark-primary) 100%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 10;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 28rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    space: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.footer-logo-icon span {
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-description {
    color: #D1D5DB;
    margin-bottom: 1.5rem;
    max-width: 24rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link span {
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.social-link:hover span {
    animation: pulse 2s infinite;
}

.footer-section-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    space: 0.5rem;
}

.footer-link {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: var(--neon-blue);
}

.footer-contact {
    space: 0.75rem;
}

.contact-item {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.contact-label {
    color: #9CA3AF;
    margin-bottom: 0.25rem;
}

.contact-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link.email {
    color: var(--neon-blue);
}

.contact-link.whatsapp {
    color: var(--neon-green);
}

.contact-link:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.legal-link {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: white;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .footer-bottom {
        flex-direction: row;
    }
    
    .footer-copyright {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .process-desktop {
        display: block;
    }
    
    .process-mobile {
        display: none;
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-green));
}