/* Estilos Gerais */
:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --text-color: #333;
    --light-text: #666;
    --bg-color: #fff;
    --light-bg: #f8f9fa;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

section {
    padding: 80px 0;
}

/* Header e Navegação */
header {
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Logo image */
.logo-image {
    height: 40px;
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding-top: 150px;
    background-color: var(--light-bg);
}

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

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

.hero-video {
    flex: 1;
    text-align: center;
}

.hero-video iframe {
    width: 560px;
    height: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Features Section */
.features {
    background-color: var(--bg-color);
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.features > p {
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--light-text);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--light-text);
    margin-bottom: 0;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit {
    text-align: left;
    padding: 20px;
}

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit p {
    color: var(--light-text);
}

/* Integrations Section */
.integrations {
    background-color: var(--light-bg);
    text-align: center;
    padding: 80px 0;
}

.integrations h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.integrations p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--light-text);
}

.integration-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.logo-item {
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.integration-cta {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 30px;
}

/* Methodology Section */
.methodology {
    background-color: var(--bg-color);
    text-align: center;
}

.methodology h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.methodology > p {
    color: var(--light-text);
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step p {
    color: var(--light-text);
    margin-bottom: 0;
}

/* Google Maps Section */
.google-maps {
    background-color: var(--light-bg);
    text-align: center;
    padding: 80px 0;
}

.google-maps h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.google-maps h3 {
    color: var(--light-text);
    font-weight: 500;
    margin-bottom: 40px;
}

.maps-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.maps-feature {
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--bg-color);
    box-shadow: var(--box-shadow);
}

.maps-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.maps-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.maps-cta {
    background-color: rgba(67, 97, 238, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 0 auto;
}

.maps-cta p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.btn-secondary {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Reviews Section */
.reviews {
    background-color: var(--bg-color);
    text-align: center;
    padding: 80px 0;
}

.reviews h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.reviews h3 {
    color: var(--light-text);
    font-weight: 500;
    margin-bottom: 40px;
}

.reviews-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-feature {
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--light-bg);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.review-feature:hover {
    transform: translateY(-5px);
}

.review-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.review-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.reviews-testimonial {
    font-size: 1.2rem;
    font-weight: 500;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: var(--border-radius);
}

/* Testimonials Section */
.testimonials {
    background-color: white;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonials p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial {
    background-color: var(--light-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    text-align: left;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-right: 3px;
}

.testimonial p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Search Results Section */
.search-results {
    background-color: var(--light-bg);
    text-align: center;
}

.search-results h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.search-results p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 40px;
}

.search-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.search-benefit {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.search-benefit:hover {
    transform: translateY(-5px);
}

.search-benefit i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.search-benefit h4 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.search-benefit p {
    color: var(--light-text);
    margin-bottom: 0;
}

/* Dashboard Preview Section */
.dashboard-preview {
    background-color: white;
    text-align: center;
    padding: 100px 0;
}

.dashboard-preview h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dashboard-preview p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dashboard-image {
    margin-top: 40px;
}

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

.contact h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

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

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

textarea {
    height: 150px;
    resize: vertical;
}

/* Contact Embed (iframe) */
.contact-embed {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    min-height: 680px; /* garante altura adequada do iframe */
}

.contact-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius);
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-content .logo h2 {
    color: white;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ddd;
}

.footer-links ul li a:hover {
    color: white;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin-bottom: 0;
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .process-steps {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero {
        padding-top: 200px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content > div {
        margin-bottom: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
}