    /* Estilos para a página de material específico */
    .material-single-section {
        color: #ffffff;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .material-single-section .excel-icon {
        max-width: 100px;
        height: auto;
        margin-bottom: 30px;
    }

    .material-single-section h1 {
        font-size: 2.5rem; /* 40px */
        font-weight: bold;
    }

    .material-single-section .subtitle {
        font-size: 1.125rem; /* 18px */
        color: #a0a0a0;
        margin-top: 15px;
        margin-bottom: 30px;
    }
    
    .btn-download {
        background-color: #ffffff;
        color: #121212;
        border: none;
        border-radius: 50px;
        padding: 15px 40px;
        font-weight: bold;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 328px;
        justify-content: center;
    }

    .btn-download .icon-download {
      background: url("../../images/Download.svg") no-repeat center center;
      width: 20px;
      height: 20px;
    }

    .btn-download:hover {
        background-color: #f0f0f0;
        color: #121212;
        transform: scale(1.05);
    }

    .features-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .features-section h2 {
        font-size: 2rem; /* 32px */
        font-weight: bold;
        margin-bottom: 60px;
    }

    .feature-item .icon {
        font-size: 2.5rem; /* 40px */
        color: #a0a0a0;
        margin-bottom: 20px;
    }

    .feature-item h3 {
        font-size: 1.25rem; /* 20px */
        font-weight: bold;
        margin-bottom: 15px;
    }

    .feature-item p {
        color: #a0a0a0;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

