/* Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

.button {
    display: inline-block;
    background-color: #8e44ad;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #7d3c98;
}

section {
    padding: 80px 20px;
    padding-top: 60px;
    margin-top: -60px;
    scroll-margin-top: 60px;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #6a1b9a;
    font-size: 2rem;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #f0f4f5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    font-weight: 500;
    color: white;
}

nav ul li a:hover {
    color: #25D366;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    background-color: #f8f4fd;
    min-height: 80vh;
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: 2rem;
    color: #6a1b9a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    transition: transform 0.5s ease;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.hero:hover .hero-image img {
    transform: translateY(-10px);
}

/* Features Section */
.features {
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 2rem;
    color: #8e44ad;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: #6a1b9a;
}

/* Testimonials Section */
.testimonials {
    background-color: #f8f4fd;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.client-info h4 {
    margin-bottom: 5px;
    color: #6a1b9a;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    border-left: 3px solid #8e44ad;
    padding-left: 15px;
}

/* CTA Section */
.cta {
    display: flex;
    align-items: center;
    background-color: #6a1b9a;
    color: white;
}

.cta-content {
    flex: 1;
    padding: 0 50px;
}

.cta-content h2 {
    color: white;
    text-align: left;
}

.cta-content p {
    margin-bottom: 30px;
}

.cta-content .button {
    background-color: white;
    color: #6a1b9a;
}

.cta-content .button:hover {
    background-color: #f0f0f0;
}

.cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

/* Pricing Section */
.pricing {
    background-color: #f8f4fd;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: transform 0.3s;
}

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

.pricing-card.featured {
    position: relative;
    overflow: visible;
    margin-top: 15px;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card h3 {
    text-align: center;
    color: #6a1b9a;
    margin-bottom: 15px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #6a1b9a;
}

.features-list {
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.features-list li i {
    color: #8e44ad;
    margin-right: 10px;
}

.pricing-card .button {
    display: block;
    text-align: center;
}

/* FAQ Section */
.faq {
    background-color: white;
}

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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #f9f9f9;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.toggle-icon {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
}

.faq-answer p {
    padding: 15px 0;
    margin: 0;
}

/* Contact Section & Trial Form Styles */
.contact {
    background: linear-gradient(135deg, #f8f4fd 0%, #e9ecef 100%);
    padding: 80px 20px;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-content {
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5em;
    color: #6a1b9a;
    margin-bottom: 20px;
}

.contact-content > p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trial-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    min-width: 250px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #555;
    background-color: #f9f9f9;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
    min-height: 80px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #8e44ad;
    outline: none;
    box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.15);
    background-color: #fff;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.form-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-terms input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #8e44ad;
}

.form-terms label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.form-terms a {
    color: #8e44ad;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.form-terms a:hover {
    text-decoration: underline;
    color: #6a1b9a;
}

.trial-form .button {
    padding: 16px 32px;
    font-size: 1rem;
    background-color: #8e44ad;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trial-form .button:hover {
    background-color: #6a1b9a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
}

.redirect-link {
    display: inline-block;
    color: #6a1b9a;
    font-weight: bold;
    text-decoration: underline;
    margin-left: 5px;
    transition: color 0.2s;
}

.redirect-link:hover {
    color: #8e44ad;
}

.form-message {
    margin-top: 20px;
    padding: 0;
    font-size: 14px;
    transition: all 0.3s ease;
    height: auto;
    min-height: 0;
    opacity: 0;
    text-align: center;
    overflow: hidden;
}

.form-message.show {
    opacity: 1;
    padding: 15px;
    min-height: 20px;
    border-radius: 6px;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Loading State */
.button.loading {
    position: relative;
    color: transparent;
}

.button.loading::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: button-loading 0.8s linear infinite;
}

@keyframes button-loading {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact {
        padding: 60px 15px;
    }
    
    .contact-content h2 {
        font-size: 2rem;
    }
    
    .contact-content > p {
        font-size: 1rem;
    }
    
    .trial-form {
        padding: 25px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-terms {
        margin-bottom: 20px;
    }
    
    .trial-form .button {
        width: 100%;
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .contact-content h2 {
        font-size: 1.7rem;
    }
    
    .trial-form {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
}

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

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

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.social-icons a {
    margin-left: 15px;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.social-icons a[href*="facebook"]:hover {
    color: #1877f2;
}

.social-icons a[href*="instagram"]:hover {
    color: #e4405f;
}

.footer-logo {
    text-align: center;
    margin-bottom: 10px;
}

.developer-logo {
    height: 30px;
    vertical-align: middle;
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero, .cta {
        flex-direction: column;
    }
    
    .hero-content, .cta-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .cta-content h2 {
        text-align: center;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        order: 1;
        margin-right: auto;
    }
    
    .mobile-menu-toggle {
        order: 3;
        display: block;
        margin-left: auto;
    }
    
    .desktop-nav, header .cta-button {
        display: none;
    }
    
    .logo img {
        max-width: 150px;
        height: auto;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-button {
        margin-top: 20px;
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-content p {
        margin-bottom: 10px;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 15px;
    }
}

/* Estilos para o menu mobile */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    color: #6a1b9a
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 999;
    overflow: hidden;
    transition: height 0.3s ease;
}

.mobile-nav.active {
    height: 100vh;
    display: block;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-nav li {
    margin: 15px 0;
}

.mobile-nav a {
    font-size: 20px;
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.mobile-nav .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6a1b9a;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

/* Media queries para responsividade */
@media (max-width: 768px) {
    .desktop-nav, header .cta-button {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    header {
        justify-content: space-between;
        padding: 15px 20px;
    }
    
    .logo img {
        max-width: 150px;
    }
}

/* Estilos para o menu de navegação */
.desktop-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.desktop-nav li {
    margin: 0 15px; /* Espaçamento entre os itens do menu */
}

.desktop-nav a {
    text-decoration: none;
    color: #8e44ad; /* Altera a cor do texto para branco */
    font-size: 18px; /* Tamanho da fonte */
    font-weight: 500; /* Peso da fonte */
    transition: color 0.3s ease; /* Transição suave para a cor */
}

.desktop-nav a:hover {
    color: #6a1b9a; /* Cor ao passar o mouse */
}

/* Estilos para o menu mobile */
.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-nav a {
    font-size: 20px; /* Tamanho da fonte */
    text-decoration: none;
    color: #7d3c98; /* Cor do texto do menu mobile */
    font-weight: 500; /* Peso da fonte */
}

/* Estilos para o formulário de contato */
#contact-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Alinha os itens ao centro */
    text-align: center; /* Centraliza o texto dentro do formulário */
}

#contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

#contact-form input[type="email"] {
    padding: 8px; /* Ajuste o padding para um tamanho menor */
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px; /* Ajuste o tamanho da fonte */
    width: 200px; /* Defina uma largura fixa para a caixa de entrada */
}

#contact-form button {
    padding: 10px;
    background-color: #8e44ad; /* Cor do botão */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#contact-form button:hover {
    background-color: #6a1b9a; /* Cor do botão ao passar o mouse */
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #8e44ad;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.billed-annually {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: normal;
    margin-top: 5px;
}

.discount {
    color: #8e44ad;
    font-weight: bold;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.pricing-period {
    cursor: pointer;
    font-weight: 500;
    color: #666;
    transition: color 0.3s;
}

.pricing-period.active {
    color: #8e44ad;
    font-weight: 600;
}

/* Faixa "Mais Popular" - Versão corrigida */
.popular-badge {
    background-color: #7d3c98;
    color: white;
    font-weight: 700;
    padding: 5px 15px;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-50%);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Ajuste para telas menores */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Estilos para a mensagem de confirmação */
.form-message {
    margin-top: 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.form-message.show {
    height: auto;
    opacity: 1;
    padding: 10px;
    color: #28a745;
    font-weight: 500;
}

/* Efeito de loading no botão */
.button.loading {
    position: relative;
    color: transparent;
}

.button.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

/* Estilo para o badge do reCAPTCHA */
.grecaptcha-badge {
    bottom: 70px !important;
    z-index: 99;
}

.recaptcha-terms {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    display: block;
}

.recaptcha-terms a {
    color: #4A90E2;
    text-decoration: none;
}

.recaptcha-terms a:hover {
    text-decoration: underline;
}

/* Contact Trial Form Styles */
.contact-trial {
    margin-top: 4rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-trial h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* Footer Styles */
.footer-links {
    margin-bottom: 1rem;
    text-align: center;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-separator {
    color: #fff;
    margin: 0 10px;
}

/* Loading State */
.button.loading {
    position: relative;
    color: transparent;
}

.button.loading::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: button-loading 0.8s linear infinite;
}

@keyframes button-loading {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-trial {
        margin-top: 3rem;
        padding: 1.5rem;
    }

    .form-group input {
        padding: 10px 12px;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-separator {
        display: none;
    }

    .footer-link {
        display: block;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .contact-trial {
        margin-top: 2rem;
        padding: 1rem;
    }

    .contact-trial h2 {
        font-size: 1.5rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }
}

/* Estilos globais para as páginas de termos e políticas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body.dark-theme {
    background-color: #121212;
    color: #ffffff;
}

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

/* Cabeçalho */
.header {
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.logo span {
    color: #4CAF50;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4CAF50;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #388E3C;
    transform: translateY(-2px);
}

/* Seção de termos */
.terms {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.section-description {
    font-size: 1rem;
    color: #b3b3b3;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.terms-content h2 {
    color: #4CAF50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.terms-content p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.terms-content ul {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-content ul li {
    margin-bottom: 10px;
}

/* Rodapé */
.footer {
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
}

.footer p {
    color: #b3b3b3;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .terms-content {
        padding: 30px 20px;
    }

    .terms {
        padding: 40px 0;
    }
    
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
} 