/* Estilos Gerais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

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

/* Cabeçalho */
header {
    background-color: #282c34;
    color: #fff;
    padding: 10px 0;
    border-bottom: 5px solid #009246; /* Verde Brasil */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

nav .logo img {
    height: 50px; /* Ajuste o tamanho do logo */
    margin-right: 10px;
}

nav .logo h1 {
    margin: 0;
    font-size: 24px;
    color: #ffcd00; /* Amarelo Brasil */
}

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

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

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffcd00; /* Amarelo Brasil */
}

/* Botões */
.btn-primary {
    display: inline-block;
    background-color: #009246; /* Verde Brasil */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #ffcd00; /* Amarelo Brasil */
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e6b800;
}

/* Seções */
main {
    padding: 20px 0;
}

section {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

section h2, section h3 {
    text-align: center;
    color: #282c34;
    margin-bottom: 30px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://via.placeholder.com/1500x500') no-repeat center center/cover; /* Substitua pela imagem de fundo desejada */
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    border-radius: 0;
    box-shadow: none;
}

.hero-content h2 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #fff;
}

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

/* About Section */
.about .features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.about .feature-item {
    flex-basis: 22%;
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.about .feature-item h4 {
    color: #009246;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials .testimonial-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-left: 5px solid #009246;
    margin-bottom: 15px;
    border-radius: 5px;
}

.testimonials .testimonial-item p {
    font-style: italic;
}

/* CTA Section */
.cta {
    text-align: center;
    background-color: #282c34;
    color: #fff;
    padding: 50px 20px;
}

.cta h2 {
    color: #ffcd00;
}

.cta p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

/* Plans Section */
.plans .plan-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.plans .plan-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.plans .plan-card:hover {
    transform: translateY(-5px);
}

.plans .plan-card.featured {
    border: 2px solid #009246;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.plans .plan-card h3 {
    color: #282c34;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.plans .plan-card .price {
    font-size: 2.5em;
    color: #009246;
    font-weight: bold;
    margin-bottom: 10px;
}

.plans .plan-card .save {
    color: #e6b800;
    font-weight: bold;
    margin-bottom: 15px;
}

.plans .plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.plans .plan-card ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.plans .plan-card ul li:last-child {
    border-bottom: none;
}

.plans .payment-methods {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    color: #666;
}

/* How It Works Section */
.how-it-works .steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.how-it-works .step-item {
    flex-basis: 30%;
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.how-it-works .step-item h4 {
    color: #009246;
    margin-bottom: 10px;
}

.how-it-works .tutorials h3, .how-it-works .requirements h3 {
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #282c34;
}

.how-it-works .tutorials h4 {
    color: #009246;
    margin-top: 20px;
    margin-bottom: 10px;
}

.how-it-works .tutorials ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.how-it-works .tutorials ul li a {
    color: #009246;
    text-decoration: none;
}

.how-it-works .requirements ul {
    list-style: disc;
    margin-left: 20px;
}

/* Support Section */
.support .support-channels {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.support .channel-item {
    flex-basis: 22%;
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.support .channel-item h4 {
    color: #009246;
    margin-bottom: 10px;
}

.support .channel-item a {
    color: #009246;
    text-decoration: none;
    font-weight: bold;
}

.support .faq {
    margin-top: 40px;
}

.support .faq-item {
    background-color: #f9f9f9;
    padding: 15px;
    border-left: 4px solid #ffcd00;
    margin-bottom: 10px;
    border-radius: 5px;
}

.support .faq-item h4 {
    color: #282c34;
    margin-bottom: 5px;
    cursor: pointer; /* Para indicar que pode ser clicável para expandir/colapsar */
}

.support .hours {
    text-align: center;
    margin-top: 30px;
    font-weight: bold;
}

/* Contact Section */
.contact .contact-form {
    max-width: 600px;
    margin: 0 auto 40px auto;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact .contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #282c34;
}

.contact .contact-form input[type="text"],
.contact .contact-form input[type="email"],
.contact .contact-form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact .contact-form textarea {
    resize: vertical;
}

.contact .contact-form button {
    width: 100%;
    padding: 12px;
    font-size: 1.1em;
    cursor: pointer;
}

.contact .contact-info {
    text-align: center;
    margin-top: 30px;
}

.contact .contact-info h3 {
    text-align: center;
    margin-bottom: 20px;
}

.contact .contact-info p {
    margin-bottom: 10px;
}

.contact .contact-info a {
    color: #009246;
    text-decoration: none;
    font-weight: bold;
}

/* Rodapé */
footer {
    background-color: #282c34;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
    margin-top: 20px;
}

/* Responsividade Básica */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .hero-content h2 {
        font-size: 2em;
    }

    .about .features,
    .plans .plan-cards,
    .how-it-works .steps,
    .support .support-channels {
        flex-direction: column;
        align-items: center;
    }

    .about .feature-item,
    .plans .plan-card,
    .how-it-works .step-item,
    .support .channel-item {
        width: 90%;
        margin-bottom: 20px;
    }
}
