:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --success: #10b981;
    --bg: #f8fafc;
    --surface: #ffffff;
    --text: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --hero-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --premium-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

/* Header */
.header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--accent);
}

.header-cta {
    background: var(--accent);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover, .nav a.active {
    color: var(--accent);
}

/* Logo Image */
.logo-img {
    height: 36px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 6px;
}

/* Landing Hero */
.landing-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-gradient), url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); /* Professional desk bg */
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
}

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

.badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: inline-block;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-btn.secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* Main Content */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.bg-light {
    background: #f1f5f9;
    padding: 5rem 2rem;
    border-radius: 24px;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Page content specific */
.content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.stat-card .number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-card .label {
    color: var(--text-muted);
    font-weight: 600;
}

.check-list li {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* Diferenciais feat-item */
.feat-item {
    margin-top: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent);
}

.visual-placeholder {
    height: 400px;
    background: var(--premium-gradient);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.visual-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.2;
}

.section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.section ul {
    list-style: none;
    padding: 0;
}

.section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

.section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Image Section */
.image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.image-section.reverse {
    direction: rtl;
}

.image-section.reverse > * {
    direction: ltr;
}

.image-section img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .image-section {
        grid-template-columns: 1fr;
    }
    .image-section img {
        height: 200px;
    }
}

/* Cards Grid */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.card h3 {
    margin-bottom: 0.75rem;
}

.card p {
    font-size: 0.95rem;
}

/* Blog section styling */
.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blog-img-placeholder {
    height: 200px;
    background: var(--bg);
    position: relative;
}

.post-bling {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.blog-content {
    padding: 2rem;
}

.tag {
    background: #eff6ff;
    color: var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.read-more {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

/* FAQ section styling */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.logo-footer {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}

.logo-footer span {
    color: var(--accent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
}

.footer-legal {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    z-index: 1000;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-banner a {
    color: var(--accent);
}

.cookie-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.cookie-btn:hover {
    background: var(--accent-hover);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .main {
        padding: 2rem 1.5rem;
    }
}

/* Legal Pages Styling */
.legal-page {
    background: var(--surface);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.legal-page h2 {
    color: var(--primary) !important;
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-page h2::before {
    content: "";
    display: block;
    width: 6px;
    height: 1.8rem;
    background: var(--accent);
    border-radius: 3px;
}

.legal-page h2 span {
    color: inherit !important;
}

.legal-page h3 {
    color: var(--primary) !important;
    font-size: 1.35rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 span {
    color: inherit !important;
}

.legal-page p {
    color: var(--text-muted) !important;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-page p span {
    color: inherit !important;
}

.legal-page ul, .legal-page ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.legal-page li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted) !important;
}

.legal-page li span {
    color: inherit !important;
}

.legal-page a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.legal-page a:hover {
    color: var(--accent-hover);
    border-bottom-color: var(--accent-hover);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 2rem 1.5rem;
        margin-top: -2rem;
        border-radius: 12px;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .legal-page h2 {
        font-size: 1.5rem;
    }
}
