@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary-orange: #ff8c00;
    --primary-orange-dark: #e67e00;
    --dark-bg: #0a0a0a;
    --dark-surface: #111111;
    --dark-muted: #262626;
    --text-muted: #a3a3a3;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #0f0f0f;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.text-gradient-orange {
    background: linear-gradient(135deg, #ff8c00, #ff6a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-dark-surface {
    background-color: var(--dark-bg);
}

.bg-dark-gradient {
    background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
}

.bg-orange-gradient {
    background: linear-gradient(135deg, #ff8c00 0%, #e65c00 100%);
}

.shadow-orange {
    box-shadow: 0 10px 40px -10px rgba(255, 140, 0, 0.35);
}

.hero-overlay {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.3) 100%
    );
}

.navbar-flexlog {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-muted);
}

.btn-orange {
    background: linear-gradient(135deg, #ff8c00, #ff6a00);
    color: white;
    border: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-orange:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: white;
}
