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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: white;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Header */
.header-top {
    background-color: #1a1a1a;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 12px;
}

.header-top-content {
    display: flex;
    justify-content: center;
    align-items: center; /* Adicionado para alinhar verticalmente */
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-block;
    padding: 5px 10px;
    white-space: nowrap; /* Evita quebra de linha em badges */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: white;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c5f2d;
}

.btn-primary {
    background-color: #0052cc;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.hero-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 20px;
    color: #2c5f2d;
}

.stat span {
    font-size: 12px;
    color: #666;
}

.btn-cta {
    display: inline-block;
    background-color: #0052cc;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
    text-align: center;
}

.btn-cta:hover {
    background-color: #0041a3;
}

.guarantee {
    font-size: 12px;
    color: #666;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Trust Section */
.trust-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px 20px;
    background-color: #f0f0f0;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.trust-icon {
    color: #2c5f2d;
    font-weight: bold;
    font-size: 18px;
}

/* Features Section */
.features-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-item {
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.feature-item h3 {
    font-size: 16px;
    color: #1a1a1a;
}

/* Benefits Section */
.benefits-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-card {
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.benefit-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.step-item {
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #0052cc;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 14px;
    color: #666;
}

/* Smarter Tracking Section */
.smarter-tracking {
    padding: 40px 20px;
    background-color: #f9f9f9;
    max-width: 1200px;
    margin: 0 auto;
}

.smarter-tracking h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.tracking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.tracking-text h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.tracking-text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.tracking-text ul {
    list-style: none;
    padding-left: 0;
}

.tracking-text li {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.tracking-text li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f2d;
}

.tracking-image img {
    max-width: 100%;
    height: auto;
}

/* Gold Standard Section */
.gold-standard {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gold-standard h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.gold-standard h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.rating-box {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-score strong {
    font-size: 32px;
    color: #2c5f2d;
}

.rating-score span {
    font-size: 14px;
    color: #666;
}

.rating-count {
    font-size: 12px !important;
    margin-top: 5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.testimonial {
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.testimonial-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header strong {
    font-size: 14px;
    color: #1a1a1a;
}

.verified {
    font-size: 12px;
    color: #2c5f2d;
}

.date {
    font-size: 12px;
    color: #999;
    display: block;
}

.testimonial p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background-color: #0052cc;
    color: white;
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 20px;
}

.cta-section .btn-cta {
    background-color: white;
    color: #0052cc;
    font-weight: bold;
}

.cta-section .btn-cta:hover {
    background-color: #f0f0f0;
}

/* FAQ Section */
.faq-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.faq-item {
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
}

.faq-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Important Notice Section */
.important-notice {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 4px;
    padding: 30px 20px;
    max-width: 1200px;
    margin: 40px auto;
}

.important-notice h2 {
    font-size: 22px;
    color: #856404;
    margin-bottom: 15px;
}

.important-notice p {
    font-size: 14px;
    color: #856404;
    margin-bottom: 15px;
    line-height: 1.6;
}

.important-notice .btn-cta {
    background-color: #ffc107;
    color: #856404;
    font-weight: bold;
}

.important-notice .btn-cta:hover {
    background-color: #ffb300;
}

/* Final CTA */
.final-cta {
    background-color: #0052cc;
    color: white;
    padding: 30px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.final-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.rating-badge {
    font-size: 14px;
    color: white;
}

.final-cta .btn-cta {
    background-color: white;
    color: #0052cc;
    font-weight: bold;
}

.final-cta .btn-cta:hover {
    background-color: #f0f0f0;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 30px 20px;
    text-align: center;
    font-size: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
}

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

.disclaimer {
    margin-bottom: 10px;
    line-height: 1.6;
}

.marketing-disclosure {
    margin-bottom: 0;
    line-height: 1.6;
}

/* Strong Tag Color */
strong {
    color: #2c5f2d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .tracking-content {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .header-top-content {
        flex-direction: column;
        gap: 5px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .cta-section h2 {
        font-size: 22px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
}
