/* ==========================================================
   JESUSILLAN.COM
   DOCE-NOMBRES.CSS
   v3.0
   ========================================================== */

/* ==========================================================
   VARIABLES
========================================================== */

:root{

    --doce-primary:#b89555;
    --doce-secondary:#e2c27e;
    --doce-bg:#090909;
    --doce-panel:#111111;
    --doce-border:rgba(184,149,85,.22);
    --doce-text:rgba(255,255,255,.82);
    --doce-soft:rgba(255,255,255,.62);

}

/* ==========================================================
   PÁGINA
========================================================== */

.book-page{
    position:relative;
    overflow-x:hidden;
    background:
        radial-gradient(
            circle at top,
            rgba(184,149,85,.05),
            transparent 40%
        ),

        linear-gradient(
            180deg,
            #080808 0%,
            #0c0c0c 45%,
            #090909 100%
        );
}

/* ==========================================================
   HERO
========================================================== */

.hero.hero-book{
    position:relative;
    display:flex;
    align-items:center;
    min-height:100vh;
    padding-top:120px;
    padding-bottom:20px;
    overflow:hidden;
}
/* ==========================================================
TRANSICIÓN HERO → SINOPSIS
========================================================== */
.hero-transition{
    position:relative;
    padding:0px 0 0px;
    text-align:center;
}
.book-quote{
    max-width:900px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:26px;
    font-family:var(--font-display);
}
.book-quote .line-1{
    display:block;
    font-size:clamp(1.5rem,2.8vw,2.3rem);
    color:#e4d3a6;
    letter-spacing:.02em;
}
.book-quote .divider{
    width:70px;
    height:1px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(184,149,85,.9),
        transparent
    );
}
.book-quote .line-2{
    display:block;
    font-size:clamp(1.9rem,3.3vw,2.8rem);
    font-weight:500;
    color:#ffffff;
    line-height:1.2;
}
.scroll-indicator{
    margin-top:70px;
    display:flex;
    justify-content:center;
    animation:bounceArrow 2.4s infinite;
}
.scroll-indicator span{
    width:18px;
    height:18px;
    border-right:2px solid rgba(184,149,85,.9);
    border-bottom:2px solid rgba(184,149,85,.9);
    transform:rotate(45deg);
}
@keyframes bounceArrow{
    0%,100%{
        transform:translateY(0);
        opacity:.25;
    }
    50%{
        transform:translateY(12px);

        opacity:1;
    }
}
/* ==========================================================
   HALO GENERAL
========================================================== */

.hero.hero-book::after{
    content:"";
    position:absolute;
    right:-260px;
    top:50%;
    width:900px;
    height:900px;
    transform:translateY(-50%);
    border-radius:50%;
    background:
        radial-gradient(
            circle,
            rgba(184,149,85,.06),
            rgba(184,149,85,.025),
            transparent 72%
        );
    filter:blur(65px);
    pointer-events:none;
}

/* ==========================================================
   GRID
========================================================== */

.hero-grid{
    position:relative;
    z-index:5;
    display:grid;
    grid-template-columns:54% 46%;
    align-items:center;
    gap:35px;
}

/* ==========================================================
   COLUMNA LIBRO
========================================================== */

.hero-book-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:720px;
    isolation:isolate;
}

/* ==========================================================
   RELOJ
========================================================== */

.hero-book-image::before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:840px;
    height:840px;
    transform:translate(-50%,-50%);
    background:
         url("../images/german-bg-doce-nombres.png")
        center / contain
        no-repeat;
    opacity: 0.18;
    z-index: 0;
}

/* ==========================================================
   HALO DORADO
========================================================== */

.hero-book-image::after{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:420px;
    height:420px;
    transform:translate(-50%,-50%);
    border-radius:50%;
    background:
        radial-gradient(
            circle,
            rgba(184,149,85,.18),
            rgba(184,149,85,.06),
            transparent 70%
        );

    filter:blur(60px);
    z-index:1;
}
/* ==========================================================
   MOCKUP
========================================================== */

.book-glow{
    position:absolute;
    left:50%;
    top:50%;
    width:320px;
    height:320px;
    transform:translate(-50%,-50%);
    border-radius:50%;
    background:radial-gradient(
        circle,
        rgba(255,255,255,.06),
        transparent 72%
    );
    filter:blur(40px);
    z-index:2;
}

.book-mockup{
    position:relative;
    z-index:3;
    width:min(420px,96%);
    height:auto;
    filter:
        drop-shadow(0 45px 65px rgba(0,0,0,.60));
    transition:
        transform .6s ease,
        filter .6s ease;

}
.mockup-link{
    display:inline-block;
    text-decoration:none;
}
.mockup-link:hover{
    cursor:pointer;
}
.book-mockup:hover{
    transform:
        translateY(-8px)
        scale(1.02);
    filter:
        drop-shadow(0 55px 80px rgba(0,0,0,.70));
}

/* ==========================================================
   CONTENIDO
========================================================== */
.hero-content{
    position:relative;
    z-index:10;
    max-width:620px;
}

/* ==========================================================
   CATEGORÍA
========================================================== */
.book-category{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:28px;
    color:var(--doce-primary);
    font-size:.82rem;
    text-transform:uppercase;
    letter-spacing:.28em;

}

.book-category::before{
    content:"";
    width:60px;
    height:1px;
    background:rgba(184,149,85,.55);

}

/* ==========================================================
   TÍTULO
========================================================== */

.hero-content h1{
    margin:0;
    font-family:var(--font-title);
    font-size:clamp(4rem,6vw,6.2rem);
    line-height:.95;
    letter-spacing:-.05em;
    color:#fff;
    text-wrap:balance;
    text-shadow:
        0 12px 24px rgba(0,0,0,.45);

}


/* ==========================================================
   DIVISOR
========================================================== */

.hero-divider{
    width:140px;
    height:2px;
    margin:34px 0;
    border-radius:2px;
    background:linear-gradient(
        90deg,
        var(--doce-primary),
        transparent

    );

}

/* ==========================================================
   CLAIM
========================================================== */

.hero-claim{
    padding:120px 0;
    text-align:center;
    background:
        linear-gradient(
            180deg,
            #090909,
            #101114,
            #090909
        );
}

.hero-claim p{
    margin:0;
    font-family:var(--font-serif);
    font-size:clamp(2.4rem,4vw,3.8rem);
    line-height:1.2;
    font-weight:500;
    color:#EEE9DF;
}

.hero-claim .divider{

    width:80px;
    height:1px;
    margin:32px auto;
    background:rgba(184,149,85,.45);
}

.hero-claim .gold{

    color:var(--doce-primary);
}

/* ==========================================================
   DESCRIPCIÓN
========================================================== */

.hero-description{

    margin-top:34px;
    max-width:560px;
    color:var(--doce-text);
    font-size:1.08rem;
    line-height:2;
}
/* ==========================================================
   BOTONES HERO
========================================================== */

.hero-buttons{

    display:flex;
    align-items:center;
    gap:18px;
    margin-top:46px;
    flex-wrap:wrap;

}

/* ==========================================================
   AMAZON
========================================================== */
.hero-buttons .btn-amazon{

    position:relative;
    overflow:hidden;
    min-width:280px;
    height:64px;
    padding:0 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
    border-radius:18px;
    text-decoration:none;
    color:#fff;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.03)
        );

    border:1px solid rgba(184,149,85,.30);
    backdrop-filter:blur(14px);
    box-shadow:
        0 18px 45px rgba(0,0,0,.35);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        background .35s ease;
}

.hero-buttons .btn-amazon:hover{
    transform:translateY(-5px);
    border-color:rgba(184,149,85,.75);
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.16),
            rgba(184,149,85,.10)
        );
    box-shadow:
        0 20px 48px rgba(0,0,0,.45),
        0 0 35px rgba(184,149,85,.28);

}

.hero-buttons .btn-amazon img{
    width:240px;
    height:auto;
    transition:
        transform .35s ease,
        filter .35s ease;
}

.hero-buttons .btn-amazon span{
    position:relative;
    display:flex;
    align-items:center;
    gap:14px;
    padding-left:22px;
    font-size:.84rem;
    letter-spacing:.12em;
    text-transform:uppercase;
    font-weight:600;
}

.hero-buttons .btn-amazon span::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:1px;
    height:24px;
    transform:translateY(-50%);
    background:rgba(184,149,85,.35);
}
.hero-buttons .btn-amazon span::after{

    content:"→";
    font-size:1rem;
    transition:
        transform .35s ease;
}
.hero-buttons .btn-amazon:hover img{
    transform:scale(1.08);
    filter:drop-shadow(0 0 10px rgba(255,200,90,.55));
}
.hero-buttons .btn-amazon:hover span::after{
    transform:translateX(4px);
}
.hero-buttons .btn-amazon::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:70%;
    height:100%;
    background:
        linear-gradient(
           90deg,
            transparent,
            rgba(255,255,255,.18),
            transparent
        );
    transform:skewX(-24deg);
    transition:left .75s ease;
}
.hero-buttons .btn-amazon:hover::before{
    left:150%;
}
/* ==========================================================
   COMPARTIR
========================================================== */

.hero-buttons .btn-share{
    height:68px;
    min-width:280px;
    padding:0 24px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    background:rgba(255,255,255,.02);
    border:1px solid rgba(255,255,255,.10);
    color:rgba(255,255,255,.72);
}

.hero-buttons .btn-share:hover{
    color:var(--doce-primary);
    border-color:rgba(184,149,85,.35);
    background:rgba(255,255,255,.04);

}

.hero-buttons .btn-share svg{
    width:19px;
    height:19px;
}
/* ==========================================================
   ANIMACIONES
========================================================== */

.hero-content{
    animation:heroFade .8s ease forwards;
}
.hero-book-image{
    animation:heroBook 1s ease forwards;
}
@keyframes heroFade{
    from{
        opacity:0;
        transform:translateY(28px);
    }
    to{
        opacity:1;
        transform:none;
    }
}
@keyframes heroBook{
    from{
        opacity:0;
        transform:translateY(40px) scale(.96);
    }
    to{
        opacity:1;
        transform:none;
    }
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:1200px){

    .hero-grid{
        gap:45px;
    }
    .book-mockup{
        width:min(420px,100%);
    }
    .hero-content h1{
        font-size:5rem;
    }
}
@media (max-width:992px){
    .hero.hero-book{
        min-height:auto;
        padding:40px 0 70px;
    }
    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
        gap:50px;
    }
    .hero-book-image{
        min-height:480px;
        order:1;
    }
    .hero-content{
        order:2;
        margin:auto;
    }
    .book-category{
        justify-content:center;
    }
    .book-category::before{
        display:none;
    }
    .hero-divider{
        margin-left:auto;
        margin-right:auto;
    }
    .hero-description{
        margin-left:auto;
        margin-right:auto;
    }
    .hero-buttons{
        justify-content:center;
    }
}

@media (max-width:768px){

   /* HEADER — ajuste móvil */
.site-header{
    position:relative;
    z-index:100;
}
.header-container{
    min-height:70px;
}
.site-logo{
    width:58px;
    height:58px;
}
.site-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}
    .hero.hero-book{
        padding:90px 0 10px;
    }
    .hero-content h1{
        font-size:3.5rem;
    }
    .hero-claim{
        font-size:1.4rem;
    }
    .hero-description{
        font-size:1rem;
        line-height:1.8;
    }
    .hero-book-image{
        min-height:300px;
    }
    .hero-book-image::before{
        width:320px;
        height:320px;
        opacity:.05;
    }
.book-mockup{
    width:82%;
    max-width:320px;
    height:auto;
}
    .hero-buttons{
        flex-direction:column;
        align-items:stretch;
    }
     .hero-buttons .btn-amazon,
    .hero-buttons .btn-share{
        width:245px;
        box-sizing:border-box;
    }
}
@media (max-width:480px){
    .hero-content h1{
        font-size:2.8rem;
    }
    .hero-claim{
        font-size:1.15rem;
    }
    .hero-description{
        font-size:.95rem;
    }
    .hero-buttons .btn-amazon{
        height:62px;
    }
    .hero-buttons .btn-amazon img{
        width:96px;
    }
}
/* ==========================================================
BOOK QUOTE
========================================================= */
.book-quote{
    max-width:900px;
    margin:90px auto;
    text-align:center;
    font-family:var(--font-serif);
    font-style:normal;
    font-weight:500;
    line-height:1.2;
}
.book-quote .line-1{
    display:block;
    font-size:clamp(2.3rem,4vw,3.7rem);
    color:var(--text);
}
.book-quote .divider{
    display:block;
    width:90px;
    height:1px;
    margin:34px auto;
    background:rgba(184,149,85,.45);
}
.book-quote .line-2{
    display:block;
    font-size:clamp(2.6rem,4.5vw,4rem);
    color:var(--doce-primary);
}
/* ==========================================================
   SINOPSIS
========================================================== */
.synopsis{
    position:relative;
}
.synopsis-grid{
    display:grid;
    grid-template-columns:1.45fr .85fr;
    gap:90px;
    align-items:start;
    margin-top:2rem;
}

/* ==========================================================
   SINOPSIS — jerarquía editorial
========================================================== */

.synopsis-grid{
    gap:clamp(70px,8vw,130px);
    padding-top:40px;
    padding-bottom:20px;
}
.synopsis-content{
    max-width:720px;
}
.synopsis-content .section-header{
    margin-bottom:42px;
}
.synopsis-content .section-header h2{
    font-family:var(--serif);
    font-size:clamp(46px,5vw,64px);
    font-weight:500;
    line-height:1;
    margin:0;
    color:var(--text);
}

.synopsis-content p{
    font-size:16px;
    line-height:1.85;
    margin:0 0 28px;
    color:#c8c3ba;
}
.synopsis-content .highlight-text{
    margin-top:42px;
    margin-bottom:0;
    padding-left:24px;
    border-left:2px solid var(--gold);
    color:var(--gold2);
    font-family:var(--serif);
    font-size:clamp(27px,3vw,38px);
    line-height:1.15;
    font-weight:500;
    letter-spacing:.01em;
}
.book-cover-panel{
    display:flex;
    justify-content:center;
    align-items:flex-start;
}

.book-cover-panel a{
    display:block;
    width:min(400px,100%);
    transition:transform .35s ease,filter .35s ease;
}

.book-cover-panel a:hover{
    transform:translateY(-5px);
    filter:brightness(1.04);
}

.book-cover-panel img{
    display:block;
    width:100%;
    height:auto;
    box-shadow:0 25px 50px rgba(0,0,0,.38);
}
/* ==========================================================
   SINOPSIS — MÓVIL
   ========================================================== */
@media (max-width:768px){
    .synopsis-grid{
        grid-template-columns:1fr;
        gap:40px;
        width:100%;
    }
   .synopsis-content{
        width:100%;
        min-width:0;
    }
    .synopsis-content p{
        width:100%;
        max-width:none;
    }
    .book-cover-panel{
        width:100%;
        display:flex;
        justify-content:center;
        align-items:center;
    }
    .book-cover-panel img{
        display:block;
        width:min(78vw, 320px);
        max-width:100%;
        height:auto;
    }
}
/* ==========================================================
   TEXTO
========================================================== */
.synopsis-content{
    max-width:760px;
}
.synopsis-content p{
    margin:0 0 2rem;
    color:var(--doce-text);
    font-size:1.08rem;
    line-height:2;
}
.synopsis-content p:first-of-type{
    font-size:1.18rem;
    color:#ffffff;
}
/* ==========================================================
   FRASE DESTACADA
========================================================== */
.highlight-text{
    position:relative;
    margin-top:3rem;
    padding-left:28px;
    font-family:var(--font-title);
    font-size:1.45rem;
    line-height:1.6;
    color:var(--doce-primary);
}
.highlight-text::before{
    content:"";
    position:absolute;
    left:0;
    top:6px;
    bottom:6px;
    width:3px;
    border-radius:2px;
    background:var(--doce-primary);
}
/* ==========================================================
   FICHA DEL LIBRO
   ========================================================== */
.book-data{
    position:relative;
    display:grid;
    grid-template-columns:minmax(260px, 360px) 1fr;
    gap:70px;
    max-width:1050px;
    margin:55px auto 0;
    padding:55px 65px;
    overflow:hidden;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.012)
        );
    border:1px solid rgba(184,149,85,.16);
    box-shadow:
        0 25px 70px rgba(0,0,0,.28);
}
/* ----------------------------------------------------------
   PORTADA
   ---------------------------------------------------------- */
.book-data-cover{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
}
.book-data-cover a{
    position:relative;
    display:block;
    width:min(100%,320px);
    text-decoration:none;
    transition:
        transform .45s ease,
        filter .45s ease;
}
.book-data-cover a::after{
    content:"";
    position:absolute;
    left:8%;
    right:8%;
    bottom:-18px;
    height:25px;
    background:rgba(0,0,0,.55);
    filter:blur(18px);
    opacity:.7;
    z-index:-1;
}
.book-data-cover img{
    display:block;
    width:100%;
    height:auto;
    box-shadow:
        0 22px 45px rgba(0,0,0,.45);
    transition:
        transform .45s ease,
        box-shadow .45s ease,
        filter .45s ease;
}

.book-data-cover a:hover{
    transform:translateY(-6px);
}
.book-data-cover a:hover img{
    transform:scale(1.015);
    box-shadow:
        0 28px 55px rgba(0,0,0,.55),
        0 0 30px rgba(184,149,85,.10);
}

/* ----------------------------------------------------------
   INDICADOR AMAZON SOBRE LA PORTADA
   ---------------------------------------------------------- */
.book-data-cover a::before{
    content:"Comprar en Amazon  →";
    position:absolute;
    left:50%;
    bottom:18px;
    transform:
        translate(-50%,8px);
    padding:9px 14px;
    white-space:nowrap;
    font-size:9px;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#fff;
    background:rgba(15,15,15,.86);
    border:1px solid rgba(184,149,85,.35);
    opacity:0;
    transition:
        opacity .35s ease,
        transform .35s ease;
    z-index:3;
}
.book-data-cover a:hover::before{
    opacity:1;
    transform:translate(-50%,0);
}

/* ----------------------------------------------------------
   INFORMACIÓN
   ---------------------------------------------------------- */
.book-data-info{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
/* ----------------------------------------------------------
   CADA DATO
   ---------------------------------------------------------- */
.book-data-item{
    position:relative;
    display:grid;
    grid-template-columns:150px 1fr;
    gap:25px;
    padding:20px 0;
    border-bottom:1px solid rgba(184,149,85,.13);
}
.book-data-item:first-child{
    padding-top:0;
}
.book-data-item:last-child{
    border-bottom:0;
    padding-bottom:0;
}
/* ETIQUETA */

.book-data-item strong{
    display:block;
    font-size:10px;
    font-weight:500;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:rgba(184,149,85,.72);
}

/* VALOR */
.book-data-item span{
    display:block;
    font-family:var(--font-title);
    font-size:18px;
    line-height:1.45;
    color:var(--doce-text);
}

/* ----------------------------------------------------------
   ELEMENTO GRÁFICO DE FONDO
   ---------------------------------------------------------- */
.book-data::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    right:-210px;
    top:50%;
    transform:translateY(-50%);
    background-image:
        url("../images/doce-nombres.jpg");
    background-size:cover;
    background-position:center;
    opacity:.5;
    filter:
        grayscale(1)
        contrast(.8);
    pointer-events:none;
}
/* VELO PARA FUNDIR LA PORTADA CON EL FONDO */

.book-data::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            transparent 25%,
            rgba(10,10,10,.25) 60%,
            rgba(10,10,10,.65)
        );

    pointer-events:none;
}

/* ----------------------------------------------------------
   MÓVIL
  ---------------------------------------------------------- */
@media(max-width:768px){
    .book-data{
        grid-template-columns:1fr;
        gap:45px;
        margin-top:40px;
        padding:42px 25px;
    }

    .book-data-cover a{
        width:min(100%,290px);
    }
    .book-data-info{
        width:100%;
    }
    .book-data-item{
        grid-template-columns:1fr;
        gap:7px;
        padding:18px 0;
    }
    .book-data-item strong{
        font-size:9px;
        letter-spacing:.17em;
    }
    .book-data-item span{
        font-size:17px;
    }
    .book-data::before{
        width:360px;
        height:360px;
        right:-170px;
        top:20%;
        opacity:.025;
    }
    .book-data::after{
        background:
            linear-gradient(
                180deg,
                rgba(10,10,10,.15),
                rgba(10,10,10,.55)
            );
    }
}

/* ==========================================================
   POR QUÉ LEER CONTRA TIEMPO
========================================================== */
.features{
    position:relative;
}
.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
    margin-top:2rem;
}

/* ==========================================================
   TARJETAS
========================================================== */
.feature-card{
    position:relative;
    overflow:hidden;
    padding:2.6rem;
    border-radius:24px;
    background:rgba(255,255,255,.025);
    border:1px solid rgba(255,255,255,.06);
    backdrop-filter:blur(12px);
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.feature-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(255,255,255,.05),
        transparent 45%
    );
    opacity:0;
    transition:.35s;
}
.feature-card:hover{
    transform:translateY(-8px);
    border-color:rgba(184,149,85,.28);
    box-shadow:
        0 22px 48px rgba(0,0,0,.35);
}
.feature-card:hover::before{
    opacity:1;
}
/* ==========================================================
   ICONO
========================================================== */
.feature-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:62px;
    height:62px;
    margin-bottom:1.6rem;
    border-radius:18px;
    background:rgba(184,149,85,.10);
    border:1px solid rgba(184,149,85,.20);
    color:var(--doce-primary);
    font-size:1.4rem;
}

/* ==========================================================
   TÍTULO
========================================================== */
.feature-card h3{
    margin:0 0 1rem;
    color:#fff;
    font-size:1.35rem;
    line-height:1.3;
}

/* ==========================================================
   TEXTO
========================================================== */
.feature-card p{
    margin:0;
    color:var(--doce-soft);
    line-height:1.9;
}
/* ==========================================================
   RESPONSIVE
========================================================== */
@media (max-width:992px){
    .features-grid{
        grid-template-columns:1fr;
    }
}
/* ==========================================================
   RESEÑAS
========================================================== */
.reviews{
    position:relative;
}
.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin-top:45px;
    align-items:stretch;
}

/* ==========================================================
   TARJETA
========================================================== */
.review-card{
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    min-height:390px;
    padding:34px 32px 30px;
    border-radius:3px;
    background:rgba(255,255,255,.025);
    border:1px solid rgba(255,255,255,.06);
    backdrop-filter:blur(10px);
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}
.review-card::before{
    content:"“";
    position:absolute;
    left:24px;
    top:8px;
    font-family:var(--font-title);
    font-size:6rem;
    line-height:1;
    color:rgba(184,149,85,.08);
}
.review-card:hover{
    transform:translateY(-8px);
    border-color:rgba(184,149,85,.28);
    box-shadow:
        0 24px 50px rgba(0,0,0,.35);
}

/* ==========================================================
   ESTRELLAS
========================================================== */
.review-card .stars{
    margin-bottom:1.4rem;
    color:var(--doce-primary);
    font-size:1rem;
    letter-spacing:.35rem;
}
.review-title{
    position:relative;
    z-index:2;
    margin:0 0 20px;
    font-family:var(--font-title);
    font-size:23px;
    font-weight:500;
    line-height:1.15;
    letter-spacing:.04em;
    color:var(--doce-primary);
}

/* ==========================================================
   TEXTO
========================================================== */
.review-card p{
    position:relative;
    z-index:2;
    margin:0;
    color:var(--doce-text);
    font-size:14px;
    line-height:1.75;
}

/* ==========================================================
   AUTOR
========================================================== */
.review-author{
    margin-top:25px;
    font-family:var(--font-title);
    font-size:18px;
    font-style:italic;
    color:var(--doce-primary);
}
/* ==========================================================
   TEXTO DE RESEÑA — CONTRAÍDO
========================================================== */
.review-text-wrap{
    position:relative;
    z-index:2;
    flex:1;
    display:flex;
    flex-direction:column;
}
.review-card:not(.expanded) .review-text{
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:5;
    overflow:hidden;
}
.review-card.expanded .review-text{
    display:block;
}
/* ==========================================================
   BOTÓN EXPANDIR
========================================================== */
.review-expand{
    align-self:center;
    width:32px;
    height:32px;
    margin-top:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(184,149,85,.35);
    border-radius:50%;
    background:transparent;
    color:var(--doce-primary);
    font-size:20px;
    line-height:1;
    cursor:pointer;
    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}
.review-expand:hover{
    color:#f0dba8;
    background:rgba(184,149,85,.07);
    border-color:rgba(184,149,85,.65);
    transform:scale(1.08);
}
.review-card.expanded .review-expand{
    transform:rotate(45deg);
}
/* ==========================================================
   RESEÑAS — MÓVIL
========================================================== */

@media(max-width:900px){
    .reviews-grid{
        grid-template-columns:1fr;
        gap:22px;
        margin-top:35px;
    }
    .review-card{
        min-height:0;
        padding:30px 26px 28px;
    }
    .review-title{
        font-size:22px;
    }
}
@media(max-width:600px){
    .review-card{
        padding:28px 23px 26px;
    }
    .review-title{
        font-size:21px;
    }
}
/* ==========================================================
   DOCE NOMBRES — PRIMER CAPÍTULO
   ========================================================== */

.doce-chapter {
    position: relative;
    padding: 8rem 0 1rem;
    overflow: hidden;
    text-align: center;
}


/* ==========================================================
   HALO DE FONDO
   ========================================================== */

.doce-chapter::before {
    content: "";
    position: absolute;

    left: 50%;
    top: 50%;

    width: 700px;
    height: 700px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(184,149,85,.09),
            rgba(184,149,85,.035) 35%,
            transparent 72%
        );

    filter: blur(20px);

    pointer-events: none;
}


/* ==========================================================
   CONTENIDO
   ========================================================== */

.doce-chapter-content {
    position: relative;
    z-index: 2;

    max-width: 820px;

    margin: 0 auto;

    text-align: center;
}


/* ==========================================================
   KICKER
   ========================================================== */

.doce-chapter-kicker {
    display: block;

    color: var(--doce-primary);

    font-size: .72rem;
    font-weight: 600;

    letter-spacing: .28em;

    text-transform: uppercase;
}


/* ==========================================================
   DIVISOR
   ========================================================== */

.doce-chapter-divider {
    width: 70px;
    height: 1px;

    margin: 1.5rem auto 2.4rem;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(184,149,85,.8),
            transparent
        );
}


/* ==========================================================
   TÍTULO
   ========================================================== */

.doce-chapter-content h2 {
    margin: 0;

    font-family: var(--font-serif);

    font-size: clamp(2.6rem, 5vw, 4.5rem);

    font-weight: 500;

    line-height: 1.08;

    letter-spacing: -.025em;

    color: #f2eee6;
}


/* FRASE DESTACADA */

.doce-chapter-content h2 span {
    color: var(--doce-primary);
}


/* ==========================================================
   INTRODUCCIÓN
   ========================================================== */

.doce-chapter-intro {
    max-width: 650px;

    margin: 2.5rem auto 1.5rem;

    font-family: var(--font-serif);

    font-size: clamp(1.25rem, 2.2vw, 1.55rem);

    line-height: 1.55;

    color: rgba(255,255,255,.82);
}


/* ==========================================================
   TEXTO
   ========================================================== */

.doce-chapter-content > p:not(.doce-chapter-intro) {
    max-width: 670px;

    margin: 0 auto;

    color: var(--doce-soft);

    font-size: 1rem;

    line-height: 1.9;
}


/* ==========================================================
   CONTENEDOR DEL BOTÓN
   ========================================================== */

.doce-chapter-action {
    display: flex;

    justify-content: center;

    margin-top: 3.2rem;
}


/* ==========================================================
   BOTÓN PRINCIPAL
   ========================================================== */

.btn-chapter {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 16px;

    min-width: 340px;

    min-height: 68px;

    padding: 0 30px;

    overflow: hidden;

    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            #c7a866,
            #a98443
        );

    border: 1px solid rgba(226,194,126,.75);

    color: #111;

    font-size: .82rem;

    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;

    text-decoration: none;

    box-shadow:
        0 18px 40px rgba(0,0,0,.38),
        0 0 35px rgba(184,149,85,.12);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}


/* ==========================================================
   BRILLO DEL BOTÓN
   ========================================================== */

.btn-chapter::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.32),
            transparent
        );

    transform: skewX(-24deg);

    transition: left .7s ease;
}


/* ==========================================================
   HOVER
   ========================================================== */

.btn-chapter:hover {
    transform: translateY(-5px);

    background:
        linear-gradient(
            135deg,
            #d4b777,
            #b89450
        );

    box-shadow:
        0 22px 48px rgba(0,0,0,.45),
        0 0 45px rgba(184,149,85,.22);

    color: #0b0b0b;

    text-decoration: none;
}


.btn-chapter:hover::before {
    left: 150%;
}


/* ==========================================================
   ICONO
   ========================================================== */

.btn-chapter-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    border: 1px solid rgba(0,0,0,.35);

    border-radius: 50%;

    font-size: .9rem;

    line-height: 1;
}


/* ==========================================================
   TEXTO BOTÓN
   ========================================================== */

.btn-chapter > span:nth-child(2) {
    position: relative;
}


/* ==========================================================
   FLECHA
   ========================================================== */

.btn-chapter-arrow {
    font-size: 1.15rem;

    transition:
        transform .3s ease;
}


.btn-chapter:hover .btn-chapter-arrow {
    transform: translateX(5px);
}


/* ==========================================================
   NOTA
   ========================================================== */

.doce-chapter-note {
    display: block;

    margin-top: 1.2rem;

    color: rgba(255,255,255,.42);

    font-size: .72rem;

    letter-spacing: .08em;
}


/* ==========================================================
   SEPARACIÓN INFERIOR
   ========================================================== */

.doce-chapter::after {
    content: "";

    display: block;

    width: 70px;
    height: 1px;

    margin: 5rem auto 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(184,149,85,.45),
            transparent
        );
}


/* ==========================================================
   MÓVIL
   ========================================================== */

@media (max-width: 768px) {

    .doce-chapter {
        padding: 6rem 0 5rem;
    }

    .doce-chapter-content {
        padding: 0 1.2rem;
    }

    .doce-chapter-content h2 {
        font-size: clamp(2.35rem, 9vw, 3.4rem);

        line-height: 1.08;
    }

    .doce-chapter-intro {
        margin-top: 2rem;

        font-size: 1.2rem;
    }

    .doce-chapter-content > p:not(.doce-chapter-intro) {
        font-size: .96rem;

        line-height: 1.8;
    }

    .doce-chapter-action {
        margin-top: 2.5rem;
    }

    .btn-chapter {
        width: 100%;

        max-width: 360px;

        min-width: 0;

        min-height: 64px;

        padding: 0 20px;

        gap: 12px;

        font-size: .76rem;

        letter-spacing: .10em;
    }

    .doce-chapter::after {
        margin-top: 4rem;
    }
}


/* ==========================================================
   MÓVIL PEQUEÑO
   ========================================================== */

@media (max-width: 480px) {

    .doce-chapter {
        padding: 5rem 0 4.5rem;
    }

    .doce-chapter-content h2 {
        font-size: 2.25rem;
    }

    .doce-chapter-intro {
        font-size: 1.1rem;
    }

    .btn-chapter {
        min-height: 62px;

        padding: 0 16px;

        font-size: .7rem;
    }

    .btn-chapter-icon {
        width: 22px;
        height: 22px;
    }
}
/* ==========================================================
   CTA COMPRA
========================================================== */

.cta-compra{
    position:relative;
    text-align:center;
    padding:130px 0;
}
.cta-compra::before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:900px;
    height:900px;
    transform:translate(-50%,-50%);
    border-radius:50%;
    background:radial-gradient(
        circle,
        rgba(184,149,85,.08),
        transparent 70%
    );
    pointer-events:none;
}
.cta-compra h2{
    margin-bottom:1.5rem;
    font-size:clamp(2.8rem,5vw,4.2rem);
}
.cta-compra p{
    max-width:720px;
    margin:0 auto 3rem;
    color:var(--doce-soft);
    line-height:1.9;
}
/* ==========================================================
   CTA FINAL
========================================================== */
.cta-final{
    position:relative;
    text-align:center;
    padding:60px 0;
}
.cta-final::before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:900px;
    height:900px;
    transform:translate(-50%,-50%);
    border-radius:50%;
    background:radial-gradient(
        circle,
        rgba(184,149,85,.08),
        transparent 70%
    );
    pointer-events:none;
}
.cta-final h2{
    margin-bottom:1.5rem;
    font-size:clamp(2.8rem,5vw,4.2rem);
}
.cta-final p{
    max-width:720px;
    margin:0 auto 3rem;
    color:var(--doce-soft);
    line-height:1.9;
}
/* ==========================================================
   MUCHO MÁS QUE UN THRILLER
   ========================================================== */
.tags-cloud{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    max-width:1000px;
    margin:45px auto 0;
    text-align:center;
}
/* ELEMENTOS */
.tags-cloud span{
    position:relative;
    display:inline-flex;
    align-items:center;
    color:var(--doce-text);
    font-family:var(--font-title);
    font-size:1.05rem;
    line-height:1.5;
    padding:0 18px;
}
/* SEPARADOR */
.tags-cloud span:not(:last-child)::after{
    content:"|";
    position:absolute;
    right:-1px;
    top:50%;
    transform:translateY(-50%);
    color:rgba(184,149,85,.45);
    font-family:var(--font-body);
    font-size:.9rem;
}
/* PEQUEÑO EFECTO */
.tags-cloud span{
    transition:
        color .3s ease,
        transform .3s ease;
}
.tags-cloud span:hover{
    color:var(--doce-primary);
    transform:translateY(-2px);
}
/* ==========================================================
   FINAL ACTIONS — MISMO ESTILO QUE HERO
========================================================== */
.final-actions{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin-top:3.5rem;
}

/* AMAZON */

.final-actions .btn-amazon{
    position:relative;
    overflow:hidden;
    width:494px;
    height:76px;
    padding:0 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
    border-radius:38px;
    text-decoration:none;
    color:#fff;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.025)
        );
    border:1px solid rgba(184,149,85,.30);
    backdrop-filter:blur(14px);
    box-shadow:
        0 18px 45px rgba(0,0,0,.35);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        background .35s ease;
}

.final-actions .btn-amazon:hover{
    transform:translateY(-4px);

    border-color:rgba(184,149,85,.75);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.14),
            rgba(184,149,85,.08)
        );
    box-shadow:
        0 20px 48px rgba(0,0,0,.45),
        0 0 35px rgba(184,149,85,.20);
}
.final-actions .btn-amazon img{
    width:200px;
    height:auto;
    transition:
        transform .35s ease,
        filter .35s ease;
}

.final-actions .btn-amazon span{
    position:relative;
    display:flex;
    align-items:center;
    gap:14px;
    padding-left:22px;
    font-size:.84rem;
    letter-spacing:.12em;
    text-transform:uppercase;
    font-weight:600;
}

.final-actions .btn-amazon span::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:1px;
    height:24px;
    transform:translateY(-50%);
    background:rgba(184,149,85,.35);
}

.final-actions .btn-amazon span::after{
    content:"→";
    font-size:1rem;
    transition:transform .35s ease;
}
.final-actions .btn-amazon:hover img{
    transform:scale(1.06);
    filter:drop-shadow(
        0 0 10px rgba(255,200,90,.45)
    );
}
.final-actions .btn-amazon:hover span::after{
    transform:translateX(4px);
}

/* COMPARTIR */

.final-actions .btn-share{
    height:76px;
    min-width:280px;
    padding:0 28px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    border-radius:38px;
    background:rgba(255,255,255,.025);
    border:1px solid rgba(255,255,255,.10);
    color:rgba(255,255,255,.72);
    font-size:.95rem;
    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        color .35s ease;
}

.final-actions .btn-share:hover{
    transform:translateY(-4px);
    color:var(--doce-primary);
    border-color:rgba(184,149,85,.35);
    background:rgba(255,255,255,.045);
}

.final-actions .btn-share svg{
    width:19px;
    height:19px;
}

/* ==========================================================
   MÓVIL
   ========================================================== */

@media(max-width:768px){
    .tags-cloud{
        margin-top:35px;
        max-width:100%;
    }
    .tags-cloud span{
        font-size:.95rem;
        padding:7px 12px;
    }

    /*
       En móvil quitamos los separadores verticales
       cuando pueden hacer que las líneas queden
       visualmente demasiado cargadas.
    */
    .tags-cloud span:not(:last-child)::after{
        color:rgba(184,149,85,.35);
    }
   @media (max-width:768px){
    .final-actions{
        flex-direction:column;
        gap:14px;
        width:100%;
    }
    .final-actions .btn-amazon{
        width:100%;
        max-width:420px;
        min-width:0;
        height:68px;
        padding:0 20px;
        gap:12px;
    }
    .final-actions .btn-amazon img{
        width:150px;
        flex-shrink:1;
    }
    .final-actions .btn-amazon span{
        padding-left:16px;
        gap:8px;
        font-size:.72rem;
        letter-spacing:.09em;
        white-space:nowrap;
        flex-shrink:0;
    }
    .final-actions .btn-amazon span::before{
        height:22px;
    }
    .final-actions .btn-share{
        width:100%;
        max-width:420px;
        min-width:0;
        height:68px;
    }
}
 }  
/* ==========================================================
   ANIMACIONES GENERALES
========================================================== */
.first-page img{
    display:block;
    max-width:100%;
}
.first-page a{
    transition:.3s ease;
}
.first-page a:hover{
    text-decoration:none;
}
/* ==========================================================
   FONDO GLOBAL
========================================================== */
.book-page::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:-1;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(184,149,85,.03),
            transparent 28%
        ),
        radial-gradient(
            circle at 82% 18%,
            rgba(184,149,85,.025),
            transparent 24%
        ),
        radial-gradient(
            circle at 70% 78%,
            rgba(184,149,85,.03),
            transparent 26%
        );
}
/* ==========================================================
   RESPONSIVE GENERAL compra
========================================================== */
@media (max-width:768px){
    .preview-box{
        padding:2.2rem;
    }
}

@media (max-width:480px){
    .cta-compra{
        padding:90px 0;
    }
    .cta-compra h2{
        font-size:2.2rem;
    }
}
/* ==========================================================
   RESPONSIVE GENERAL
========================================================== */
@media (max-width:768px){
    .preview-box{
        padding:2.2rem;
    }
}
@media (max-width:480px){
    .cta-final{
        padding:90px 0;
    }
    .cta-final h2{
        font-size:2.2rem;
    }
}
/* ==========================================================
   TE PUEDE INTERESAR
   ========================================================== */

.related-books {
    position: relative;
    overflow: hidden;
}


/* ==========================================================
   CABECERA
   ========================================================== */

.related-books .section-intro {
    max-width: 620px;
    margin: 1.2rem auto 0;
    color: var(--doce-soft);
    line-height: 1.8;
    text-align: center;
}


/* ==========================================================
   GRID DE LIBROS
   ========================================================== */

.related-books .related-books-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px;
    width: 100%;
    max-width: 900px;
    margin: 5rem auto 0;
}


/* ==========================================================
   LIBRO
   ========================================================== */

.related-books .related-book {
    position: relative;
    min-width: 0;
    text-align: center;
}


/* ==========================================================
   CONTENEDOR DEL MOCKUP
   ========================================================== */

.related-books .related-book-image {
    position: relative;
    display: block;
    width: 160px;
    max-width: 160px;
    margin: 0 auto;
    text-decoration: none;
    perspective: 1000px;
}


/* ==========================================================
   MOCKUP
   ========================================================== */

.related-books .related-book-image img {
    position: relative;
    z-index: 2;

    display: block;
    width: 160px;
    max-width: 160px;
    height: auto;
    max-height: 380px;

    margin: 0 auto;

    object-fit: contain;

    filter:
        drop-shadow(0 24px 35px rgba(0, 0, 0, .45));

    transform:
        translateY(0)
        rotateY(0deg);

    transition:
        transform .45s ease,
        filter .45s ease;
}


/* ==========================================================
   SOMBRA BAJO EL MOCKUP
   ========================================================== */

.related-books .related-book-image::after {
    content: "";

    position: absolute;

    left: 12%;
    right: 12%;
    bottom: -18px;

    height: 35px;

    background: rgba(0, 0, 0, .55);

    filter: blur(18px);

    opacity: .65;

    transition:
        opacity .4s ease,
        transform .4s ease;
}


/* ==========================================================
   HOVER
   ========================================================== */

.related-books .related-book:hover .related-book-image img {
    transform:
        translateY(-10px)
        rotateY(-2deg);

    filter:
        drop-shadow(0 32px 45px rgba(0, 0, 0, .55));
}

.related-books .related-book:hover .related-book-image::after {
    opacity: .85;
    transform: scaleX(.9);
}


/* ==========================================================
   INFORMACIÓN DEL LIBRO
   ========================================================== */

.related-books .related-book-info {
    max-width: 430px;
    margin: 3rem auto 0;
}


/* ==========================================================
   ETIQUETA
   ========================================================== */

.related-books .related-book-label {
    display: block;

    margin-bottom: .8rem;

    color: var(--doce-primary);

    font-size: .72rem;
    font-weight: 600;

    letter-spacing: .18em;

    text-transform: uppercase;
}


/* ==========================================================
   TÍTULO
   ========================================================== */

.related-books .related-book-info h3 {
    margin: 0;

    color: var(--doce-text);

    font-family: var(--font-title);

    font-size: clamp(1.8rem, 2.5vw, 2.5rem);

    font-weight: 500;

    line-height: 1.15;
}


/* ==========================================================
   DESCRIPCIÓN
   ========================================================== */

.related-books .related-book-info p {
    max-width: 390px;

    margin: 1.2rem auto 0;

    color: var(--doce-soft);

    font-size: .95rem;

    line-height: 1.8;
}


/* ==========================================================
   ENLACE
   ========================================================== */

.related-books .related-book-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 1.5rem;

    color: var(--doce-primary);

    font-size: .78rem;

    font-weight: 600;

    letter-spacing: .12em;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        color .3s ease,
        gap .3s ease;
}


.related-books .related-book-link span {
    font-size: 1rem;

    transition:
        transform .3s ease;
}


.related-books .related-book-link:hover {
    color: var(--doce-text);
    gap: 14px;
}


.related-books .related-book-link:hover span {
    transform: translateX(3px);
}


/* ==========================================================
   MÓVIL
   ========================================================== */

@media (max-width: 768px) {

    .related-books .related-books-grid {
        grid-template-columns: 1fr;
        gap: 70px;
        margin-top: 3.5rem;
    }

    .related-books .related-book-image {
        width: 140px;
        max-width: 140px;
    }

    .related-books .related-book-image img {
        width: 140px;
        max-width: 140px;
        max-height: 300px;
    }

    .related-books .related-book-info {
        margin-top: 2.5rem;
    }

    .related-books .related-book-info h3 {
        font-size: 2rem;
    }

    .related-books .related-book-info p {
        padding: 0 10px;
    }
}


/* ==========================================================
   MÓVIL PEQUEÑO
   ========================================================== */

@media (max-width: 480px) {

    .related-books .related-books-grid {
        gap: 60px;
    }

    .related-books .related-book-image {
        width: 120px;
        max-width: 120px;
    }

    .related-books .related-book-image img {
        width: 120px;
        max-width: 120px;
        max-height: 270px;
    }

    .related-books .related-book-info h3 {
        font-size: 1.8rem;
    }
}
/* ==========================================================
   TE PUEDE INTERESAR — CONTROL DEFINITIVO DE MOCKUPS
   ========================================================== */

section.related-books .related-books-grid article.related-book > a.related-book-image {
    display: block !important;
    width: 160px !important;
    max-width: 160px !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

section.related-books .related-books-grid article.related-book > a.related-book-image img {
    display: block !important;
    width: 160px !important;
    max-width: 160px !important;
    height: auto !important;
    max-height: 380px !important;
    margin: 0 auto !important;
    object-fit: contain !important;
}


/* ==========================================================
   DOCE NOMBRES — AJUSTES ESPECÍFICOS
   ========================================================== */

.doce-chapter-link {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.doce-chapter-link .btn-amazon {
    min-width: 300px;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.doce-chapter-link .btn-amazon:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {

    .doce-chapter-link .btn-amazon {
        width: 100%;
        max-width: 340px;
    }

}
