/* Estilos Globais */
:root {
    --primary-color: #83C5BE;
    --secondary-color: #000000;
    --text-color: #ffffff;
    --accent-color: #111111;
    --card-bg: #1a1a1a;
    --gradient-dark: linear-gradient(to bottom, #000000, #111111);
    --font-primary: 'Arial', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-transform: uppercase;
    transition: var(--transition);
    text-align: center;
    margin-top: 1.5rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: #6db5ae;
}

/* Header */
header {
    background-color: var(--secondary-color);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo-container {
    display: inline-flex;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-color);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-left: 5px;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 90vh;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="1" cy="1" r="1" fill="%23333"/></svg>');
    background-repeat: repeat;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Intro Section */
.intro {
    background-color: var(--primary-color);
    color: #000;
    text-align: center;
}

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

/* Agents Section */
.agents {
    background-color: var(--secondary-color);
    position: relative;
}

.agents::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="1" cy="1" r="1" fill="%23333"/></svg>');
    background-repeat: repeat;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.agent-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.agent-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.agent-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.agent-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.agent-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.agent-features li {
    background-color: rgba(131, 197, 190, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Business Types Section */
.business-types {
    background-color: var(--accent-color);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.business-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    transition: var(--transition);
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.business-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Steps Section */
.steps {
    background-color: var(--primary-color);
    color: #000;
    text-align: center;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 2rem;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    position: relative;
}

.step-number {
    background-color: #000;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

/* Comparison Section */
.comparison {
    background-color: var(--secondary-color);
}

.comparison-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.comparison-column {
    flex: 1;
    min-width: 300px;
}

.comparison-column.negative {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
}

.comparison-column.positive {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
}

.comparison-column h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.comparison-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.icon-negative, .icon-positive {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.icon-negative {
    background-color: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
}

.icon-positive {
    background-color: rgba(131, 197, 190, 0.2);
    color: var(--primary-color);
}

.comparison-item .text {
    flex: 1;
}

.comparison-item h4 {
    margin-bottom: 0.5rem;
}

/* Differentials Section */
.differentials {
    background-color: var(--accent-color);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.differential-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    transition: var(--transition);
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.differential-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--secondary-color);
    position: relative;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="1" cy="1" r="1" fill="%23333"/></svg>');
    background-repeat: repeat;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial {
    flex: 1;
    min-width: 300px;
}

.testimonial-content {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-author {
    margin-top: 1.5rem;
}

.author-name {
    font-weight: bold;
}

.author-business {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Contact Section */
.contact {
    background-color: var(--accent-color);
    text-align: center;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
    justify-content: center;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.submit-button {
    width: 100%;
    background-color: var(--primary-color);
    color: #000;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background-color: #6db5ae;
}

/* Contact Info Section */
.contact-info {
    background-color: var(--secondary-color);
    text-align: center;
    padding: 3rem 2rem;
}

.contact-info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-text {
    font-size: 1.1rem;
}

.contact-info-label {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.3rem;
}

/* FAQ Section */
.faq {
    background-color: var(--secondary-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--card-bg);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    background-color: var(--primary-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    flex-shrink: 0;
    margin-left: 10px;
}

.faq-answer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

/* CTA Final Section */
.cta-final {
    background-color: var(--primary-color);
    color: #000;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-final .cta-button {
    background-color: #000;
    color: var(--primary-color);
}

.cta-final .cta-button:hover {
    background-color: #333;
}

/* Footer */
footer {
    background-color: #000;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-nav {
    margin: 1.5rem 0;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-social {
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: #000;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #6db5ae;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-message i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .agent-grid {
        grid-template-columns: 1fr;
    }
    
    .business-grid, 
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-card {
        max-width: 100%;
    }
    
    .comparison-container {
        flex-direction: column;
    }
    
    .contact-info-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero {
        padding-top: 2rem;
        padding-bottom: 5rem;
        min-height: 80vh;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        flex: 1;
        padding-right: 10px;
    }
    
    .faq-toggle {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
