/*
Theme Name: Apollo Rocket - IA Pré-Atendimento
Theme URI: https://apollorocket.com.br
Author: Apollo Rocket
Author URI: https://apollorocket.com.br
Description: Tema para proposta de IA de Pré-Atendimento no WhatsApp
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: apollo-rocket
*/

:root {
    --navy: #0a1628;
    --navy-light: #152238;
    --cyan: #3b9eff;
    --cyan-light: #5fb3ff;
    --cyan-glow: #0088ff;
    --background: #ffffff;
    --foreground: #0f2a47;
    --muted: #64748b;
    --border: #e2e8f0;
    --card: #ffffff;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

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

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.site-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

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

.header-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.header-nav a:hover {
    color: var(--cyan);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 5rem 0;
    color: white;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(59, 158, 255, 0.2);
    color: var(--cyan);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 158, 255, 0.3);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--cyan);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-feature svg {
    color: var(--cyan);
    flex-shrink: 0;
}

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

.section-dark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-title .highlight {
    color: var(--cyan);
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(59, 158, 255, 0.3);
    box-shadow: 0 8px 30px -8px rgba(59, 158, 255, 0.2);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(59, 158, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    color: var(--cyan);
    width: 1.75rem;
    height: 1.75rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--muted);
}

/* Dark Cards */
.section-dark .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .feature-card:hover {
    border-color: rgba(59, 158, 255, 0.3);
}

.section-dark .feature-description {
    color: rgba(255, 255, 255, 0.6);
}

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

.step-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: rgba(59, 158, 255, 0.3);
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-glow) 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-description {
    font-size: 0.875rem;
    color: var(--muted);
}

/* Pricing Card */
.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--card);
    border: 2px solid var(--cyan);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 30px -8px rgba(59, 158, 255, 0.3);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.pricing-label {
    color: var(--muted);
}

.pricing-value {
    font-weight: 600;
    color: var(--cyan);
}

.pricing-features {
    margin-top: 2rem;
    text-align: left;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--muted);
}

.pricing-feature svg {
    color: #22c55e;
    flex-shrink: 0;
}

/* Implementation Points */
.implementation-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.implementation-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.implementation-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(59, 158, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.implementation-icon svg {
    color: var(--cyan);
}

.implementation-text {
    font-size: 1.125rem;
    padding-top: 0.5rem;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.security-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.security-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(59, 158, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.security-icon svg {
    color: var(--cyan);
}

.security-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.security-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Notion Box */
.notion-box {
    background: rgba(59, 158, 255, 0.1);
    border: 1px solid rgba(59, 158, 255, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
}

.notion-icon {
    width: 3rem;
    height: 3rem;
    background: var(--cyan);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notion-icon svg {
    color: white;
}

.notion-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.notion-description {
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground);
}

.faq-question:hover {
    color: var(--cyan);
}

.faq-answer {
    padding-bottom: 1.5rem;
    color: var(--muted);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Meta API Section */
.meta-info {
    max-width: 800px;
    margin: 0 auto;
}

.meta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.meta-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.meta-card-title svg {
    color: var(--cyan);
}

.meta-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.meta-note {
    background: rgba(59, 158, 255, 0.1);
    border-left: 3px solid var(--cyan);
    padding: 1rem 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

.meta-note p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.6);
    padding: 2rem 0;
    text-align: center;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-brand span {
    color: var(--cyan);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .header-nav {
        display: none;
    }
    
    .features-grid,
    .steps-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .notion-box {
        flex-direction: column;
    }
}
