:root {
    --bg-cream: #f5efe8;
    --dark-red: #5e0b15;
    --darker-red: #2a050a;
    --highlight-red: #c11227; /* O vermelho vivo do texto */
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --white: #ffffff;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, .logo-text strong {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

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

/* --- Top Bar --- */
.top-bar { background-color: var(--darker-red); color: var(--white); padding: 8px 0; font-size: 12px; font-weight: 500; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar-content i { margin-right: 5px; }

/* --- Navbar --- */
.navbar { padding: 20px 0; }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo-area { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 40px; height: 40px; background: var(--white); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: #f4b41a; font-size: 18px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong { font-size: 16px; }
.logo-text span { font-size: 12px; color: var(--text-gray); }

.nav-links { display: flex; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 14px; transition: 0.3s; }
.nav-links a:hover { color: var(--highlight-red); }

/* Botões Globais */
.btn-dark { background-color: var(--darker-red); color: var(--white); padding: 12px 24px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 14px; transition: 0.3s; }
.btn-red { background-color: var(--highlight-red); color: var(--white); padding: 14px 28px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 15px; }
.btn-light { background-color: #e5d9d0; color: var(--text-dark); padding: 14px 28px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 15px; }
.btn-dark-red { background-color: var(--dark-red); color: var(--white); padding: 14px 28px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 15px; }

/* --- Hero Section --- */
.hero-section { padding: 20px 0 60px; }
.hero-card {
    background: linear-gradient(135deg, var(--darker-red) 0%, var(--dark-red) 100%);
    /* Adicionando a grade sutil no fundo igual à imagem */
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(135deg, var(--darker-red) 0%, var(--dark-red) 100%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
    border-radius: var(--border-radius-lg);
    padding: 60px;
    display: flex; gap: 50px; align-items: center;
}

.hero-left { flex: 1.2; color: var(--white); }
.badge-outline { display: inline-block; border: 1px solid rgba(255,255,255,0.3); padding: 6px 16px; border-radius: 30px; font-size: 11px; font-weight: 700; letter-spacing: 1px; margin-bottom: 25px; }
.hero-left h1 { font-size: 54px; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px; color: var(--white); }
.text-red { color: var(--highlight-red) !important; }
.hero-left p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 40px; max-width: 90%; }
.hero-buttons { display: flex; gap: 15px; }

.hero-right { flex: 0.8; }
.info-card { background: var(--bg-cream); border-radius: var(--border-radius-lg); padding: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.badge-red { display: inline-block; background: var(--highlight-red); color: var(--white); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; margin-bottom: 20px; }
.info-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.info-card-header h2 { font-size: 24px; line-height: 1.2; max-width: 80%; }
.info-icon { width: 50px; height: 50px; background: var(--white); border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); font-size: 20px; color: #f4b41a; border: 1px solid #eee; }
.info-card p { font-size: 14px; color: var(--text-gray); margin-bottom: 30px; }
.info-list { display: flex; flex-direction: column; gap: 12px; }
.info-item { background: var(--white); padding: 15px 20px; border-radius: var(--border-radius-sm); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 15px; border: 1px solid #efe8e1; }
.info-item i { color: var(--text-gray); }

/* Banner Sub Hero */
.sub-hero-banner { display: flex; align-items: center; justify-content: space-between; background: var(--white); padding: 15px; border-radius: 100px; margin-top: -25px; position: relative; z-index: 10; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.banner-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; padding: 0 20px; }

/* --- Seções Comuns --- */
.section-subtitle { display: block; font-size: 12px; font-weight: 700; color: var(--dark-red); letter-spacing: 1px; margin-bottom: 15px; text-transform: uppercase; }
.section-title { font-size: 38px; line-height: 1.1; margin-bottom: 40px; letter-spacing: -1px; }

/* --- Discover Section --- */
.discover-section { padding: 80px 0; }
.section-header { display: flex; justify-content: space-between; gap: 50px; margin-bottom: 50px; }
.section-header div { flex: 1; }
.header-desc { flex: 1; font-size: 16px; color: var(--text-gray); padding-top: 30px; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card { background: var(--white); padding: 35px 25px; border-radius: var(--border-radius-md); box-shadow: 0 5px 20px rgba(0,0,0,0.02); }
.icon-box { width: 45px; height: 45px; background: #fdf5f6; border-radius: 12px; display: flex; justify-content: center; align-items: center; margin-bottom: 25px; border: 1px solid #fbe3e6; }
.feature-card h3 { font-size: 16px; margin-bottom: 15px; }
.feature-card p { font-size: 13px; color: var(--text-gray); }

/* --- Agent Section --- */
.agent-section { padding: 80px 0; }
.agent-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 20px; }
.agent-main-card { background: var(--white); padding: 40px; border-radius: var(--border-radius-lg); }
.agent-header { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; }
.agent-avatar { width: 60px; height: 60px; background: #eeddd1; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 20px; font-weight: 700; color: var(--dark-red); }
.agent-main-card h2 { font-size: 28px; line-height: 1.2; }
.agent-main-card p { font-size: 15px; color: var(--text-gray); margin-bottom: 30px; }
.alert-box { background: #f5ece5; padding: 20px; border-radius: var(--border-radius-sm); font-size: 13px; color: var(--text-dark); border: 1px solid #ebdcd0; }

.agent-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* --- FAQ Section --- */
.faq-section { padding: 80px 0; text-align: left; }
.faq-container { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.faq-item { background: var(--white); border-radius: var(--border-radius-sm); overflow: hidden; }
.faq-question { padding: 20px 25px; font-weight: 600; font-size: 15px; display: flex; justify-content: space-between; cursor: pointer; user-select: none; }
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--text-gray); font-size: 14px; }
.faq-item.active .faq-answer { padding-bottom: 20px; max-height: 150px; }

/* --- Bottom CTA --- */
.bottom-cta-section { padding: 60px 0; }
.cta-card { background: linear-gradient(90deg, var(--darker-red) 0%, var(--dark-red) 100%); color: var(--white); padding: 60px; border-radius: var(--border-radius-lg); display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-text { flex: 1; }
.cta-text h2 { color: var(--white); font-size: 36px; margin-bottom: 15px; letter-spacing: -1px; }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 15px; }
.cta-buttons { display: flex; gap: 15px; }

/* --- Footer --- */
footer { background-color: #110809; color: rgba(255,255,255,0.6); padding: 40px 0; font-size: 12px; }

/* --- Botões Flutuantes --- */
.floating-buttons { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 1000; }
.float-btn { width: 55px; height: 55px; border-radius: 50%; display: flex; justify-content: center; align-items: center; text-decoration: none; font-size: 22px; box-shadow: 0 10px 20px rgba(0,0,0,0.15); transition: 0.3s; }
.float-btn.red { background-color: var(--highlight-red); color: var(--white); }
.float-btn.beige { background-color: #eeddd1; color: var(--text-dark); }
.float-btn:hover { transform: translateY(-3px); }

/* --- Responsivo --- */
@media (max-width: 992px) {
    .top-bar-content { justify-content: center; }
    .hero-card { flex-direction: column; padding: 40px 20px; }
    .hero-left h1 { font-size: 40px; }
    .sub-hero-banner { flex-direction: column; border-radius: 20px; text-align: center; gap: 15px; padding: 20px; }
    .section-header { flex-direction: column; gap: 20px; margin-bottom: 30px; }
    .grid-4, .agent-grid, .agent-features { grid-template-columns: 1fr; }
    .cta-card { flex-direction: column; text-align: center; padding: 40px 20px; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .nav-links { display: none; }
}