:root {
    --primary-navy: #1a365d;
    --secondary-orange: #ff6b35;
    --accent-gray: #f7fafc;
    --text-charcoal: #2d3748;
    --success-green: #38a169;
    --warning-amber: #d69e2e;
}

body {
    font-family: "Inter", sans-serif;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    min-height: 100vh;
}

.hero-bg {
    background: linear-gradient(
            135deg,
            rgba(26, 54, 93, 0.95) 0%,
            rgba(45, 90, 135, 0.95) 100%
        ),
        url("resources/hero-digital.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--secondary-orange) 0%,
        #ff8c42 100%
    );
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.service-card {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stats-counter {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-orange);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.language-switch {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-switch:hover {
    transform: scale(1.05);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

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

.calculator-section {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(247, 250, 252, 0.95) 100%
    );
    backdrop-filter: blur(10px);
}

.range-slider {
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--secondary-orange);
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.range-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--secondary-orange);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}
.kimi-brand-container{
    display: none !important;
}
