/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #C9A646;
    --primary-dark: #A38435;
    --primary-light: #D3B666;
    --secondary-color: #E5CE85;
    --accent-color: #C9A646;
    --dark-bg: #000000;
    --dark-section: #111111;
    --text-dark: #1A1F36;
    --text-light: #6B7280;
    --text-white: #FFFFFF;
    --border-color: #E5E7EB;
    --success-color: #10B981;
    --gradient-primary: linear-gradient(135deg, #C9A646 0%, #E5CE85 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #111111 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Montserrat', sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #FFFFFF;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

section {
    padding: 80px 0;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    line-height: 1.7;
    color: var(--text-light);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

#logo {
    height: 45px;
    width: auto;
}

.logo-container h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

header nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a:active {
    color: var(--primary-color);
}

header nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 166, 70, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(229, 206, 133, 0.12) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-text h1 {
    color: var(--text-white);
    margin-bottom: 24px;
    font-size: 3.5rem;
    line-height: 1.1;
}

.gradient-text { background: linear-gradient(135deg, #C9A646 0%, #E5CE85 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .gradient-old {
    background: linear-gradient(135deg, #E5CE85 0%, #C9A646 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll a {
    display: block;
    color: var(--text-white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-scroll a:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(201, 166, 70, 0.3);
}

.btn-primary:hover,
.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 166, 70, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover,
.btn-secondary:active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-plan {
    width: 100%;
    justify-content: center;
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-plan:hover,
.btn-plan:active {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 166, 70, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ALPHA OMNI SECTION ===== */
.omni-section {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #111111 50%, #000000 100%);
    padding: 100px 0;
    overflow: hidden;
}

.omni-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 50%, rgba(201, 166, 70, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(229, 206, 133, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(229,206,133,0.05)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
    opacity: 0.8;
}

.omni-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.omni-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    color: #C9A646;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
}

.omni-badge i {
    font-size: 1rem;
    animation: spin-slow 3s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.omni-title {
    margin-bottom: 24px;
}

.omni-brand {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #E5CE85 0%, #C9A646 50%, #E5CE85 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    line-height: 1.1;
    margin-bottom: 8px;
    word-wrap: break-word;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.omni-tagline {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    word-wrap: break-word;
}

.omni-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    word-wrap: break-word;
}

.omni-features-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.omni-feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.omni-feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(229, 206, 133, 0.3);
    transform: translateY(-2px);
}

.omni-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.omni-feature-text h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.omni-feature-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.omni-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-omni {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-omni-primary {
    background: linear-gradient(135deg, #C9A646 0%, #E5CE85 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-omni-primary:hover,
.btn-omni-primary:active {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.btn-omni-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(229, 206, 133, 0.4);
    color: #E5CE85;
    backdrop-filter: blur(10px);
}

.btn-omni-secondary:hover,
.btn-omni-secondary:active {
    background: rgba(255, 255, 255, 0.1);
    border-color: #E5CE85;
    transform: translateY(-3px);
}

/* Visual Cards */
.omni-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.omni-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.omni-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.omni-card i {
    font-size: 2.5rem;
    color: #E5CE85;
}

.omni-card span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.omni-card-1 {
    width: 180px;
    height: 140px;
    top: 20px;
    left: 20px;
    animation: float-card-1 4s ease-in-out infinite;
}

.omni-card-2 {
    width: 180px;
    height: 140px;
    top: 20px;
    right: 20px;
    animation: float-card-2 4s ease-in-out infinite 0.5s;
}

.omni-card-3 {
    width: 180px;
    height: 140px;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    animation: float-card-3 4s ease-in-out infinite 1s;
}

.omni-card-center {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(201, 166, 70, 0.2), rgba(229, 206, 133, 0.2));
    border: 2px solid rgba(229, 206, 133, 0.4);
    z-index: 2;
}

.omni-card-center:hover {
    transform: translate(-50%, -50%) scale(1.05);
    border-color: #E5CE85;
}

.omni-logo-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 8px;
}

.omni-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.omni-card-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes float-card-1 {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes float-card-2 {
    0%, 100% { transform: translateY(0px) rotate(2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes float-card-3 {
    0%, 100% { transform: translate(-50%, 0px) rotate(-1deg); }
    50% { transform: translate(-50%, -10px) rotate(-1deg); }
}

/* ===== PLANOS ===== */
.plans-section {
    background: #F9FAFB;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.plan-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.plan-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, rgba(201, 166, 70, 0.06), white);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.plan-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    color: white;
}

.plan-card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    word-wrap: break-word;
}

.plan-desc {
    color: var(--text-light);
    margin-bottom: 24px;
    min-height: 48px;
}

.plan-price {
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.plan-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.plan-price .period {
    font-size: 1rem;
    color: var(--text-light);
}

.plan-price .setup-text,
.plan-price .free-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-right: 8px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    padding: 12px 0;
    display: flex;
    align-items: start;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--success-color);
    font-size: 1.1rem;
    margin-top: 2px;
}

/* ===== DIFERENCIAIS ===== */
.features-section {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 32px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #F9FAFB;
    transform: translateY(-4px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(201, 166, 70, 0.2);
}

.feature-item h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.feature-item p {
    font-size: 0.95rem;
}

/* ===== CONTATO ===== */
.contact-section {
    background: var(--gradient-dark);
    color: var(--text-white);
}

.contact-section .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method i {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-top: 4px;
}

.contact-method h4 {
    color: var(--text-white);
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-method p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.12);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--text-white);
}

#form-status {
    margin-top: 16px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--secondary-color);
    min-height: 20px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-links h4 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    width: 20px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .omni-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .omni-visual {
        height: 400px;
    }

    .omni-card-1,
    .omni-card-2,
    .omni-card-3 {
        width: 150px;
        height: 120px;
    }

    .omni-card-center {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    section {
        padding: 50px 0;
    }

    .container {
        padding: 0 20px;
    }

    /* Header Mobile */
    header .container {
        padding: 12px 20px;
    }

    #logo {
        height: 38px;
    }

    header nav {
        position: fixed;
        top: 62px;
        left: -100%;
        background: white;
        width: 100%;
        height: calc(100vh - 62px);
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    header nav.active {
        left: 0;
    }

    header nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    header nav ul li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid var(--border-color);
    }

    header nav ul li a {
        display: block;
        padding: 18px 0;
        font-size: 1.05rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Hero Mobile */
    .hero {
        min-height: 85vh;
        padding-top: 70px;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 32px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 16px 24px;
    }

    /* Alpha OMNI Mobile */
    .omni-section {
        padding: 50px 0;
    }

    .omni-wrapper {
        gap: 0;
    }

    .omni-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .omni-brand {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .omni-tagline {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .omni-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 32px;
    }

    .omni-features-highlight {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 32px;
    }

    .omni-feature-item {
        padding: 16px;
    }

    .omni-feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.25rem;
    }

    .omni-feature-text h4 {
        font-size: 0.95rem;
    }

    .omni-feature-text p {
        font-size: 0.8rem;
    }

    .omni-cta-group {
        flex-direction: column;
        gap: 12px;
    }

    .btn-omni {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .omni-visual {
        height: 300px;
        margin-top: 40px;
    }

    .omni-card {
        padding: 16px;
    }

    .omni-card i {
        font-size: 1.75rem;
    }

    .omni-card span {
        font-size: 0.8rem;
    }

    .omni-card-1,
    .omni-card-2,
    .omni-card-3 {
        width: 120px;
        height: 100px;
    }

    .omni-card-1 {
        top: 5px;
        left: 5px;
    }

    .omni-card-2 {
        top: 5px;
        right: 5px;
    }

    .omni-card-3 {
        bottom: 30px;
    }

    .omni-card-center {
        width: 150px;
        height: 150px;
    }

    .omni-logo-circle {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .omni-card-title {
        font-size: 1.2rem;
    }

    .omni-card-subtitle {
        font-size: 0.75rem;
    }

    /* Planos Mobile */
    .plans-section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 5px 14px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .plan-card {
        padding: 32px 24px;
    }

    .plan-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .plan-card h3 {
        font-size: 1.4rem;
    }

    .plan-desc {
        font-size: 0.9rem;
        min-height: auto;
    }

    /* Diferenciais Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        padding: 24px 20px;
    }

    .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    /* Contato Mobile */
    .contact-section {
        padding: 50px 0;
    }

    .contact-form-container {
        padding: 28px 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-about h3 {
        font-size: 1.3rem;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }

    .footer-legal span {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    /* Hero Extra Small */
    .hero {
        padding-top: 65px;
        min-height: 80vh;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-text h1 br {
        display: inline;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .hero-buttons .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    /* OMNI Extra Small */
    .omni-section {
        padding: 40px 0;
    }

    .omni-brand {
        font-size: 1.85rem;
    }

    .omni-tagline {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .omni-description {
        font-size: 0.9rem;
    }

    .omni-feature-item {
        padding: 14px;
    }

    .omni-feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .omni-feature-text h4 {
        font-size: 0.9rem;
    }

    .omni-feature-text p {
        font-size: 0.75rem;
    }

    .btn-omni {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .omni-visual {
        height: 240px;
        margin-top: 30px;
    }

    .omni-card-1,
    .omni-card-2 {
        width: 100px;
        height: 85px;
    }

    .omni-card-3 {
        width: 100px;
        height: 85px;
        bottom: 20px;
    }

    .omni-card-center {
        width: 130px;
        height: 130px;
    }

    .omni-card i {
        font-size: 1.4rem;
    }

    .omni-card span {
        font-size: 0.7rem;
    }

    .omni-logo-circle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .omni-card-title {
        font-size: 1rem;
    }

    .omni-card-subtitle {
        font-size: 0.7rem;
    }

    /* Planos Extra Small */
    .plan-price .amount {
        font-size: 2.25rem;
    }

    .plan-card {
        padding: 28px 20px;
    }

    .plan-features li {
        padding: 10px 0;
        font-size: 0.9rem;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Footer */
    footer {
        padding: 50px 0 20px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .footer-about p,
    .footer-links ul li a,
    .footer-contact p {
        font-size: 0.85rem;
    }
}

h1, h2, h3, h4, .logo-container h1, .omni-brand, .hero-badge { font-family: 'Cinzel', serif; }

/* ===== POLIMENTO VISUAL ZUKA HARB ===== */
body {
    background:
        radial-gradient(circle at top left, rgba(201, 166, 70, 0.12), transparent 34rem),
        linear-gradient(180deg, #fffaf0 0%, #ffffff 42%, #f7f1e4 100%);
}

header {
    background: rgba(5, 5, 5, 0.9);
    border-bottom: 1px solid rgba(201, 166, 70, 0.28);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

header .container {
    padding: 12px 24px;
}

#logo {
    height: 84px;
    width: auto;
    filter: drop-shadow(0 10px 22px rgba(201, 166, 70, 0.18));
}

header nav ul {
    gap: 28px;
}

header nav ul li a {
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.03em;
}

header nav ul li a:hover,
header nav ul li a:active {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    color: var(--secondary-color);
}

.hero {
    min-height: 96vh;
    padding-top: 116px;
    background:
        radial-gradient(circle at 18% 24%, rgba(211, 182, 102, 0.22), transparent 28rem),
        radial-gradient(circle at 82% 72%, rgba(201, 166, 70, 0.16), transparent 30rem),
        linear-gradient(145deg, #030303 0%, #10100e 48%, #000000 100%);
}

.hero::before {
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.05), transparent 42%),
        radial-gradient(circle at 50% 8%, rgba(229, 206, 133, 0.16), transparent 34rem);
}

.hero::after {
    content: '';
    position: absolute;
    right: clamp(-120px, -8vw, -50px);
    top: 16%;
    width: clamp(260px, 34vw, 520px);
    height: clamp(260px, 34vw, 520px);
    border: 1px solid rgba(201, 166, 70, 0.28);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(201, 166, 70, 0.18), transparent 58%),
        repeating-radial-gradient(circle, rgba(229, 206, 133, 0.16) 0 1px, transparent 1px 18px);
    opacity: 0.72;
    pointer-events: none;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 55%),
        url('data:image/svg+xml,<svg width="120" height="120" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(229,206,133,0.07)" stroke-width="1"/></pattern></defs><rect width="120" height="120" fill="url(%23grid)"/></svg>');
}

.hero-content {
    text-align: left;
}

.hero-text {
    max-width: 760px;
}

.hero-badge,
.section-badge {
    border: 1px solid rgba(201, 166, 70, 0.4);
    background: rgba(201, 166, 70, 0.13);
    color: var(--secondary-color);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-text h1 {
    font-size: clamp(3rem, 7vw, 6.6rem);
    max-width: 900px;
    letter-spacing: -0.04em;
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.hero-text p {
    margin: 0 0 40px;
    max-width: 650px;
    font-size: 1.18rem;
}

.hero-buttons {
    justify-content: flex-start;
}

.btn {
    border-radius: 999px;
    letter-spacing: 0.01em;
}

.btn-primary,
.btn-plan {
    color: #0d0b05;
    box-shadow: 0 14px 30px rgba(201, 166, 70, 0.25);
}

.btn-primary:hover,
.btn-primary:active,
.btn-plan:hover,
.btn-plan:active {
    box-shadow: 0 18px 42px rgba(201, 166, 70, 0.36);
}

.btn-secondary {
    border-color: rgba(229, 206, 133, 0.38);
    background: rgba(255, 255, 255, 0.06);
}

.features-section,
.plans-section {
    position: relative;
    overflow: hidden;
}

.features-section::before,
.plans-section::before,
.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 14%, rgba(201, 166, 70, 0.13), transparent 24rem),
        radial-gradient(circle at 88% 80%, rgba(201, 166, 70, 0.08), transparent 22rem);
}

.features-section .container,
.plans-section .container,
.contact-section .container {
    position: relative;
    z-index: 1;
}

.section-header h2 {
    letter-spacing: -0.02em;
}

.plan-card,
.feature-item,
.contact-method,
.contact-form-container {
    border-radius: 24px;
}

.feature-item {
    border: 1px solid rgba(201, 166, 70, 0.2);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.feature-item:hover {
    border-color: rgba(229, 206, 133, 0.55);
    box-shadow: 0 24px 60px rgba(201, 166, 70, 0.16);
}

.feature-icon,
.plan-icon,
.omni-feature-icon {
    box-shadow: 0 16px 32px rgba(201, 166, 70, 0.24);
}

.plans-section {
    background:
        linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.plan-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 240, 0.95));
    border: 1px solid rgba(201, 166, 70, 0.2);
    box-shadow: 0 20px 50px rgba(26, 31, 54, 0.09);
}

.plan-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 166, 70, 0.12), transparent 42%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card.featured {
    border-color: rgba(201, 166, 70, 0.78);
    box-shadow: 0 24px 70px rgba(201, 166, 70, 0.2);
}

.plan-badge {
    color: #0d0b05;
    top: 18px;
}

.plan-icon {
    border-radius: 22px;
}

.plan-card h3,
.plan-desc,
.plan-features,
.plan-card .btn {
    position: relative;
    z-index: 1;
}

.omni-section {
    background:
        radial-gradient(circle at 18% 24%, rgba(201, 166, 70, 0.16), transparent 30rem),
        linear-gradient(140deg, #000000 0%, #11100d 54%, #000000 100%);
}

.omni-bg-pattern {
    background:
        radial-gradient(circle at 15% 50%, rgba(201, 166, 70, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(229, 206, 133, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(229,206,133,0.06)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
}

.omni-feature-item {
    border-color: rgba(201, 166, 70, 0.16);
    border-radius: 18px;
}

.omni-feature-item:hover {
    border-color: rgba(229, 206, 133, 0.4);
}

.omni-visual > div {
    border-radius: 28px !important;
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 18%, rgba(201, 166, 70, 0.14), transparent 28rem),
        linear-gradient(135deg, #050505 0%, #13110b 52%, #000000 100%);
}

.contact-method,
.contact-form-container {
    border-color: rgba(201, 166, 70, 0.16);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.form-group input,
.form-group select,
.form-group textarea {
    border-radius: 14px;
}

@media (max-width: 768px) {
    header .container {
        padding: 10px 20px;
    }

    #logo {
        height: 64px;
    }

    header nav {
        top: 84px;
        height: calc(100vh - 84px);
        background: rgba(5, 5, 5, 0.98);
        border-top: 1px solid rgba(201, 166, 70, 0.22);
    }

    header nav ul li {
        border-bottom-color: rgba(201, 166, 70, 0.18);
    }

    header nav ul li a {
        color: rgba(255, 255, 255, 0.9);
    }

    .hero {
        padding-top: 104px;
    }

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

    .hero-text {
        max-width: none;
    }

    .hero-text h1 {
        font-size: clamp(2.35rem, 12vw, 4.2rem);
    }

    .hero-text p {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #logo {
        height: 56px;
    }

    header nav {
        top: 76px;
        height: calc(100vh - 76px);
    }

    .hero {
        padding-top: 96px;
    }

    .hero::after {
        opacity: 0.35;
    }
}

