/* DATAHILL Landing Page Styles - Updated Color Palette */

:root {
    --primary-dark: #000000;
    --primary-light: #ffffff;
    --secondary-accent: #d81b60;
    --secondary-light: #fdf2f6;
    --text-dark: #000000;
    --text-light: #ffffff;
    --text-muted: #666666;
    --border-color: #e0e0e0;
    --border-color-2: #333333;
    --bg-light: #ffffff;
    --bg-pale: #fdf2f6;
    --gradient-primary: linear-gradient(135deg, #d81b60 0%, #f06292 100%);
    --gradient-light: linear-gradient(180deg, #ffffff 0%, #fdf2f6 100%);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.content-block li { margin-left: 20px;}
.content-block ul { margin-bottom: 20px; }

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.8rem; margin-bottom: 1rem; }

p { margin-bottom: 1rem; }
.lead { font-size: 1.25rem; color: var(--text-muted); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(216, 27, 96, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--border-color-2);
}

.btn-secondary:hover {
    border-color: var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo img {
    height: 42px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

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

.nav-links a:hover {
    color: var(--secondary-accent);
}

.nav-btn-primary {
    background: var(--secondary-accent);
    color: var(--primary-light) !important;
    padding: 8px 20px;
    border-radius: 6px;
	border: 2px solid var(--secondary-accent);
}

.nav-btn-secondary {
    border: 2px solid var(--text-dark);
    padding: 8px 20px;
    border-radius: 6px;
    color: var(--text-dark) !important;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Sections */
.section {
    padding: 100px 0;
}

.dark-bg {
    background-color: var(--bg-pale);
}

.section-header {
    margin-bottom: 50px;
}

.section-header.centered {
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(216, 27, 96, 0.1);
    color: var(--secondary-accent);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(253, 242, 246, 0.5) 100%);
    overflow: hidden; /* Garante que nada vaze em telas menores */
}

.hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Permite quebra de botões se necessário */
}

.hero-visual {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: relative;
}

.whatsapp-hero-image {
    width: 100%;
    height: auto;
    max-height: 550px; /* Limite de altura para o crop */
    object-fit: cover; /* Faz o crop inteligente preenchendo o espaço */
    object-position: top center; /* Mantém o topo da imagem visível (importante para mockups) */
}

.dashboard-mockup {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mockup-header {
    background: #f5f5f5;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
}

.dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    margin-right: 6px;
}

.mockup-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.chart-placeholder {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 200px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
}

.insight-card {
    background: var(--bg-pale);
    border-left: 4px solid var(--secondary-accent);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.insight-card i {
    font-size: 2rem;
    color: var(--secondary-accent);
}

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

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

/* Problem/Solution Boxes */
.problem-solution {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-box, .solution-box {
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.problem-box { background: rgba(255, 0, 0, 0.02); }
.solution-box { background: var(--bg-pale); border-color: rgba(216, 27, 96, 0.2); }

.problem-box h4, .solution-box h4 { margin-bottom: 15px; font-size: 1.1rem; }
.problem-box ul, .solution-box ul { list-style: none; }
.problem-box li, .solution-box li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.problem-box i { color: #ff5252; }
.solution-box i { color: var(--secondary-accent); }

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--bg-pale);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(216, 27, 96, 0.1);
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--secondary-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(216, 27, 96, 0.1);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(216, 27, 96, 0.1);
}

/* WhatsApp Interface */
.whatsapp-interface {
    background: #ece5dd;
    border-radius: 16px;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wa-header {
    background: #075e54;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.wa-header i { font-size: 2rem; }
.wa-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.msg {
    padding: 10px 15px;
    border-radius: 8px;
    max-width: 85%;
    font-size: 0.9rem;
}

.msg.user {
    background: #dcf8c6;
    color: #000;
    align-self: flex-end;
}

.msg.agent {
    background: white;
    color: #000;
    align-self: flex-start;
}

/* Feature List */
.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-list i {
    font-size: 1.5rem;
    color: var(--secondary-accent);
    margin-top: 5px;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-pale);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(216, 27, 96, 0.1);
    margin-bottom: 30px;
}

.testimonial-card.secondary {
    max-width: 800px;
    margin-left: auto;
}

.client-logo {
    height: 30px;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.author {
    display: flex;
    flex-direction: column;
}

.author strong { color: var(--secondary-accent); }
.author span { font-size: 0.9rem; color: var(--text-muted); }

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

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

.benefit-item i {
    font-size: 2.5rem;
    color: var(--secondary-accent);
    margin-bottom: 20px;
}

/* Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.area-card {
    background: var(--bg-pale);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(216, 27, 96, 0.1);
}

.area-card i { font-size: 2rem; color: var(--secondary-accent); margin-bottom: 20px; }
.area-card ul { list-style: none; margin-top: 20px; }
.area-card li { margin-bottom: 10px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.area-card li::before { content: "→"; color: var(--secondary-accent); }

/* Pricing */
.pricing-container {
    max-width: 500px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 24px;
    border: 2px solid var(--secondary-accent);
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(216, 27, 96, 0.1);
}

.pricing-card.featured::after {
    content: "RECOMENDADO";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-accent);
    color: var(--primary-light);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-accent);
    margin: 20px 0;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i { color: var(--secondary-accent); }

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-item h4 { margin-bottom: 10px; color: var(--secondary-accent); }
.faq-item p { color: var(--text-muted); }

/* MANIFESTO */
#manifesto h4 { font-size: 1.25rem; margin-bottom: 20px; color: var(--secondary-accent); }
#manifesto .content-block{
	font-size: 1.25rem; 
	color: var(--text-muted);
}

/* Final CTA */
.final-cta-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--primary-light);
    border-top: 1px solid var(--border-color);
}

.final-cta-section h2 { color: var(--primary-light); }
.final-cta-section p { color: rgba(255, 255, 255, 0.8); }

.centered {
    text-align: center;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand img { height: 30px; margin-bottom: 20px; }
.footer-brand p { color: var(--text-muted); max-width: 300px; }

.footer h4 { margin-bottom: 20px; font-size: 1.1rem; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer a:hover { color: var(--secondary-accent); }

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }

    .nav-links {
        display: none; /* Escondido por padrão, deve ser ativado via JS (ex: classe .active) */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
    }

    /* Ajuste para os botões não sobreporem no mobile */
    .nav-btn-primary, .nav-btn-secondary {
        display: block;
        width: 100%;
        margin: 5px 0;
        text-align: center;
        box-sizing: border-box;
    }
    
    /* Hero Mobile Adjustments */
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .hero-ctas { 
        flex-direction: column; 
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }

    .whatsapp-hero-image {
        max-height: 400px; /* Crop mais agressivo em mobile para economizar espaço vertical */
    }

    .faq-grid { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
}
