/*======================================================
ATLAS VISUAL DE LA BIBLIA
Landing Premium 5.0

Author:
Ezequiel Ferreira Santos

Style Base

======================================================*/


/*======================================================
GOOGLE FONTS
======================================================*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*======================================================
ROOT
======================================================*/

:root{
	
	 /*======================================
    TYPOGRAPHY
    ======================================*/

    --font-title:'Cinzel', serif;
    --font-body:'Poppins', sans-serif;

    /*======================================
    COLORS
    ======================================*/

    --shadow-small:

 --primary:#071D2B;
    --secondary:#103247;

    --gold:#D6AE52;
    --gold-dark:#B68626;

    --white:#FFFFFF;

    --ivory:#FCFBF7;
    --sand:#F2EEE6;

    --light-gray:#E8E8E8;
    --gray:#777777;
    --dark-gray:#444444;

    --text:#555555;


    /*======================================
    GRADIENTS
    ======================================*/

    --gradient-gold:
    linear-gradient(
        135deg,
        #D6AE52,
        #B68626
    );

    --gradient-dark:
    linear-gradient(
        180deg,
        #071D2B,
        #103247
    );

    --gradient-light:
    linear-gradient(
        180deg,
        #FCFBF7,
        #F2EEE6
    );

    --gradient-overlay:
    linear-gradient(
        rgba(7,29,43,.78),
        rgba(7,29,43,.76)
    );


    /*======================================
    TYPOGRAPHY
    ======================================*/

    --title:'Cinzel',serif;

    --text:'Poppins',sans-serif;


    /*======================================
    SPACING
    ======================================*/

    --section-padding:120px;

    --container:1280px;

    --radius:18px;


    /*======================================
    SHADOWS
    ======================================*/

    --shadow-small:

        0 10px 25px rgba(0,0,0,.08);

    --shadow-medium:

        0 25px 60px rgba(0,0,0,.12);

    --shadow-big:

        0 45px 100px rgba(0,0,0,.18);


    /*======================================
    TRANSITIONS
    ======================================*/

    --transition:.35s ease;

}


/*======================================================
RESET
======================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}


html{

    scroll-behavior:smooth;

}


body{

    font-family:var(--text);

    background:var(--ivory);

    color:var(--secondary);

    overflow-x:hidden;

    line-height:1.7;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

}


/*======================================================
SCROLLBAR
======================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#EFE9DC;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#B48428;

}


/*======================================================
IMAGES
======================================================*/

img{

    max-width:100%;

    display:block;

    object-fit:contain;

}


/*======================================================
LINKS
======================================================*/

a{

    text-decoration:none;

    color:inherit;

}


/*======================================================
LIST
======================================================*/

ul{

    list-style:none;

}


/*======================================================
CONTAINER
======================================================*/

.container{

    width:min(94%,var(--container));

    margin:auto;

}


/*======================================================
SECTION
======================================================*/

.section{

    padding:

    var(--section-padding)

    0;

}


/*======================================================
TITLE
======================================================*/

.section-title{

    max-width:820px;

    margin:auto;

    text-align:center;

    margin-bottom:80px;

}

.section-title span{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:#FFF7E5;

    color:var(--gold);

    font-size:.82rem;

    letter-spacing:3px;

    text-transform:uppercase;

    font-weight:700;

    margin-bottom:25px;

}

.section-title h2{

    font-family:var(--title);

    font-size:3rem;

    color:var(--secondary);

    margin-bottom:25px;

    line-height:1.2;

}

.section-title p{

    font-size:1.08rem;

    color:#555;

}


/*======================================================
BUTTONS
======================================================*/

.primary-button,

.hero-button,

.offer-button{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

    margin-top:35px;

    padding:22px;

    border-radius:999px;

    background:linear-gradient(135deg,#E4BE63,#B68626);

    color:#fff;

    font-size:1.1rem;

    font-weight:700;

    letter-spacing:.5px;

    text-transform:uppercase;

    text-decoration:none;

    box-shadow:
        0 18px 45px rgba(182,134,38,.45);

    transition:.35s;

}

.offer-button:hover{

    transform:translateY(-4px);

    box-shadow:
        0 28px 60px rgba(182,134,38,.55);

}

.header-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:

    18px

    38px;

    border-radius:999px;

    background:var(--gradient-gold);

    color:white;

    font-weight:700;

    letter-spacing:.5px;

    transition:var(--transition);

    box-shadow:

    0 15px 35px

    rgba(184,134,38,.35);

}

.primary-button:hover,

.hero-button:hover,

.offer-button:hover,

.header-button:hover{

    transform:

    translateY(-5px);

    box-shadow:

    0 25px 60px

    rgba(184,134,38,.45);

}


/*======================================================
BACKGROUND
======================================================*/

/*======================================================
PREMIUM BACKGROUND
======================================================*/

body::before{

    content:"";

    position:fixed;

    inset:0;

    pointer-events:none;

    z-index:-2;

    opacity:.45;

    background:

        radial-gradient(circle at top left,
        rgba(255,255,255,.45),
        transparent 38%),

        radial-gradient(circle at bottom right,
        rgba(200,155,60,.05),
        transparent 45%),

        linear-gradient(
        180deg,
        #FCFBF7 0%,
        #F7F4EE 45%,
        #F2EEE6 100%);

}


/*======================================================
LIGHT EFFECT
======================================================*/

/*======================================================
GOLDEN LIGHT
======================================================*/

body::after{

    content:"";

    position:fixed;

    width:1100px;

    height:1100px;

    left:-250px;

    top:-250px;

    pointer-events:none;

    z-index:-1;

    background:

    radial-gradient(

        rgba(255,214,115,.12),

        transparent 68%

    );

    animation:

    goldenLight

    18s ease-in-out infinite;

}


@keyframes goldenLight{

    0%{

        transform:

        translateX(0)

        translateY(0);

    }

    50%{

        transform:

        translateX(90px)

        translateY(40px);

    }

    100%{

        transform:

        translateX(0)

        translateY(0);

    }

}


/*======================================================
REVEAL
======================================================*/

.reveal{

    opacity:0;

    transform:

    translateY(60px);

    transition:

    1s ease;

}

.reveal.active{

    opacity:1;

    transform:

    translateY(0);

}


/*======================================================
FLOATING
======================================================*/

.floating{

    animation:

    floating

    5s ease-in-out infinite;

}

.floating-delay{

    animation:

    floating

    6s ease-in-out infinite;

}

.floating-delay2{

    animation:

    floating

    7s ease-in-out infinite;

}

.floating-slow{

    animation:

    floating

    8s ease-in-out infinite;

}

@keyframes floating{

    0%{

        transform:

        translateY(0);

    }

    50%{

        transform:

        translateY(-18px);

    }

    100%{

        transform:

        translateY(0);

    }

}


/*======================================================
FADE
======================================================*/

.fade{

    animation:

    fade 1.2s ease;

}

@keyframes fade{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}


/*======================================================
HOVER CARD
======================================================*/

.benefit-card,

.content-card,

.bonus-card{

    transition:

    .45s;

}

.benefit-card:hover,

.content-card:hover,

.bonus-card:hover{

    transform:

    translateY(-12px);

}


/*======================================================
LOADING SCREEN
======================================================*/

#loading-screen{

    position:fixed;

    inset:0;

    background:linear-gradient(
        180deg,
        #071D2B,
        #103247
    );

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    z-index:99999;

    transition:.8s;

}

.loader-logo img{

    width:180px;

    margin-bottom:40px;

}

.loader-circle{

    width:70px;

    height:70px;

    border-radius:50%;

    border:4px solid rgba(255,255,255,.15);

    border-top:4px solid var(--gold);

    animation:loaderRotate 1.1s linear infinite;

}

@keyframes loaderRotate{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}


/*======================================================
HEADER
======================================================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:5000;

    backdrop-filter:blur(18px);

    background:rgba(7,29,43,.82);

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.4s;

}

header.scrolled{

    background:#071D2B;

    box-shadow:0 15px 40px rgba(0,0,0,.20);

}

header .container{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/*=====================================
LOGO
======================================*/

.logo img{

    width:140px;

    height:auto;

    display:block;

    transition:.35s;

}


/*======================================================
MENU
======================================================*/

nav ul{

    display:flex;

    align-items:center;

    gap:40px;

}

nav a{

    color:white;

    font-size:.95rem;

    font-weight:500;

    transition:.35s;

    position:relative;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.35s;

}

nav a:hover{

    color:#FFF3CC;

}

nav a:hover::after{

    width:100%;

}


/*======================================================
MOBILE BUTTON
======================================================*/

#mobile-button{

    display:none;

    background:none;

    border:none;

    cursor:pointer;

}

#mobile-button span{

    display:block;

    width:30px;

    height:3px;

    background:white;

    margin:6px 0;

    border-radius:10px;

}


/*======================================================
MOBILE MENU
======================================================*/

#mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:340px;

    max-width:90%;

    height:100vh;

    background:#071D2B;

    padding:120px 40px;

    transition:.45s;

    z-index:6000;

    box-shadow:-10px 0 50px rgba(0,0,0,.35);

}

#mobile-menu.active{

    right:0;

}

#mobile-menu ul{

    display:flex;

    flex-direction:column;

    gap:30px;

}

#mobile-menu a{

    color:white;

    font-size:1.1rem;

}

.mobile-buy{

    margin-top:20px;

    text-align:center;

    background:linear-gradient(
        135deg,
        #D6AE52,
        #B68626
    );

    padding:18px;

    border-radius:999px;

}


/*======================================================
MENU OVERLAY
======================================================*/

#menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:5500;

}

#menu-overlay.active{

    opacity:1;

    visibility:visible;

}


/*======================================================
HERO
======================================================*/

.hero{

  background:

var(--gradient-overlay),

url("../img/hero/hero.webp");

background-size:cover;

background-position:center;

background-attachment:fixed;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(

        circle at left,

        rgba(255,215,120,.18),

        transparent 60%

    );

}

/*=========================================
HERO TITLES
=========================================*/

.hero-title-mobile{

    display:none;

}

/*======================================================
HERO GRID
======================================================*/

.hero-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:

    1fr

    1fr;

    gap:80px;

    align-items:center;

}


/*======================================================
LEFT
======================================================*/

.hero-content{

    color:white;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    padding:12px 26px;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(12px);

    border-radius:999px;

    border:1px solid rgba(255,255,255,.15);

    letter-spacing:2px;

    font-size:.8rem;

    margin-bottom:35px;

}



    .hero-content h1{

    font-family:var(--title);

    font-size:5.2rem;

    line-height:1.04;

    letter-spacing:1px;

    margin-bottom:28px;

    color:#FFFFFF;

    text-shadow:

    0 8px 30px

    rgba(0,0,0,.35);

}

.hero-content h2{

    font-size:1.55rem;

    font-weight:400;

    color:#E8E8E8;

    margin-bottom:30px;

}

.hero-content p{

    font-size:1.1rem;

    color:#D7D7D7;

    max-width:620px;

    margin-bottom:40px;

}


/*======================================================
HERO INFO
======================================================*/

.hero-info{

    display:flex;

    flex-wrap:wrap;

    gap:30px;

    margin-top:45px;

    color:white;

    font-size:.95rem;

}

.rating{

    display:flex;

    gap:10px;

    align-items:center;

}


/*======================================================
RIGHT
======================================================*/

.hero-images{

    position:relative;

    min-height:720px;

}


/*======================================================
BACKGROUND MAP
======================================================*/

.hero-bg{

    position:absolute;

    inset:0;

    width:100%;

    opacity:.18;

}


/*======================================================
GLOW
======================================================*/

.hero-glow{

    position:absolute;

    width:620px;

    height:620px;

    right:-100px;

    top:30px;

    border-radius:50%;

    background:

    radial-gradient(

        rgba(255,210,120,.38),

        transparent 70%

    );

}


/*======================================================
DEVICES
======================================================*/

.desktop-device{

    position:absolute;

    width:560px;

    right:20px;

    top:40px;

    z-index:5;

}

.notebook-device{

    position:absolute;

    width:470px;

    left:10px;

    bottom:20px;

    z-index:4;

}

.tablet-device{

    position:absolute;

    width:240px;

    right:-10px;

    bottom:70px;

    z-index:6;

}

.phone-device{

    position:absolute;

    width:120px;

    left:120px;

    top:180px;

    z-index:7;

}


/*======================================================
PREMIUM BADGE
======================================================*/

.premium-badge{

    position:absolute;

    top:30px;

    left:0;

    padding:16px 26px;

    border-radius:999px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.15);

    color:white;

    font-size:.82rem;

    letter-spacing:2px;

}


/*======================================================
HERO STATS
======================================================*/

.hero-stats{

    margin-top:-90px;

    position:relative;

    z-index:20;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stats-grid article{

    background:white;

    border-radius:24px;

    padding:40px;

    text-align:center;

    box-shadow:var(--shadow-medium);

}

.stats-grid h3{

    font-family:var(--title);

    font-size:2.7rem;

    color:var(--gold);

}

.stats-grid p{

    margin-top:12px;

    color:#666;

}


/*======================================================
BENEFITS
======================================================*/

.benefits{

    position:relative;

    background:var(--ivory);

}

.benefits-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.benefit-card{

    position:relative;

    background:rgba(255,255,255,.78);

    backdrop-filter:blur(16px);

    border-radius:26px;

    padding:45px;

    text-align:center;

    overflow:hidden;

    border:1px solid rgba(200,155,60,.10);

    box-shadow:var(--shadow-small);
	
	transition:
	
    transform .35s ease,
    box-shadow .35s ease;

}

.benefit-feature{

    grid-column:span 3;

    display:flex;

    align-items:center;

    gap:35px;

    text-align:left;

}

.benefit-feature:hover{

    transform:translateY(-10px);

    box-shadow:
        0 35px 80px rgba(0,0,0,.18);

}

.benefit-feature h3{

    font-size:2rem;

    line-height:1.15;

    color:#0D2E45;

    margin-bottom:18px;

}

.benefit-feature p{

    font-size:1.08rem;

    line-height:1.9;

    color:#556270;

    max-width:680px;

}

.benefit-feature img{

    width:220px;

    height:auto;

    border-radius:18px;

    box-shadow:0 20px 45px rgba(0,0,0,.20);

    flex-shrink:0;

}



.benefit-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        180deg,

        rgba(255,255,255,.25),

        transparent

    );

    pointer-events:none;

}


.benefit-card img{

    width:72px;

    margin:auto;

    margin-bottom:28px;

}

.benefit-card h3{

    font-family:var(--title);

    color:var(--secondary);

    margin-bottom:18px;

    font-size:1.45rem;

}

.benefit-card p{

    color:#666;

}

.benefit-card:hover{

    transform:translateY(-8px);

    box-shadow:

        0 25px 60px rgba(0,0,0,.12);

}


/*======================================================
DIVIDER MAP
======================================================*/

.divider-map{

    height:220px;

    position:relative;

    overflow:hidden;

    background:

    url("../img/hero/hero.webp")

    center center/

    cover

    no-repeat;

}

.overlay-map{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        rgba(7,29,43,.75),

        rgba(16,50,71,.75)

    );

}


/*======================================================
EBOOK
======================================================*/

.ebook{

    background:#FBFAF6;

}

.ebook-grid{

    display:grid;

    grid-template-columns:

    1fr

    1fr;

    gap:90px;

    align-items:center;

}

.ebook-left{

    position:relative;

    display:flex;

    justify-content:center;

}

.ebook-left img{

    width:520px;

    filter:

    drop-shadow(

        0 35px 60px

        rgba(0,0,0,.22)

    );

    transition:.5s;

}

.ebook-left img:hover{

    transform:

    scale(1.03)

    rotate(-1deg);

}

.ebook-right span{

    display:inline-block;

    color:var(--gold);

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:18px;

}

.ebook-right h2{

    font-family:var(--title);

    font-size:3rem;

    margin-bottom:30px;

    color:var(--secondary);

}

.ebook-right p{

    margin-bottom:25px;

    color:#555;

    font-size:1.05rem;

}


/*======================================================
FEATURES
======================================================*/

.ebook-features{

    margin:45px 0;

}

.ebook-features li{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

    font-size:1.05rem;

}

.ebook-features span{

    width:34px;

    height:34px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:var(--gold);

    color:white;

}


/*======================================================
CONTENT
======================================================*/

.content{

    background:linear-gradient(

        180deg,

        #FCFBF8,

        #F7F4EE

    );

}

.content-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:28px;

}

.content-card{

    background:white;

    border-radius:24px;

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow-small);

}

.content-card img{

    width:65px;

    margin:auto;

    margin-bottom:20px;

}

.content-card h3{

    font-family:var(--title);

    font-size:1.2rem;

    margin-bottom:15px;

    color:var(--secondary);

}

.content-card p{

    font-size:.95rem;

    color:#666;

}

.content-card:hover{

    transform:

    translateY(-12px);

    box-shadow:var(--shadow-medium);

}


/*======================================================
GALLERY
======================================================*/

.gallery{

    background:#F3EFE5;

}



/*=========================
BOOK VIEWER
=========================*/

.book-viewer{

    position:relative;

    width:min(300px,78vw);

    margin:40px auto 20px;
}

.viewer-stage{

    position:relative;

    background:#fff;

    padding:12px;

    border-radius:22px;

    box-shadow:
        0 30px 70px rgba(0,0,0,.16),
        0 10px 25px rgba(0,0,0,.08);

}

.viewer-stage img{

    width:100%;

    display:block;

    border-radius:16px;

    transition:transform .45s,opacity .45s;

}

.viewer-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#C89B3C;

    color:#fff;

    font-size:20px;

    font-weight:bold;

    cursor:pointer;

    box-shadow:
        0 6px 16px rgba(0,0,0,.18);

    transition:.25s;

    z-index:20;

}

.viewer-btn:hover{

    transform:translateY(-50%) scale(1.08);

}


.viewer-btn.prev{

    left:-10px;

}

.viewer-btn.next{

    right:-10px;

}


.viewer-dots{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin-top:18px;

    margin-bottom:30px;

    min-height:14px;

}

.viewer-dots span{

    width:8px;
	
    height:8px;

    background:#d5d5d5;

    border-radius:50%;

}

.viewer-dots span.active{

    background:#C89B3C;

    transform:scale(1.6);

}


.viewer-stage img{

    width:100%;

    display:block;

    border-radius:16px;

    transition:
        transform .45s ease,
        opacity .45s ease;
		
	overflow:hidden;

	box-shadow:

    0 10px 25px rgba(0,0,0,.12);

}



/*======================================================
MUSEUM SHADOW
======================================================*/

.gallery figure{

    border:8px solid #FFF;

}


/*======================================================
SECTION TRANSITION
======================================================*/

.gallery::after{

    content:"";

    display:block;

    width:220px;

    height:5px;

    background:linear-gradient(

        90deg,

        transparent,

        var(--gold),

        transparent

    );

    margin:90px auto 0;

    border-radius:20px;

}


/*======================================================
BIBLICAL MAP
======================================================*/

.biblical-map{

    background:#F8F6F1;

    position:relative;

}

.map-layout{

    display:grid;

    grid-template-columns:1.4fr .8fr;

    gap:60px;

    align-items:center;

}

.map-area{

    position:relative;

}

.map-area img{

    width:100%;

    filter:

    drop-shadow(

        0 30px 60px rgba(0,0,0,.12)

    );

}

.map-pin{

    position:absolute;

    width:34px;

    height:34px;

    border:none;

    cursor:pointer;

    background:url("../img/icons/map-pin.svg") center/contain no-repeat;

    box-shadow:none;

    transition:.35s ease;

}

.map-pin:hover{

    transform:scale(1.15);

}

.map-pin span{

    position:absolute;

    left:50%;

    top:50%;

    width:18px;

    height:18px;

    border-radius:50%;

    transform:translate(-50%,-50%);

    background:rgba(214,174,82,.45);

    animation:pulsePin 2s infinite;

}

@keyframes pulsePin{

    0%{

        transform:translate(-50%,-50%) scale(1);

        opacity:.9;

    }

    100%{

        transform:translate(-50%,-50%) scale(2.8);

        opacity:0;

    }

}


/*========================================*/

.jerusalen{

    top:39%;

    left:53%;

}

.belen{

    top:44%;

    left:50%;

}

.nazaret{

    top:28%;

    left:48%;

}

.jerico{

    top:41%;

    left:57%;

}

.galilea{

    top:22%;

    left:55%;

}

.jordan{

    top:31%;

    left:57%;

}

.sinai{

    top:72%;

    left:28%;

}

.efeso{

    top:24%;

    left:17%;

}

.roma{

    top:12%;

    left:3%;

}


/*======================================================
LOCATION PANEL
======================================================*/

.location-panel{

    position:relative;

    min-height:420px;

}

.location-card{

    position:absolute;

    inset:0;

    opacity:0;

    visibility:hidden;

    background:white;

    border-radius:24px;

    padding:45px;

    box-shadow:var(--shadow-medium);

    transition:.45s;

}

.location-card.active{

    opacity:1;

    visibility:visible;

}

.location-card h3{

    font-family:var(--title);

    font-size:2rem;

    margin-bottom:20px;

    color:var(--secondary);

}

.location-card p{

    color:#666;

    line-height:1.9;

}


/*======================================================
INSIDE
======================================================*/

.inside{

    background:white;

}

.inside-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.inside-left{

    text-align:center;

}

.inside-left img{

    width:95%;

    filter:

    drop-shadow(

        0 40px 70px rgba(0,0,0,.18)

    );

}

.inside-right{

    display:flex;

    flex-direction:column;

    gap:35px;

}

.inside-item{

    display:flex;

    gap:25px;

    align-items:flex-start;

    background:#FFF;

    padding:30px;

    border-radius:22px;

    box-shadow:var(--shadow-small);

    transition:.35s;

}

.inside-item:hover{

    transform:

    translateX(10px);

}

.inside-icon{

    width:70px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:2rem;

    border-radius:18px;

    background:#FFF6E2;

}

.inside-item h3{

    font-family:var(--title);

    margin-bottom:12px;

    color:var(--secondary);

}

.inside-item p{

    color:#666;

}


/*======================================================
TIMELINE
======================================================*/

.timeline{

    background:#F4F1EA;

    overflow:hidden;

}

.timeline-wrapper{

    display:flex;

    gap:35px;

    overflow-x:auto;

    padding:20px 5px 40px;

    scroll-snap-type:x mandatory;

}

.timeline-card{

    min-width:260px;

    background:white;

    border-radius:24px;

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow-medium);

    scroll-snap-align:start;

    transition:.4s;

}

.timeline-card:hover{

    transform:

    translateY(-15px);

}

.timeline-icon{

    width:85px;

    height:85px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#FFF3D2;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:2.3rem;

}

.timeline-card h3{

    font-family:var(--title);

    margin-bottom:10px;

}

.timeline-card small{

    color:var(--gold);

    display:block;

    margin-bottom:20px;

    letter-spacing:2px;

}

.timeline-card p{

    color:#666;

}


/*======================================================
AUTHORITY BAR
======================================================*/

.authority-bar{

    background:var(--secondary);

    padding:35px 0;

}

.authority-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    text-align:center;

    color:white;

}

.authority-grid div{

    display:flex;

    flex-direction:column;

    gap:10px;

    justify-content:center;

    align-items:center;

    font-size:.95rem;

}

.authority-grid span{

    color:#FFD66A;

}

/*======================================================
LIBRARY
======================================================*/

.library{

    background:#FCFBF8;

}

.library-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.library-item{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    background:#FFFFFF;

    padding:18px;

    cursor:pointer;

    box-shadow:var(--shadow-small);

    transition:.45s;

}

.library-item:hover{

    transform:
        translateY(-12px);

    box-shadow:var(--shadow-big);

}

.library-item img{

    width:100%;

    border-radius:14px;

    transition:.5s;

}

.library-item:hover img{

    transform:
        scale(1.06);

}


/*======================================================
LIGHTBOX
======================================================*/

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:99999;

}

.lightbox.active{

    opacity:1;

    visibility:visible;

}

.lightbox-image{

    max-width:82%;

    max-height:88vh;

    border-radius:18px;

    box-shadow:0 30px 80px rgba(0,0,0,.45);

}

.close-lightbox,

.prev-page,

.next-page{

    position:absolute;

    border:none;

    cursor:pointer;

    color:#FFF;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    transition:.35s;

}

.close-lightbox{

    top:35px;

    right:40px;

    width:55px;

    height:55px;

    border-radius:50%;

    font-size:2rem;

}

.prev-page,

.next-page{

    top:50%;

    transform:translateY(-50%);

    width:70px;

    height:70px;

    border-radius:50%;

    font-size:2rem;

}

.prev-page{

    left:40px;

}

.next-page{

    right:40px;

}

.close-lightbox:hover,

.prev-page:hover,

.next-page:hover{

    background:var(--gold);

}


/*======================================================
BONUS
======================================================*/

.bonus{

    background:#F8F5EE;

}

.bonus-grid{

    display:grid;

    gap:40px;

}

.bonus-card{

    display:grid;

    grid-template-columns:320px 1fr;

    gap:40px;

    align-items:center;

    background:#FFF;

    padding:30px;

    border-radius:28px;

    box-shadow:var(--shadow-medium);

}

.bonus-card img{

    width:100%;

}

.bonus-info h3{

    font-family:var(--title);

    font-size:2rem;

    margin-bottom:20px;

    color:var(--secondary);

}

.bonus-info p{

    color:#666;

    line-height:1.8;

}


/*======================================================
OFFER
======================================================*/

.offer{

    

    background:var(--gradient-dark);

}

.offer-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.offer-image img{

    width:100%;

    filter:

    drop-shadow(
        0 35px 80px rgba(0,0,0,.35)
    );

}

.offer-content span{

    color:#FFD66A;

    letter-spacing:3px;

    font-weight:700;

}

.offer-content h2{

    font-family:var(--title);

    font-size:3.2rem;

    line-height:1.15;

    margin:18px 0 28px;

    color:#fff;

    text-shadow:0 4px 18px rgba(0,0,0,.25);

}

.offer-content p{

    color:#D6D6D6;

    font-size:1.08rem;

    line-height:1.8;

}


/*======================================================
PRICE BOX
======================================================*/

.price-box{

    margin:40px 0;

    padding:35px;

    border-radius:24px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(214,174,82,.30);

    box-shadow:

        0 25px 70px rgba(0,0,0,.25);

}

.offer-badge{

    display:inline-flex;

    align-items:center;

    padding:10px 18px;

    margin-bottom:22px;

    border-radius:999px;

    background:#C89B3C;

    color:#fff;

    font-size:.82rem;

    font-weight:700;

    letter-spacing:1px;

}



.new-price{

    flex:1;

    border-radius:22px;

    padding:30px;

    text-align:center;

}

.old-price{

    color:#B9B9B9;

    font-size:1rem;

    margin-bottom:18px;

}

.old-price strong{

    display:block;

    margin-top:6px;

    font-size:2rem;

    color:#9A9A9A;

    text-decoration:line-through;

}

.new-price{

    margin-bottom:30px;

    color:#fff;

    font-size:1.05rem;

}

.new-price strong{

    display:block;

    margin-top:8px;

    font-size:4rem;

    line-height:1;

    color:#FFD66A;

    font-family:var(--title);

}



.offer-list{

    list-style:none;

    padding:0;

    margin:0;

}

.offer-list li{

    display:flex;

    align-items:center;

    gap:10px;

    margin:14px 0;

    color:#F2F2F2;

    font-size:1.02rem;

}

/*======================================================
COUNTDOWN
======================================================*/

.countdown{

    display:flex;

    justify-content:space-between;

    gap:15px;

    margin:35px 0;

}

.countdown div{

    flex:1;

    padding:18px 10px;

    text-align:center;

    border-radius:18px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

}

.countdown span{

    display:block;

    font-size:2rem;

    font-weight:700;

    color:#FFD66A;

}

.countdown small{

    display:block;

    margin-top:6px;

    color:#D8D8D8;

    font-size:.82rem;

    letter-spacing:1px;

}

/*=====================================
SECURE TEXT
======================================*/

.secure-text{

    margin-top:18px;

    text-align:center;

    color:#CFCFCF;

    font-size:.92rem;

    line-height:1.7;

}

/*======================================================
GUARANTEE
======================================================*/

.guarantee{

    background:#FCFBF7;

}

.guarantee-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:80px;

    align-items:center;

}

.guarantee-image{

    text-align:center;

}

.guarantee-image img{

    width:100%;

    max-width:360px;

    margin:auto;

}

.guarantee-content span{

    display:inline-block;

    margin-bottom:18px;

    color:var(--gold);

    letter-spacing:3px;

    font-weight:700;

}

.guarantee-content h2{

    font-family:var(--title);

    font-size:2.8rem;

    color:var(--secondary);

    margin-bottom:30px;

}

.guarantee-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}


/*======================================================
FAQ
======================================================*/

.faq{

    background:#F6F3EC;

}

.faq-container{

    max-width:920px;

    margin:auto;

}

.faq-item{

    margin-bottom:22px;

    border-radius:18px;

    overflow:hidden;

    background:#FFF;

    box-shadow:var(--shadow-small);

}

.faq-question{

    width:100%;

    border:none;

    cursor:pointer;

    background:#FFF;

    padding:28px 35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:1.05rem;

    font-weight:600;

    color:var(--secondary);

}

.faq-question span{

    font-size:1.7rem;

    color:var(--gold);

    transition:.35s;

}

.faq-item.active .faq-question span{

    transform:rotate(45deg);

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

}

.faq-answer p{

    padding:0 35px 30px;

    color:#666;

    line-height:1.8;

}


/*======================================================
FINAL CTA
======================================================*/

.final-cta{

    position:relative;

    overflow:hidden;

    padding:140px 0;

    background:

    linear-gradient(

        rgba(7,29,43,.84),

        rgba(7,29,43,.84)

    ),

    url("../img/product/cta-banner.webp")

    center center/

    cover

    no-repeat;

}

.final-cta .overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(

        circle,

        rgba(255,215,120,.12),

        transparent 70%

    );

}

.final-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

/*=====================================
FINAL CTA TEXT
======================================*/

.final-content p{

    max-width:650px;

    margin:25px auto 35px;

    color:#FFFFFF;

    font-size:1.15rem;

    font-weight:500;

    line-height:1.9;

    letter-spacing:.3px;

    text-shadow:
        0 3px 12px rgba(0,0,0,.70);

}

.final-content span{

    display:inline-block;

    color:#D6AE52;

    font-family:'Poppins',sans-serif;

    font-size:.95rem;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.final-content h2{

    color:#FFFFFF;

    font-family:'Cinzel',serif;

    font-size:3rem;

    font-weight:700;

    line-height:1.2;

    margin-bottom:25px;

    text-shadow:
        0 4px 18px rgba(0,0,0,.45);

}

.final-content h2 .highlight{

    color:#D6AE52;

}

.final-content p{

    color:#E5E5E5;

    margin-bottom:40px;

}

.final-image img{

    width:100%;

}





/*======================================================
FOOTER
======================================================*/

/*=========================
FOOTER
=========================*/

footer{

    background:#061B2B;

    border-top:1px solid rgba(255,255,255,.08);

    padding:80px 0 30px;

}

footer .container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

}

.footer-logo img{

    width:220px;

    margin-bottom:22px;

}

.footer-logo p{

    max-width:420px;

    color:#B9C3CF;

    line-height:1.8;

}

.footer-links h4,
.footer-security h4{

    margin-bottom:20px;

    color:#FFD66A;

    font-size:1rem;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-links a{

    color:#D7DCE2;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#FFD66A;

}

.footer-security p{

    margin:12px 0;

    color:#D7DCE2;

}

.footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.footer-bottom p{

    color:#AEB8C2;

    font-size:.9rem;

}

.footer-bottom-links{

    display:flex;

    gap:20px;

}

.footer-bottom-links a{

    color:#AEB8C2;

    text-decoration:none;

    font-size:.9rem;

    transition:.3s;

}

.footer-bottom-links a:hover{

    color:#FFD66A;

}


/*======================================================
STICKY BUY
======================================================*/

.sticky-buy{
	
	
    position:fixed;

    bottom:25px;

    left:50%;

    transform:translateX(-50%);

    z-index:9998;
	
	opacity:0;

	visibility:hidden;

	pointer-events:none;

	transition:
		opacity .35s ease,
		transform .35s ease;

}

.sticky-buy.active{

    opacity:1;

    visibility:visible;

    pointer-events:auto;
	
	

}

.sticky-buy a{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:18px 40px;

    border-radius:999px;

    background:

    linear-gradient(

        135deg,

        #D6AE52,

        #B68626

    );

    color:white;

    font-weight:700;

    box-shadow:

    0 18px 45px

    rgba(182,134,38,.40);

    transition:.35s;

}

.sticky-buy a:hover{

    transform:translateY(-4px);

}


/*======================================================
BACK TO TOP
======================================================*/

#backTop{

    position:fixed;

    right:30px;

    bottom:110px;

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:var(--gold);

    color:white;

    font-size:1.4rem;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    box-shadow:var(--shadow-medium);

    z-index:9997;

}

#backTop.show{

    opacity:1;

    visibility:visible;

}

#backTop:hover{

    transform:translateY(-5px);

}


/*======================================================
EXIT POPUP
======================================================*/

.exit-popup{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.78);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.45s;

    z-index:99999;

}

.exit-popup.active{

    opacity:1;

    visibility:visible;

}

.popup-box{

    width:min(92%,620px);

    background:#FFF;

    border-radius:28px;

    padding:60px;

    text-align:center;

    position:relative;

    box-shadow:0 35px 80px rgba(0,0,0,.35);

}

.popup-box span{

    color:var(--gold);

    font-weight:700;

    letter-spacing:3px;

}

.popup-box h2{

    font-family:var(--title);

    font-size:2.5rem;

    margin:25px 0;

    color:var(--secondary);

}

.popup-box p{

    color:#666;

    margin-bottom:35px;

    line-height:1.8;

}

.popup-close{

    position:absolute;

    top:18px;

    right:18px;

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:#EFEFEF;

    font-size:1.5rem;

}


/*======================================================
DIVIDER
======================================================*/

.divider-line{

    width:220px;

    height:4px;

    margin:auto;

    border-radius:50px;

    background:linear-gradient(

        90deg,

        transparent,

        var(--gold),

        transparent

    );

}


/*======================================================
SELECTION
======================================================*/

::selection{

    background:var(--gold);

    color:#FFF;

}


/*======================================================
FOCUS
======================================================*/

button:focus,

a:focus{

    outline:3px solid rgba(200,155,60,.35);

    outline-offset:4px;

}


/*======================================================
UTILITIES
======================================================*/

.text-center{

    text-align:center;

}

.mt-40{

    margin-top:40px;

}

.mt-60{

    margin-top:60px;

}

.mb-40{

    margin-bottom:40px;

}

.mb-60{

    margin-bottom:60px;

}

.shadow{

    box-shadow:var(--shadow-medium);

}

.radius{

    border-radius:var(--radius);

}

.gold{

    color:var(--gold);

}

.hidden{

    display:none;

}

/*=========================================
MOBILE BOOK
==========================================*/

.hero-book-mobile{

    display:none;

}

@media (max-width:767px){

.hero-book-mobile{

    display:flex !important;

}




}