
    :root {
        --vinho: #6b2e2e;
        --branco: #ffffff;
        --preto: #000000;
        --cinza-claro: #e0e0e0;
        --cinza: #d4d4d4;
        --cinza-medio: #999999;
        --cinza-escuro: #2e2e2e;
        --bg-gradiente: linear-gradient(135deg, #eeeeee, #cccccc);
    }

    body {
        font-family: 'Helvetica Neue', Arial, sans-serif;
        background: var(--bg-gradiente);
        color: var(--cinza-escuro);
        margin: 0;
        padding: 0;
        text-align: center;
    }

    header {
        background: linear-gradient(135deg, #f0f0f0, #dbdbdb);
        padding: 40px 20px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .logo img {
        max-width: 150px;
    }

    h1, h2, h3 {
        color: var(--cinza-escuro);
    }

    a, p, label, span {
        color: var(--preto);
    }

    .cta-button {
        background: var(--vinho);
        padding: 28px;
        text-decoration: none;
        color: var(--branco);
        font-weight: 600;
        border-radius: 6px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease-in-out;
        font-size: 30px;
        outline: none;
        border: none;
        display: inline-block;
    }
    
    /* Hover */
    .cta-button:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
    }
    
    /* Focus */
    .cta-button:focus {
        box-shadow: 0 0 0 4px rgba(160, 30, 60, 0.4), 0 6px 20px rgba(0, 0, 0, 0.15);
        transform: scale(1.02);
    }


    .cta-button:hover {
        background: #843c3c;
    }

    .hero img {
        width: 100%;
        border-radius: 6px;
        height: auto;
        max-height: 550px;
        object-fit: cover;
    }

    .features {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        padding: 40px 20px;
    }
        .feature img.icon {
            width: 50px;
            height: 50px;
            margin-bottom: 15px;
        }
      .icon {
        width: 50px;
        height: 50px;
    }


    .feature {
        background: #f7f7f7;
        padding: 20px;
        border-radius: 12px;
        width: 30%;
        box-shadow: 0 0 10px rgba(0,0,0,0.05);
        color: var(--cinza-escuro);
    }

    .register {
        padding: 40px 20px;
        background: #eaeaea;
        
    }

    .register input {
        display: block;
        margin: 10px auto;
        padding: 12px;
        width: 80%;
        border-radius: 6px;
        border: 1px solid var(--cinza);
        background: #ffffff;
        color: var(--cinza-escuro);
    }

    .register button {
        background-color: var(--vinho);
        padding: 14px 28px;
        border: none;
        color: var(--branco);
        font-weight: 600;
        cursor: pointer;
        border-radius: 6px;
        margin-top: 20px;
        transition: background 0.3s ease;
    }

    .register button:hover {
        background-color: #843c3c;
    }

    footer {
        padding: 20px;
        background: #dddddd;
        color: var(--cinza-escuro);
    }

    footer a {
        color: var(--vinho);
        text-decoration: none;
    }

    footer a:hover {
        text-decoration: underline;
    }
    .pricing {
    background: linear-gradient(to right, #e0e0e0, #f5f5f5);
    color: #2c2c2c;
    padding: 60px 20px;
    text-align: center;
    }
    
    .pricing h2 {
        font-size: 2.5em;
        margin-bottom: 40px;
        color: #990033;
    }
    
    .pricing-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .plan {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 30px;
        width: 300px;
        max-width: 90%;
        text-align: left;
    }
    
    .plan h3 {
        font-size: 1.6em;
        color: #990033;
        margin-bottom: 10px;
    }
    
    .plan .price {
        font-size: 1.5em;
        font-weight: bold;
        margin-bottom: 20px;
        color: #000;
    }
    
    .plan ul {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
    }
    
    .plan ul li {
        margin: 8px 0;
        font-size: 0.95em;
    }
    
    .plan .cta-button {
        display: inline-block;
        background: #990033;
        color: white;
        border-radius: 8px;
        padding: 12px 24px;
        text-align: center;
        font-weight: bold;
        text-decoration: none;
    }
    
    .plan.highlight {
        border: 2px solid #990033;
        transform: scale(1.05);
    }
        .testimonials, .faq, .partners, .languages {
            padding: 60px 20px;
            background: linear-gradient(to bottom, #f0f0f0, #d8d8d8);
            color: #2C1E1E;
            text-align: center;
        }
        
        .testimonials h2,
        .faq h2,
        .partners h2,
        .languages h2 {
            color: #7B1E2B;
            margin-bottom: 30px;
        }
        
        .testimonial-boxes {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        
        .testimonial {
            background: #fff;
            color: #000;
            padding: 20px;
            border-radius: 15px;
            max-width: 300px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .testimonial:hover {
            transform: translateY(-5px);
        }
        
        .faq-item {
            max-width: 600px;
            margin: 20px auto;
            text-align: left;
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            color: #000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .partner-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 20px;
        }
        
        .partner-logos img {
            max-height: 60px;
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        
        .partner-logos img:hover {
            opacity: 1;
        }
        
        .languages p {
            font-size: 1.2em;
            color: #000;
        }
        .language-selector {
          margin-top: 20px;
          font-weight: bold;
        }
        
        .language-selector select {
          padding: 8px;
          font-size: 1em;
          margin-left: 10px;
          border-radius: 5px;
          border: 1px solid #ccc;
        }
        .whatsapp-float {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #25D366;
        color: white;
        padding: 10px 15px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 20px;
    }

        .partners {
            padding: 40px 20px;
            background: linear-gradient(to right, #d3d3d3, #f0f0f0);
            text-align: center;
        }
        
        .partners h2 {
            font-size: 24px;
            color: #800000;
            margin-bottom: 30px;
        }
        
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            align-items: center;
        }
        
        .partner-logos img {
            max-height: 50px;
            object-fit: contain;
        }
        .how-it-works {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f3f3f3, #e0e0e0);
    text-align: center;
        }
        
        .how-it-works h2 {
            font-size: 32px;
            color: #800000;
            margin-bottom: 40px;
            font-weight: 700;
        }
        
        .steps {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .step {
            background: white;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            padding: 30px;
            border-radius: 16px;
            width: 300px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .step:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }
        
        .step h3 {
            color: #000;
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .step p {
            color: #444;
            font-size: 16px;
            line-height: 1.6;
        }




    /* Responsivo */
    @media (max-width: 768px) {
        .features {
            flex-direction: column;
            align-items: center;
        }

        .feature {
            width: 90%;
        }

        header, .register, footer {
            padding: 30px 15px;
        }

        .cta-button {
            width: 90%;
        }
   
        .pricing-cards {
            flex-direction: column;
            align-items: center;
        }
            .testimonial-boxes, .partner-logos {
        flex-direction: column;
        align-items: center;
        }
    
        .faq-item {
            margin: 15px;
        }
        .language-selector {
          margin-top: 20px;
          font-weight: bold;
        }
        
        .language-selector select {
          padding: 8px;
          font-size: 1em;
          margin-left: 10px;
          border-radius: 5px;
          border: 1px solid #ccc;
        }
          .hero img {
        width: 100%;
        border-radius: 6px;
        height: auto;
        max-height: 550px;
        object-fit: cover;
    }



    }
