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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Top Navigation */
.top-nav {
    background: rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.top-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.top-nav-logo {
    font-size: 1.3em;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.btn-login {
    display: inline-block;
    padding: 10px 28px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: #fff;
    color: #6a11cb;
    border-color: #fff;
}

/* Header - Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); /* Azul e Roxo */
    color: #fff;
    padding: 140px 0 100px;
    text-align: center;
}

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

.hero-content {
    flex: 1;
    text-align: left;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content h1 strong {
    color: #ffdd57; /* Dourado para destaque */
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-video {
    flex: 1;
    text-align: right;
    position: relative;
}

.hero-video video {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-sound {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-sound:hover {
    background: rgba(0, 0, 0, 0.8);
}

.hero-actions .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-right: 15px;
}

.btn-primary {
    background-color: #ffdd57; /* Dourado */
    color: #2575fc; /* Azul escuro */
}

.btn-primary:hover {
    background-color: #f0c200;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

/* Stats Bar */
.stats-bar {
    background-color: #fff;
    padding: 40px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stats-bar .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    margin: 15px;
}

.stat-item h3 {
    font-size: 2.5em;
    color: #6a11cb; /* Roxo */
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1em;
    color: #555;
}

/* About City Section */
.about-city {
    padding: 80px 0;
    background-color: #fff;
}

.about-city .container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-city-image {
    flex: 1;
}

.about-city-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-city-text {
    flex: 1;
}

.about-city-text h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.about-city-text p {
    font-size: 1.15em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-city-text .btn-primary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    background-color: #2575fc;
    color: #fff;
    transition: background-color 0.3s ease;
}

.about-city-text .btn-primary:hover {
    background-color: #1a5bbd;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #333;
}

.features .subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 60px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    padding: 0 40px;
}

.feature-text h3 {
    font-size: 2em;
    color: #2575fc; /* Azul */
    margin-bottom: 15px;
}

.feature-text p {
    font-size: 1.1em;
    color: #555;
}

.feature-image {
    flex: 1;
    text-align: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.call-to-action {
    background: linear-gradient(45deg, #2575fc 0%, #6a11cb 100%); /* Azul e Roxo */
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.call-to-action h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.call-to-action p {
    font-size: 1.3em;
    margin-bottom: 40px;
}

.call-to-action .btn-primary {
    background-color: #ffdd57;
    color: #6a11cb;
    padding: 18px 40px;
    font-size: 1.1em;
}

.call-to-action .btn-primary:hover {
    background-color: #f0c200;
}

/* Footer */
footer {
    background-color: #222;
    color: #aaa;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column-reverse;
    }

    .hero-content,
    .hero-image {
        padding: 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-video {
        text-align: center;
        margin-bottom: 40px;
    }

    .about-city .container {
        flex-direction: column;
    }

    .about-city-text h2 {
        font-size: 2em;
    }

    .feature-item {
        flex-direction: column;
    }

    .feature-item.reverse {
        flex-direction: column;
    }

    .feature-text {
        padding: 0;
        margin-bottom: 30px;
    }

    .stats-bar .container {
        flex-direction: column;
    }

    .stat-item {
        margin: 10px 0;
    }

    .call-to-action h2 {
        font-size: 2.2em;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: #f0f2f5;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #333;
}

.contact-form-section .subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 60px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    border-color: #2575fc;
    outline: none;
}

.contact-form button.btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    background-color: #2575fc; /* Azul */
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-form button.btn-primary:hover {
    background-color: #1a5bbd;
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }

    .contact-form-section h2 {
        font-size: 2em;
    }

    .contact-form-section .subtitle {
        font-size: 1em;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f0f2f5;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.8em;
    margin-bottom: 50px;
    color: #333;
}

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

.testimonial-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.testimonial-item p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-item h4 {
    font-size: 1.2em;
    color: #2575fc;
    margin-bottom: 5px;
}

.testimonial-item span {
    font-size: 0.9em;
    color: #888;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #fff;
}

.faq h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 50px;
    color: #333;
}

.faq-item {
    background-color: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
}

.faq-item h3 {
    font-size: 1.5em;
    color: #6a11cb;
    margin-bottom: 10px;
    cursor: pointer;
}

.faq-item p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.7;
}

/* Responsive Design for Testimonials and FAQ */
@media (max-width: 768px) {
    .testimonials h2,
    .faq h2 {
        font-size: 2.2em;
    }

    .testimonial-item,
    .faq-item {
        padding: 20px;
    }

    .testimonial-item p,
    .faq-item p {
        font-size: 1em;
    }
}
