:root {
    --primary-color: #001a5e;
    --secondary-color: #82e05a;
    --accent-color: #ff4d4d;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --bg-light: #f8faff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background-color: var(--primary-color);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
    height: 250px;
    width: auto;
    transition: var(--transition);
}

nav a {
    color: var(--white);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #003399 100%);
    color: var(--white);
    padding: 100px 5%;
    text-align: center;
    position: relative;
}

.badge-hero {
    background: rgba(130, 224, 90, 0.2);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 18px 35px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(130, 224, 90, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(130, 224, 90, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 18px 35px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}

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

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-trust i {
    color: var(--secondary-color);
    margin-right: 5px;
}

/* Simulator Section */
.simulator-container {
    max-width: 1100px;
    margin: -60px auto 80px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.simulator-header {
    background: #f1f4f9;
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.simulator-header h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.simulator-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

.simulator-form {
    padding: 40px;
    border-right: 1px solid #eee;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 15px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5ee;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-analyze {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-analyze:hover {
    background: #002a99;
    transform: translateY(-2px);
}

.results-panel {
    padding: 40px;
    background: #fafbfc;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.results-placeholder {
    text-align: center;
    color: #a0aec0;
}

.results-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.result-header {
    text-align: center;
    margin-bottom: 30px;
}

.result-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.result-header h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-top: 10px;
}

.result-items {
    margin-bottom: 30px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.result-item.highlight {
    color: var(--accent-color);
    font-weight: 700;
}

.result-footer {
    text-align: center;
}

.result-footer p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-action-result {
    display: block;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 800;
    transition: var(--transition);
    text-align: center;
}

/* Victories Section */
.section-title {
    text-align: center;
    padding: 80px 5% 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 10px 0;
}

.badge {
    background: #e8f5e9;
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.victories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 5% 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.victory-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.victory-card:hover {
    transform: translateY(-10px);
}

.victory-icon {
    width: 60px;
    height: 60px;
    background: #f0f4ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.victory-card .amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 10px 0;
}

/* Testimonials */
.testimonials {
    background: #f0f4f8;
    padding: 80px 5%;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-color);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 5%;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    overflow: hidden;
    border: 1px solid #eee;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background: #f9faff;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--text-light);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-links h4, .footer-social h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons 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(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

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

/* Chat Widget */
.chat-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 2000;
    width: 320px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.chat-container.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chat-box {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    overflow: hidden;
}

.chat-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.online-indicator {
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary-color);
}

.close-chat {
    margin-left: auto;
    cursor: pointer;
    font-size: 1.5rem;
    opacity: 0.7;
}

.chat-body {
    padding: 25px;
    background: #f0f2f5;
}

.chat-msg {
    background: var(--white);
    padding: 15px;
    border-radius: 15px 15px 15px 0;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.chat-footer {
    padding: 20px;
}

.btn-whatsapp-chat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: var(--white);
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-whatsapp-chat:hover {
    background: #1ebe57;
}

.cta-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.cta-floating:hover {
    transform: scale(1.1);
}

.notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 2px solid var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .simulator-grid { grid-template-columns: 1fr; }
    .simulator-form { border-right: none; border-bottom: 1px solid #eee; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }
    nav { display: none; }
}
