:root {
    --primary-color: #363c47;
    /* Escuro elegante */
    --accent-color-brand: rgb(242, 102, 66);
    /* Laranja original vibrante */
    --accent-gradient: linear-gradient(135deg, rgb(242, 102, 66) 0%, rgb(242, 102, 66) 100%);
    --text-dark: #1a1d23;
    --text-light: #5a6268;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

/* Custom UI Tweaks */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background-color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    filter: brightness(1.1);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 102, 66, 0.3);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

.section-padding {
    padding: 80px 0;
}

.bg-accent {
    background-color: var(--bg-light);
}

/* Top Bar Original Style */
.top-bar {
    background-color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    padding: 140px 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    z-index: 1;
    transition: transform 0.5s ease;
}

.hero-img-hover {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(1000px) rotateY(-5deg);
}

.hero-image-container:hover .hero-img-hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-floating-card {
    border-left: 5px solid var(--accent-color-brand);
    min-width: 180px;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0% {
        transform: translateY(-50%) translateX(-20px);
    }

    50% {
        transform: translateY(-50%) translateX(-10px);
    }

    100% {
        transform: translateY(-50%) translateX(-20px);
    }
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.ls-wide {
    letter-spacing: 0.1em;
}

.ms-n4 {
    margin-left: -1.5rem !important;
}

.hero-section h1 {
    color: var(--primary-color);
}

/* Cards */
.service-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    background: var(--white);
    padding: 2.5rem !important;
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-gradient);
    z-index: -1;
    transition: all 0.4s ease;
    border-radius: 0 0 50% 50%;
    opacity: 0.05;
}

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

.service-card:hover::before {
    height: 100%;
    border-radius: 0;
    opacity: 0.03;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(242, 102, 66, 0.08);
    color: var(--accent-color-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
    background: var(--accent-gradient);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(242, 102, 66, 0.3);
}

/* Border Accents */
.border-primary-brand {
    border-color: var(--accent-color-brand) !important;
}

/* Hover effects */
.hover-white:hover {
    color: white !important;
}

/* Navbar adjustments */
.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color-brand) !important;
}

.bg-primary-brand {
    background-color: var(--primary-color) !important;
}

.text-accent-brand {
    color: var(--accent-color-brand) !important;
}