
        /* NOVOS ESTILOS PARA A SEÇÃO DE CONFIANÇA */
        .confidence-section {
            background-color: #fff;
            padding: 80px 0;
        }

        .confidence-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 15px;
            background-color: var(--light-bg);
            transition: all 0.3s ease;
            height: 100%;
        }

        .svg-beje {
            fill: var(--primary-color)
        }

        .confidence-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .confidence-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* MELHORIAS PARA A SEÇÃO DE AGENDAMENTO */
        .appointment-section {
            background: linear-gradient(135deg, rgba(139, 69, 79, 0.05), rgba(121, 74, 92, 0.1));
            padding: 80px 0;
        }

        .appointment-card {
            border-radius: 20px;
            border: none;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            background-color: #fff;
            padding: 40px;
        }

        .benefit-list {
            list-style: none;
            padding: 0;
            margin: 25px 0;
        }

        .benefit-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }

        .benefit-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Seção Como Irei Te Ajudar */
        .help-section {
            background-color: #fff;
        }

        .help-card {
            background: var(--primary-color);
            color: #fff;
            border-radius: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: left;
        }

        .help-card h5 {
            color: #fff;
            margin-bottom: 0.8rem;
        }

        .help-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }


        /* Seção de Agendamento */
        .appointment-section {
            background-color: var(--light-bg);
            padding: 80px 0;
        }

        .appointment-section .card {
            border-radius: 20px;
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            background-color: #fff;
        }

        .appointment-section .card-title {
            font-size: 2rem;
            color: var(--secondary-color);
        }

        /* Seção de Especialidades */

        .specialties-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .card,
        .specialties-section .card {
            border: 1px solid #e0e0e0;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .card:hover,
        .specialties-section .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .card-icon,
        .specialties-section .card-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .specialties-section .card {
            background-color: var(--light-bg);
        }

        /* Atualização para o alinhamento e espaçamento da lista */
        .service-features {
            padding-left: 80px;
            padding-right: 55px;
            /* Remove o padding padrão da lista */
            list-style: none;
            margin-top: 20px;
        }

        .service-features li {
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
            /* Adiciona o recuo à esquerda do texto */
            text-align: left;
            /* Garante que o texto fique alinhado à esquerda */
        }

        /* O "check" continua na posição 0 do padding-left */
        .service-features li::before {
            content: '\2713';
            position: absolute;
            left: 0;
            /* Alinha o check ao "início" do recuo */
            color: #6a1a91;
            font-weight: bold;
        }

        /* Botão Flutuante do WhatsApp */
        .whatsapp-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            background-color: #25d366;
            color: #fff;
            padding: 12px 20px;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .whatsapp-button:hover {
            background-color: #128c7e;
            transform: scale(1.05);
        }

        .whatsapp-button i {
            font-size: 1.5rem;
            margin-right: 10px;
        }

        /* Rodapé */
        .footer-section {
            background-color: var(--primary-color);
            color: var(--light-text);
            padding: 40px 0;
            text-align: center;
        }

        .footer-section a {
            color: var(--light-text);
            text-decoration: none;
        }

        .footer-section a:hover {
            color: var(--light-text);
            text-decoration: underline;
        }

        /* Animações e Efeitos */
        .fade-in-up {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in-up.animate {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .animated-text {
            animation: fadeIn 2s ease-in-out;
        }
