* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
    color: #1e293b;
    line-height: 1.6;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho */
header {
    background-color: #2980b9;
    color: white;
    padding: 15px 0;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    align-items: center;
    width: 100%;
}

.nome {
    font-size: 24px;
    font-weight: bold;
    grid-column: 1;

}

.logo {
    grid-column: 3;
    text-align: center;
}

.logo img {
    width: 150px;
    height: auto;
}

nav {
    grid-column: 5;
    text-align: right;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end; 
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Seção do herói */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #0069ff 0%, #3a7bd5 100%);
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Formulário */
.form-container {
    background-color: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-title {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 24px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    color: #1e293b ;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    text-align: left;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 16px;
}

.btn {
    background-color: #2980b9;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
    width: 100%;
}

.btn:hover {
    background-color: #0054cc;
}

/* Benefícios */
.benefits {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
    color: #1e293b;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.benefit-icon {
    font-size: 48px;
    color: #0069ff;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1e293b;
}

/* Como funciona */
.how-it-works {
    padding: 80px 0;
    background-color: #f7fafc;
}

.steps {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    background-color: #0069ff;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1e293b;
}

/* Planos */
.pricing {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    min-height: 600px; 
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid #0069ff;
    position: relative;
}

.featured-tag {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: #0069ff;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.plan-name {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e293b;
}

.plan-price {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0069ff;
}

.plan-price span {
    font-size: 16px;
    color: #718096;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
}
.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #edf2f7;
    color: #4a5568;
}

/* Depoimentos */
.testimonials {
    background-color: #f7fafc;
    padding: 80px 0;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #4a5568;
}

.testimonial-author {
    font-weight: bold;
    color: #1e293b;
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.faq-answer {
    color: #4a5568;
}

/* CTA Final */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background-color: #0069ff;
    color: white;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.final-cta p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-btn {
    display: inline-block;
    background-color: white;
    color: #0069ff;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Rodapé */
footer {
    background-color: #1a202c;
    color: #a0aec0;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #a0aec0;
    margin: 0 15px;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    font-size: 14px;
}

/* Estilos para a página Sobre */
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about-image img {
    max-width: 80%;
    border-radius: 10px;
}

/* Estilos para a página Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Estilos para a página Contato */
.contact-content {
    display: flex;
    gap: 40px;
}

.contact-form {
    flex: 1;
}

.contact-info {
    flex: 1;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-form .input-group {
    margin-bottom: 20px;
}

.contact-form .input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1e293b;
}

.contact-form .input-group input,
.contact-form .input-group textarea,
.contact-form .input-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.contact-form .input-group textarea {
    resize: vertical; 
    min-height: 150px;
}

section {
    margin-bottom: 80px;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .benefits-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 15px;
        margin-right: 0;
    }
}