/* =========================================
   PÁGINA DE LETRAS
   ARTHUR ESSÊNCIA
   ========================================= */


/* =========================================
   HERO
   ========================================= */

.lyrics-hero {
    background-color: #F8F5EF;

    text-align: center;
}


.lyrics-hero-container {
    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    padding: 120px 30px;

    box-sizing: border-box;
}


.lyrics-subtitle {
    margin: 0 0 18px;

    color: #B88A3B;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.lyrics-hero h1 {
    margin: 0 0 25px;

    color: #3E3325;

    font-family: Georgia, serif;

    font-size: 64px;

    font-weight: 500;

    line-height: 1.1;
}


.lyrics-hero-description {
    max-width: 650px;

    margin: 0 auto;

    color: #6F675C;

    font-family: Arial, sans-serif;

    font-size: 17px;

    line-height: 1.9;
}


/* =========================================
   CONTAINER
   ========================================= */

.lyrics-container {
    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    padding: 80px 30px;

    box-sizing: border-box;
}


/* =========================================
   BUSCA
   ========================================= */

.lyrics-search {
    background-color: #FFFFFF;
}


.lyrics-search-box {
    max-width: 750px;

    margin: 0 auto;
}


.lyrics-search-label {
    display: block;

    margin-bottom: 12px;

    color: #3E3325;

    font-family: Arial, sans-serif;

    font-size: 13px;

    font-weight: 600;
}


.lyrics-search-input-wrapper {
    position: relative;
}


.lyrics-search-icon {
    position: absolute;

    top: 50%;

    left: 18px;

    transform: translateY(-50%);

    font-size: 16px;

    pointer-events: none;
}


#lyrics-search-input {
    width: 100%;

    height: 55px;

    padding: 0 20px 0 50px;

    box-sizing: border-box;

    background-color: #F8F5EF;

    border: 1px solid #E3DCCD;

    border-radius: 5px;

    outline: none;

    color: #3E3325;

    font-family: Arial, sans-serif;

    font-size: 15px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


#lyrics-search-input::placeholder {
    color: #9A9185;
}


#lyrics-search-input:focus {
    border-color: #B88A3B;

    box-shadow:
        0 0 0 3px rgba(184, 138, 59, 0.10);
}


/* =========================================
   CATÁLOGO
   ========================================= */

.lyrics-catalog {
    background-color: #F8F5EF;
}


.lyrics-catalog-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}


.lyrics-catalog-header .lyrics-subtitle {
    margin-bottom: 12px;
}


.lyrics-catalog-header h2 {
    margin: 0;

    color: #3E3325;

    font-family: Georgia, serif;

    font-size: 44px;

    font-weight: 500;

    line-height: 1.2;
}


.lyrics-results-count {
    flex-shrink: 0;

    color: #7C7368;

    font-family: Arial, sans-serif;

    font-size: 13px;
}


/* =========================================
   GRID
   ========================================= */

.lyrics-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}


/* =========================================
   CARD
   ========================================= */

.lyrics-card {
    display: flex;

    flex-direction: column;

    min-width: 0;

    background-color: #FFFFFF;

    border: 1px solid #E3DCCD;

    border-radius: 6px;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(62, 51, 37, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.lyrics-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(62, 51, 37, 0.10);
}


/* =========================================
   CAPA DO CARD
   ========================================= */

.lyrics-card-cover {
    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background-color: #EEE9DF;
}


.lyrics-card-cover img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;
}


/* =========================================
   CONTEÚDO DO CARD
   ========================================= */

.lyrics-card-content {
    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 25px;
}


.lyrics-card-label {
    margin: 0 0 10px;

    color: #B88A3B;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.lyrics-card-title {
    margin: 0 0 18px;

    color: #3E3325;

    font-family: Georgia, serif;

    font-size: 24px;

    font-weight: 500;

    line-height: 1.3;
}


/* =========================================
   BOTÃO DO CARD
   ========================================= */

.lyrics-card-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    min-height: 43px;

    margin-top: auto;

    padding: 11px 18px;

    box-sizing: border-box;

    background-color: transparent;

    border: 1px solid #B88A3B;

    border-radius: 4px;

    color: #96702F;

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.7px;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}


.lyrics-card-button:hover {
    background-color: #B88A3B;

    color: #FFFFFF;
}


/* =========================================
   SEM RESULTADOS
   ========================================= */

.lyrics-empty {
    padding: 70px 20px;

    text-align: center;
}


.lyrics-empty h3 {
    margin: 0 0 10px;

    color: #3E3325;

    font-family: Georgia, serif;

    font-size: 28px;

    font-weight: 500;
}


.lyrics-empty p {
    margin: 0;

    color: #6F675C;

    font-family: Arial, sans-serif;

    font-size: 15px;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .lyrics-hero-container {
        padding: 90px 25px;
    }


    .lyrics-hero h1 {
        font-size: 52px;
    }


    .lyrics-container {
        padding: 70px 25px;
    }


    .lyrics-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .lyrics-catalog-header h2 {
        font-size: 38px;
    }

}


/* =========================================
   CELULAR
   ========================================= */

@media (max-width: 600px) {

    .lyrics-hero-container {
        padding: 70px 20px;
    }


    .lyrics-hero h1 {
        font-size: 40px;
    }


    .lyrics-hero-description {
        font-size: 15px;

        line-height: 1.8;
    }


    .lyrics-container {
        padding: 60px 20px;
    }


    .lyrics-catalog-header {
        display: block;

        margin-bottom: 35px;
    }


    .lyrics-catalog-header h2 {
        font-size: 32px;
    }


    .lyrics-results-count {
        display: block;

        margin-top: 15px;
    }


    .lyrics-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .lyrics-card {
        max-width: 480px;

        margin: 0 auto;

        width: 100%;
    }


    .lyrics-card-content {
        padding: 22px;
    }


    .lyrics-card-title {
        font-size: 23px;
    }


    #lyrics-search-input {
        height: 52px;

        font-size: 14px;
    }

}