/* Global Variables & Reset */
:root {
    --primary: #e7bc00;
    /* Gold/Yellow */
    --primary-hover: #c9a300;
    --bg-dark: #161616;
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Funnel Display', sans-serif;
    --font-body: 'Sansation', 'Outfit', sans-serif;
    /* Fallback to Outfit if Sansation not loaded */
}

/* Base Styles */
body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin: 0;
    font-weight: 600;
}

p {
    line-height: 1.6;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout Utilities */
.ocrm-lp-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.ocrm-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.ocrm-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

/* Background Effects */
.bg-gradient-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    /* "Semi-spiral" / organic blob effect */
    background: radial-gradient(circle at 50% 50%, rgba(231, 188, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(231, 188, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(231, 188, 0, 0.05) 0%, transparent 40%);
    background-color: var(--bg-dark);
    filter: blur(40px);
}

/* Header */
.ocrm-header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(22, 22, 22, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.ocrm-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--primary);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.hero-card {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 30px;
    font-size: 1.1rem;
    border: 1px solid rgba(231, 188, 0, 0.3);
    /* Subtle gold border */
    box-shadow: 0 0 30px rgba(231, 188, 0, 0.05);
}

/* Components: Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 188, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-md {
    padding: 12px 28px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    20% {
        transform: translateX(100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

/* Components: Cards */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 24px;
}

.hover-glow:hover {
    border-color: rgba(231, 188, 0, 0.3);
    box-shadow: 0 0 30px rgba(231, 188, 0, 0.1);
    transform: translateY(-5px);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Section specific styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.8;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.card-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(231, 188, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary);
}

/* Ganhos */
.price-box {
    margin: 30px 0;
    text-align: center;
}

.price-value {
    display: block;
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}

.price-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

.tier-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}

.tier-item:last-child {
    border-bottom: none;
}

.tier-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

.bronze {
    background: #cd7f32;
}

.silver {
    background: #c0c0c0;
}

.gold {
    background: #ffd700;
}

.diamond {
    background: #b9f2ff;
}

.elite {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.tier-percent {
    font-weight: 700;
    margin-left: 12px;
}

/* Implantação */
.responsibility-list {
    margin-top: 24px;
}

.resp-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 16px;
    border-radius: 12px;
}

.package-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.package-price {
    font-weight: 700;
    color: var(--primary);
}

.package-tag {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Perfil Cards */
.profile-card {
    text-align: center;
    padding: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.profile-card:hover {
    background: rgba(231, 188, 0, 0.1);
    border-color: var(--primary);
}

.profile-card .icon-box {
    margin: 0 auto 16px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

/* Steps */
.step-card {
    text-align: center;
    flex: 1;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    color: var(--primary);
}

.step-number {
    position: absolute;
    top: -5px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    z-index: 3;
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--glass-border);
    margin-top: 40px;
    /* Aligns with center of icons */
}

/* Footer & Form */
.bg-gradient-footer {
    background: linear-gradient(to bottom, var(--bg-dark), #0f0f0f);
}

.ocrm-footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: #555;
}

/* Animations */
.fade-in-up,
.fade-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.active,
.fade-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Utility */
.mb-4 {
    margin-bottom: 16px;
}

.mt-8 {
    margin-top: 32px;
}

.mt-12 {
    margin-top: 48px;
}

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

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 900px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .ocrm-nav {
        display: none;
        /* Mobile menu implementation usually requires JS toggle */
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .hidden-mobile {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}