:root {
    --bg-primary: #050713;
    --bg-secondary: #080d1a;
    --bg-card: #070b17;
    --border-color: #1f2937;
    --text-primary: #f9fafb;
    --text-secondary: #cbd5f5;
    --text-muted: #9ca3af;
    --accent-blue: #3b82f6;
    --accent-green: #22c55e;
    --accent-light-blue: #6CA8FF;
    --accent-light-green: #7CFFB2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

/* Header/Navbar */
.navbar {
    background: rgba(5, 7, 19, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    flex: 1;
}

.navbar-brand img {
    width: 56px;
    height: auto;
    max-height: 56px;
    border-radius: 8px;
}

/* Hero Section */
.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top left, #1f2937 0%, var(--bg-primary) 55%);
    padding: 4rem 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.badge-pill {
    border-radius: 999px;
    padding: 0.5rem 1.2rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-blue);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--accent-blue);
    display: block;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Pills/Tags */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.pill-tag {
    font-size: 0.875rem;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    background: rgba(148, 163, 184, 0.12);
    color: var(--text-secondary);
    font-weight: 500;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.pill-tag i {
    margin-right: 0.5rem;
}

/* Buttons */
.btn-primary-custom {
    background: var(--accent-blue);
    border: 2px solid var(--accent-blue);
    color: white;
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--accent-light-blue);
    color: var(--accent-light-blue);
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--accent-light-blue);
    color: #000;
    transform: translateY(-2px);
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* Cards */
.card-custom {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(59, 130, 246, 0.5);
}

.card-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.card-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.card-list li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.card-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-top: 3rem;
}

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

.pricing-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    border-color: var(--accent-blue);
    transform: translateX(5px);
}

.pricing-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.pricing-specs {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.pricing-value {
    font-weight: 700;
    color: var(--accent-green);
    font-size: 1.25rem;
    white-space: nowrap;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 2rem;
    font-style: italic;
}

.pricing-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-category h6 {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .content-section {
        padding: 3rem 0;
    }

    .pricing-section {
        padding: 2rem 1.5rem;
    }

    .pricing-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }

    /* Ajustes para secao de contratacao em mobile */
    #contratar .d-flex.justify-content-between {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start !important;
    }

    #contratar .d-flex.gap-2 {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
}

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

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

.text-center {
    text-align: center !important;
}

.d-flex {
    display: flex !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-center {
    justify-content: center !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

.w-100 {
    width: 100% !important;
}

.row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.col-lg-3 {
    flex: 0 0 calc(25% - 1rem) !important;
}

.col-lg-6 {
    flex: 0 0 calc(50% - 1rem) !important;
}

.col-lg-12 {
    flex: 0 0 calc(100% - 1rem) !important;
}

.col-md-6 {
    flex: 0 0 calc(50% - 1rem) !important;
}

.g-4 {
    gap: 1.5rem !important;
}

.container {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .col-md-6 {
        flex: 0 0 calc(50% - 1rem) !important;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 1140px;
    }

    .col-lg-3 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }

    .col-lg-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    .col-lg-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

.sticky-top {
    position: sticky !important;
    top: 0 !important;
    z-index: 1020 !important;
}
