/* =========================================
   DEUS CONTINUA NO CONTROLE
   PÁGINA INDIVIDUAL
   ARTHUR ESSÊNCIA
   ========================================= */


/* =========================================
   CONTAINER
   ========================================= */

.book-detail-container {
    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    padding: 100px 30px;

    box-sizing: border-box;
}


/* =========================================
   HERO
   ========================================= */

.book-detail-hero {
    background-color: #F8F5EF;
}


.book-detail-hero
.book-detail-container {

    display: grid;

    grid-template-columns: 420px 1fr;

    gap: 80px;

    align-items: center;
}


/* =========================================
   CAPA
   ========================================= */

.book-detail-cover {
    width: 100%;

    max-width: 420px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 6px;

    box-shadow:
        0 25px 60px rgba(62, 51, 37, 0.18);
}


.book-detail-cover img {
    display: block;

    width: 100%;

    height: auto;
}


/* =========================================
   CONTEÚDO DO HERO
   ========================================= */

.book-detail-content {
    max-width: 600px;
}


.book-detail-label {
    margin: 0 0 18px;

    color: #B88A3B;

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.book-detail-content h1 {
    margin: 0 0 25px;

    color: #3E3325;

    font-family: Georgia, serif;

    font-size: 58px;

    font-weight: 500;

    line-height: 1.1;
}


.book-detail-subtitle {
    margin: 0 0 25px;

    color: #4E463D;

    font-family: Georgia, serif;

    font-size: 22px;

    line-height: 1.5;
}


.book-detail-content p:not(.book-detail-label):not(.book-detail-subtitle) {
    margin: 0 0 18px;

    color: #6F675C;

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.9;
}


/* =========================================
   BOTÃO
   ========================================= */

.book-detail-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 46px;

    margin-top: 10px;

    padding: 13px 28px;

    box-sizing: border-box;

    background-color: #B88A3B;

    border: 1px solid #B88A3B;

    border-radius: 4px;

    color: #FFFFFF;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1px;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.book-detail-button:hover {
    background-color: #96702F;

    border-color: #96702F;

    transform: translateY(-2px);
}


/* =========================================
   SOBRE O LIVRO
   ========================================= */

.book-about {
    background-color: #FFFFFF;
}


.book-about
.book-detail-container {

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;

    align-items: start;
}


.book-section-heading {
    max-width: 500px;
}


.book-section-heading h2 {
    margin: 0;

    color: #3E3325;

    font-family: Georgia, serif;

    font-size: 44px;

    font-weight: 500;

    line-height: 1.2;
}


.book-about-text {
    max-width: 650px;
}


.book-about-text p {
    margin: 0 0 22px;

    color: #6F675C;

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.9;
}


.book-about-text p:last-child {
    margin-bottom: 0;
}


/* =========================================
   MENSAGENS
   ========================================= */

.book-messages {
    background-color: #F8F5EF;
}


.book-section-heading.center {
    max-width: 750px;

    margin: 0 auto 60px;

    text-align: center;
}


.book-messages-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}


.book-message-card {
    padding: 30px;

    background-color: #FFFFFF;

    border: 1px solid #E3DCCD;

    border-radius: 6px;
}


.book-message-card span {
    display: block;

    margin-bottom: 20px;

    color: #B88A3B;

    font-family: Georgia, serif;

    font-size: 24px;
}


.book-message-card h3 {
    margin: 0 0 12px;

    color: #3E3325;

    font-family: Georgia, serif;

    font-size: 23px;

    font-weight: 500;
}


.book-message-card p {
    margin: 0;

    color: #6F675C;

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   PARA QUEM É
   ========================================= */

.book-for {
    background-color: #FFFFFF;
}


.book-for-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 50px;

    margin-top: 55px;
}


.book-for-grid h3 {
    margin: 0 0 12px;

    color: #3E3325;

    font-family: Georgia, serif;

    font-size: 23px;

    font-weight: 500;
}


.book-for-grid p {
    margin: 0;

    color: #6F675C;

    font-family: Arial, sans-serif;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   FRASE CENTRAL
   ========================================= */

.book-quote {
    background-color: #3E3325;

    text-align: center;
}


.book-quote
.book-detail-container {

    max-width: 850px;
}


.book-quote .book-detail-label {
    color: #D0A75A;
}


.book-quote blockquote {
    max-width: 750px;

    margin: 0 auto 25px;

    color: #FFFFFF;

    font-family: Georgia, serif;

    font-size: 38px;

    font-weight: 400;

    line-height: 1.4;
}


.book-quote-author {
    margin: 0;

    color: #C8BDAE;

    font-family: Arial, sans-serif;

    font-size: 13px;

    letter-spacing: 1px;
}


/* =========================================
   SEÇÃO FINAL
   ========================================= */

.book-detail-final {
    background-color: #F8F5EF;

    text-align: center;
}


.book-detail-final
.book-detail-container {

    max-width: 800px;
}


.book-detail-final h2 {
    max-width: 650px;

    margin: 0 auto 25px;

    color: #3E3325;

    font-family: Georgia, serif;

    font-size: 46px;

    font-weight: 500;

    line-height: 1.2;
}


.book-detail-final p {
    max-width: 650px;

    margin: 0 auto;

    color: #6F675C;

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.9;
}


.book-detail-final
.book-detail-button {

    margin-top: 30px;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .book-detail-container {
        padding: 80px 25px;
    }


    .book-detail-hero
    .book-detail-container {

        grid-template-columns: 330px 1fr;

        gap: 50px;
    }


    .book-detail-content h1 {
        font-size: 46px;
    }


    .book-detail-subtitle {
        font-size: 19px;
    }


    .book-about
    .book-detail-container {

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .book-messages-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .book-for-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 35px;
    }


    .book-section-heading h2 {
        font-size: 38px;
    }


    .book-quote blockquote {
        font-size: 32px;
    }


    .book-detail-final h2 {
        font-size: 38px;
    }

}


/* =========================================
   CELULAR
   ========================================= */

@media (max-width: 600px) {

    .book-detail-container {
        padding: 65px 20px;
    }


    /* =============================
       HERO
       ============================= */

    .book-detail-hero
    .book-detail-container {

        display: flex;

        flex-direction: column;

        gap: 45px;

        align-items: stretch;
    }


    /* =============================
       CAPA
       ============================= */

    .book-detail-cover {
        width: 100%;

        max-width: 360px;

        margin: 0 auto;
    }


    /* =============================
       CONTEÚDO
       ============================= */

    .book-detail-content {
        max-width: none;

        text-align: center;
    }


    .book-detail-label {
        font-size: 10px;

        letter-spacing: 2.5px;
    }


    .book-detail-content h1 {
        font-size: 40px;
    }


    .book-detail-subtitle {
        font-size: 18px;

        line-height: 1.5;
    }


    .book-detail-content p:not(.book-detail-label):not(.book-detail-subtitle) {
        font-size: 15px;

        line-height: 1.8;
    }


    .book-detail-button {
        width: 100%;
    }


    /* =============================
       SOBRE
       ============================= */

    .book-about
    .book-detail-container {

        gap: 35px;
    }


    .book-section-heading h2 {
        font-size: 32px;
    }


    .book-about-text p {
        font-size: 15px;

        line-height: 1.8;
    }


    /* =============================
       MENSAGENS
       ============================= */

    .book-section-heading.center {
        margin-bottom: 40px;
    }


    .book-messages-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .book-message-card {
        padding: 25px;
    }


    .book-message-card h3 {
        font-size: 21px;
    }


    /* =============================
       PARA QUEM É
       ============================= */

    .book-for-grid {
        grid-template-columns: 1fr;

        gap: 30px;

        margin-top: 40px;
    }


    /* =============================
       FRASE
       ============================= */

    .book-quote blockquote {
        font-size: 28px;

        line-height: 1.4;
    }


    /* =============================
       FINAL
       ============================= */

    .book-detail-final h2 {
        font-size: 32px;
    }


    .book-detail-final p {
        font-size: 15px;

        line-height: 1.8;
    }

}