        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f0f2f5;
            /* Fundo suave */
            color: #333;
        }

        .header-section {
            background-color: #007bff;
            /* Azul */
            color: #fff;
            padding: 20px 0;
            text-align: left;
        }

        .header-section .logo-santa-edwiges {
            max-height: 80px;
            margin-bottom: 15px;
        }

        .hero-section {
            background-color: #007bff;
            padding: 0 0 60px 0;
            text-align: center;
            border-bottom: 5px solid #ffc107;
            /* Borda amarela para destaque */
        }

        .hero-section h1 {
            font-family: "Bebas Neue", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 150px !important;
            /* Fonte similar à da imagem, mais lúdica */
            font-size: 4.5rem;
            color: #fff;
            /* Vermelho forte do "Indique" da imagem */
            margin-bottom: 30px;
            text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
            line-height: 0.9;
        }

        .hero-section h1 span {
            color: #ffc107;
            /* Amarelo do "Amigo" da imagem */
        }

        .hero-image-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
        }

        .hero-image {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); */
        }

        .section-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 2.8rem;
            color: #007bff;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #ffc107;
            border-radius: 2px;
        }

        /* Regulamento Section */
        .rules-section {
            background-color: #e9ecef;
            padding: 60px 0;
        }

        .rules-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .rules-list li {
            background-color: #fff;
            padding: 20px 30px;
            margin-bottom: 15px;
            border-left: 5px solid #007bff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .rules-list li strong {
            color: #007bff;
        }

        /* Tabela de Descontos */
        .discount-section {
            padding: 60px 0;
            background-color: #ffffff;
        }

        .discount-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 10px;
            /* Espaço entre as linhas */
            margin-top: 30px;
        }

        .discount-table th,
        .discount-table td {
            padding: 18px;
            text-align: center;
            vertical-align: middle;
            font-size: 1.1rem;
        }

        .discount-table thead th {
            background-color: #007bff;
            color: #fff;
            font-weight: 700;
            border-radius: 8px 8px 0 0;
        }

        .discount-table tbody tr {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .discount-table tbody tr:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .discount-table tbody tr td:first-child {
            font-weight: 600;
            color: #e62129;
        }

        .discount-table tbody tr td:last-child {
            color: #28a745;
            /* Verde para os descontos */
            font-weight: 700;
        }

        .discount-table tbody tr:first-child {
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
        }

        .discount-table tbody tr:last-child {
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
        }

        /* Formulário de Indicação (para captar leads) */
        .lead-form-section {
            background-color: #e0f7fa;
            /* Azul claro para o formulário */
            padding: 60px 0;
            border-top: 5px solid #ffc107;
        }

        .lead-form-container {
            background-color: #fff;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .lead-form-container .form-label {
            font-weight: 600;
            color: #007bff;
        }

        .lead-form-container .form-control {
            border-radius: 8px;
            padding: 12px;
            border: 1px solid #ced4da;
        }

        .lead-form-container .form-control:focus {
            border-color: #007bff;
            box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
        }

        .btn-submit-form {
            background-color: #007bff;
            border-color: #007bff;
            color: whitesmoke;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 1.2rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .btn-submit-form:hover {
            background-color: #ffc107;
            border-color: #ffc107;
            transform: translateY(-3px);
        }

        /* Footer */
        .footer {
            background-color: #343a40;
            /* Cinza escuro para o rodapé */
            color: #fff;
            padding: 40px 0;
            font-size: 0.95rem;
        }

        .footer .social-icons a {
            color: #fff;
            font-size: 1.8rem;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .footer .social-icons a:hover {
            color: #ffc107;
            /* Amarelo para destaque */
        }

        .footer .nav-link {
            color: #fff;
            transition: color 0.3s ease;
        }

        .footer .nav-link:hover {
            color: #ffc107;
        }