        /* Estilos gerais */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', Arial, sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 20px;
            align-items: center;
        }

        .titulo {
            font-size: 25px;
            text-align: center; 
            width: 700px;          
        }

    
        section {
            padding: 80px 0;
        }

        h1, h2, h3 {
            margin: 10px;
            pa
            color: #222;
        }

        p {
            margin-bottom: 20px;
        }

        .btn {
            display: inline-block;
            width: 350px;
            background-color: #FF5722;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            text-align: center;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
        }

        .botao {
            display: inline-block;
            width: 250px;
            background-color: #FF5722;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            text-align: center;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
        }

        .botao a {
            color: white;
            text-decoration: none;
        }

         .botao:hover {
            background-color: #E64A19;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
        }

        .btn:hover {
            background-color: #E64A19;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
        }

        .text-center {
            text-align: center;
            padding: 10px
        }

        /* Header */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            text-decoration: none;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 180px 0 40px;
            text-align: center;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: white;
        }

        .hero p {
            font-size: 22px;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .hero-image img {
            max-width: 400px;
        }

        .hero-image {
            max-width: 400px;
            margin: 40px auto;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            border-radius: 10px;
            justify-content: center;
        }

        /* Benefícios */
        .benefits {
            background-color: #fff;
        }

        .benefits-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .benefit-box {
            flex-basis: calc(33.33% - 30px);
            background: white;
            padding: 30px;
            margin-bottom: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .benefit-box:hover {
            transform: translateY(-10px);
        }

        .benefit-box i {
            font-size: 40px;
            color: #FF5722;
            margin-bottom: 20px;
        }

        /* Autor */
        .author {
            background-color: #f8f9fa;
        }

        .author-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .author-image {
            flex: 0 0 300px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .author-image img {
            width: 100%;
            height: auto;
        }

        .author-content {
            flex: 1;
        }

        /* Conteúdo */
        .content {
            background-color: #fff;
        }

        .content-list {
            max-width: 800px;
            margin: 0 auto;
            list-style: none;
        }

        .content-item {
            padding: 20px;
            margin-bottom: 15px;
            background: #f8f9fa;
            border-radius: 10px;
            display: flex;
            align-items: center;
        }

        .content-item i {
            margin-right: 15px;
            color: #FF5722;
            font-size: 24px;
        }

        /* Depoimentos */
        .testimonials {
            background-color: #f8f9fa;
        }

        .testimonial-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .testimonial-box {
            flex-basis: calc(50% - 20px);
            background: white;
            padding: 30px;
            margin-bottom: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            position: relative;
        }

        .testimonial-box::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 60px;
            color: #f0f0f0;
            font-family: Georgia, serif;
            z-index: 0;
        }

        .testimonial-text {
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            font-weight: bold;
            color: #FF5722;
        }

        /* FAQ */
        .faq {
            background-color: #fff;
        }

        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }

        .faq-question {
            font-weight: bold;
            font-size: 20px;
            margin-bottom: 10px;
            color: #333;
        }

        /* Preço */
        .pricing {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
        }

        .price-tag {
            font-size: 72px;
            font-weight: bold;
            margin: 20px 0;
        }

        .price-tag small {
            font-size: 24px;
        }

        .guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 40px 0;
        }

        .guarantee i {
            font-size: 40px;
            margin-right: 20px;
            color: gold;
        }

        /* CTA Final */
        .final-cta {
            background-color: #f8f9fa;
            text-align: center;
        }

        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        .social-links {
            margin: 20px 0;
        }

        .social-links a {
            color: white;
            margin: 0 10px;
            font-size: 24px;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #FF5722;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .benefit-box {
                flex-basis: 100%;
            }

            .testimonial-box {
                flex-basis: 100%;
            }

            .author-container {
                flex-direction: column;
                text-align: center;
            }

            .author-image {
                margin-bottom: 30px;
            }

            .hero h1 {
                font-size: 36px;
            }
        }