
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:white;
    overflow-x:hidden;
    background:#071d18;
    position:relative;
}

/* FONDO */

body::before{
    content:"";
    position:fixed;
    inset:0;

    background:
    linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.75)),
    url('imgTarot/fondo2.avif');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    z-index:-5;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    left:0;

    width:100%;

    padding:22px 8%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgba(3,20,16,0.55);
    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(255,255,255,0.08);

    z-index:999;
}

.logo{
    font-family:'Cinzel', serif;
    font-size:1.9rem;
    font-weight:700;

    color:#c9fff1;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:28px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-weight:500;
    transition:0.3s;
    position:relative;
}

.nav-links a::after{
    content:"";
    position:absolute;

    width:0%;
    height:2px;

    left:0;
    bottom:-5px;

    background:#67ffd3;

    transition:0.3s;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a:hover{
    color:#67ffd3;
}

/* HERO */

.hero{
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:140px 20px 80px;

    position:relative;
}

.magic-circle{
    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    border:1px solid rgba(103,255,211,0.12);

    box-shadow:
    0 0 120px rgba(103,255,211,0.08);

    animation:rotate 35s linear infinite;
}

.hero-content{
    max-width:900px;

    background:rgba(7,35,29,0.55);

    border:1px solid rgba(255,255,255,0.08);

    padding:70px;

    border-radius:40px;

    backdrop-filter:blur(16px);

    position:relative;

    z-index:2;
}

.hero-badge{
    display:inline-block;

    padding:12px 20px;

    border-radius:999px;

    background:rgba(103,255,211,0.10);

    border:1px solid rgba(103,255,211,0.15);

    margin-bottom:25px;

    color:#baffee;
}

.hero-content h1{
    font-family:'Cinzel', serif;

    font-size:4.5rem;
    line-height:1.1;

    margin-bottom:25px;

    color:#f5fffb;
}

.hero-content p{
    color:#d8f8ee;

    font-size:1.15rem;

    line-height:1.9;

    margin-bottom:40px;
}

/* BOTONES */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    text-decoration:none;

    padding:17px 34px;

    border-radius:50px;

    font-weight:600;

    transition:0.35s ease;
}

.btn-primary{
    background:linear-gradient(135deg,#16a37f,#2dd4aa);

    color:white;

    box-shadow:
    0 12px 30px rgba(45,212,170,0.25);
}

.btn-primary:hover{
    transform:translateY(-6px);
}

.btn-secondary{
    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.1);

    color:white;
}

.btn-secondary:hover{
    transform:translateY(-6px);
}

/* SECTION */

.section{
    padding:110px 8%;
}

.section-title{
    text-align:center;

    font-family:'Cinzel', serif;

    font-size:3rem;

    margin-bottom:70px;

    color:#c8fff1;
}

/* ABOUT */

.about-card{
    max-width:1150px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:50px;

    padding:55px;

    border-radius:40px;

    background:rgba(5,30,24,0.62);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.06);
}

.about-image{
    position:relative;
}

.about-image::before{
    content:"";

    position:absolute;

    width:100%;
    height:100%;

    border-radius:30px;

    background:rgba(45,212,170,0.15);

    top:20px;
    left:20px;

    z-index:-1;
}

.about-card img{
    width:100%;

    border-radius:30px;

    object-fit:cover;
}

.about-tags{
    display:flex;
    gap:12px;
    flex-wrap:wrap;

    margin-bottom:25px;
}

.about-tags span{
    padding:10px 18px;

    border-radius:999px;

    background:rgba(103,255,211,0.10);

    border:1px solid rgba(103,255,211,0.10);

    color:#cafff2;

    font-size:0.9rem;
}

.about-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.about-text h2{
    font-family:'Cinzel', serif;

    font-size:2.7rem;

    margin-bottom:22px;

    color:#c9fff1;
}

.about-text p{
    color:#ddf8f0;

    line-height:1.9;
}

/* SERVICIOS */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:35px;
}

.service-card{
    position:relative;

    padding:45px 35px;

    border-radius:35px;

    background:rgba(5,30,24,0.70);

    border:1px solid rgba(255,255,255,0.06);

    backdrop-filter:blur(18px);

    transition:0.4s ease;
}

.service-card:hover{
    transform:translateY(-12px);

    box-shadow:
    0 25px 50px rgba(0,0,0,0.35);
}

.service-top-tag{
    display:inline-block;

    padding:10px 16px;

    border-radius:999px;

    background:#2dd4aa;

    color:#083328;

    font-size:0.8rem;
    font-weight:700;

    margin-bottom:25px;
}

.secondary-tag{
    background:#b6fff0;
}

.service-card h3{
    font-size:1.8rem;

    margin-bottom:25px;

    color:#e7fff8;
}

.price-box{
    display:inline-block;

    padding:18px 30px;

    border-radius:20px;

    background:linear-gradient(135deg,#16a37f,#2dd4aa);

    color:white;

    font-size:2rem;
    font-weight:700;

    margin-bottom:28px;

    box-shadow:
    0 12px 25px rgba(45,212,170,0.25);
}

.secondary-price{
    background:linear-gradient(135deg,#0d7c61,#22b892);
}

.service-card p{
    line-height:1.9;

    color:#d9f9ef;

    margin-bottom:25px;
}

.service-card ul{
    list-style:none;
}

.service-card ul li{
    margin-bottom:14px;

    color:#cffff3;
}

/* FRASE */

.quote{
    padding:120px 20px;

    display:flex;
    justify-content:center;
}

.quote-container{
    max-width:950px;

    text-align:center;

    padding:70px 55px;

    border-radius:40px;

    background:rgba(5,30,24,0.65);

    border:1px solid rgba(255,255,255,0.06);

    backdrop-filter:blur(18px);
}

.quote-icon{
    display:block;

    font-size:2rem;

    margin-bottom:22px;

    color:#9bffe2;
}

.quote h2{
    font-family:'Cinzel', serif;

    font-size:3rem;

    line-height:1.5;

    color:#f6fffb;

    margin-bottom:18px;
}

.quote p{
    letter-spacing:4px;

    text-transform:uppercase;

    color:#c7fdef;
}

/* TESTIMONIOS */

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.testimonial-card{
    padding:35px;

    border-radius:30px;

    background:rgba(5,30,24,0.65);

    border:1px solid rgba(255,255,255,0.06);

    backdrop-filter:blur(18px);
}

.testimonial-card p{
    line-height:1.9;

    color:#e4fff7;

    margin-bottom:20px;
}

.testimonial-card span{
    color:#8effdc;

    font-weight:600;
}

/* CTA */

.final-cta{
    padding:120px 20px;
}

.final-box{
    max-width:950px;

    margin:auto;

    text-align:center;

    padding:80px 50px;

    border-radius:45px;

    background:
    linear-gradient(135deg,
    rgba(9,50,40,0.95),
    rgba(7,26,21,0.95));

    border:1px solid rgba(255,255,255,0.08);
}

.final-box h2{
    font-family:'Cinzel', serif;

    font-size:3rem;

    line-height:1.4;

    margin-bottom:35px;

    color:#f7fffc;
}

/* CONTACTO */

.contact-box{
    max-width:1000px;

    margin:auto;

    text-align:center;

    padding:65px;

    border-radius:40px;

    background:rgba(5,30,24,0.70);

    border:1px solid rgba(255,255,255,0.06);

    backdrop-filter:blur(18px);
}

.contact-box p{
    color:#d8f8ee;

    margin:20px 0 40px;
}

.social-buttons{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.social-btn{
    width:190px;

    padding:18px;

    border-radius:20px;

    text-decoration:none;

    color:white;

    font-weight:600;

    transition:0.35s ease;
}

.social-btn:hover{
    transform:translateY(-8px) scale(1.04);
}

.whatsapp{
    background:linear-gradient(135deg,#0f8b6d,#25D366);
}

.instagram{
    background:linear-gradient(135deg,#0f8b6d,#2dd4aa);
}

/* FOOTER */

footer{
    text-align:center;

    padding:50px 20px;

    border-top:1px solid rgba(255,255,255,0.06);

    background:rgba(0,0,0,0.18);
}

.footer-logo{
    font-family:'Cinzel', serif;

    font-size:1.8rem;

    margin-bottom:14px;

    color:#cffff3;
}

footer p{
    color:#d6f7ed;

    margin-bottom:20px;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:20px;
}

.footer-links a{
    color:#8effdc;

    text-decoration:none;
}

/* ANIMACIONES */

.fade-up{
    animation:fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes rotate{
    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

/* RESPONSIVE */

@media(max-width:950px){

    .hero-content h1{
        font-size:3rem;
    }

    .about-card{
        grid-template-columns:1fr;
    }

    .quote h2,
    .final-box h2{
        font-size:2rem;
    }
}

@media(max-width:700px){

    .navbar{
        flex-direction:column;
        gap:18px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:16px;
    }

    .hero-content{
        padding:40px 28px;
    }

    .hero-content h1{
        font-size:2.2rem;
    }

    .section-title{
        font-size:2.2rem;
    }

    .quote-container,
    .contact-box,
    .final-box{
        padding:45px 28px;
    }
}



/* ===== GALERIA DE TESTIMONIOS 
whatsapp-gallery{
    margin-top:60px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:25px;
}

.whatsapp-gallery img{
    width:100%;

    border-radius:28px;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 15px 35px rgba(0,0,0,0.35);

    transition:0.4s ease;

    object-fit:cover;
}

.whatsapp-gallery img:hover{
    transform:translateY(-10px) scale(1.02);

    box-shadow:
    0 25px 45px rgba(0,0,0,0.45),
    0 0 30px rgba(45,212,170,0.12);
}===== */



/* ===== SLIDER TESTIMONIOS ===== */

.testimonial-slider{
    margin-top:60px;

    overflow-x:auto;

    padding-bottom:10px;

    scrollbar-width:none;
}

.testimonial-slider::-webkit-scrollbar{
    display:none;
}

.slider-track{
    display:flex;
    gap:25px;

    width:max-content;

    padding:10px;
}

.slider-track img{
    width:280px;

    border-radius:28px;

    flex-shrink:0;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 15px 35px rgba(0,0,0,0.35);

    transition:0.4s ease;
}

.slider-track img:hover{
    transform:translateY(-10px) scale(1.02);

    box-shadow:
    0 25px 45px rgba(0,0,0,0.45),
    0 0 30px rgba(45,212,170,0.12);
}
















.testimonial-wrapper{
    position:relative;

    margin-top:60px;

    display:flex;
    align-items:center;
}

.testimonial-slider{
    overflow:hidden;

    width:100%;
}

.slider-track{
    display:flex;
    gap:25px;

    transition:0.4s ease;
}

.slider-track img{
    width:280px;

    border-radius:28px;

    flex-shrink:0;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 15px 35px rgba(0,0,0,0.35);

    transition:0.35s ease;
}

.slider-track img:hover{
    transform:translateY(-10px);

    box-shadow:
    0 25px 45px rgba(0,0,0,0.45),
    0 0 30px rgba(45,212,170,0.15);
}

/* BOTONES */

.slider-btn{
    position:absolute;

    width:55px;
    height:55px;

    border:none;

    border-radius:50%;

    background:rgba(7,35,29,0.85);

    color:white;

    font-size:2rem;

    cursor:pointer;

    z-index:5;

    backdrop-filter:blur(10px);

    transition:0.3s ease;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.35);
}

.slider-btn:hover{
    transform:scale(1.1);

    background:#1bb88f;
}

.slider-btn.left{
    left:-20px;
}

.slider-btn.right{
    right:-20px;
}

/* MOBILE */

@media(max-width:700px){

    .slider-btn{
        width:45px;
        height:45px;

        font-size:1.5rem;
    }

    .slider-track img{
        width:240px;
    }
}








/* ===== CARTA DEL DIA ===== */

.daily-card-section{
    padding:40px 8% 100px;

    display:flex;
    justify-content:center;
}

.daily-card-container{
    max-width:500px;

    text-align:center;

    padding:45px;

    border-radius:40px;

    background:rgba(5,30,24,0.68);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.35);
}

.daily-badge{
    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(45,212,170,0.12);

    color:#cffff3;

    margin-bottom:25px;
}

.daily-card-container img{
    width:220px;

    border-radius:24px;

    margin-bottom:25px;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.35);
}

.daily-card-container h2{
    font-family:'Cinzel', serif;

    font-size:2rem;

    color:#f4fffb;

    margin-bottom:18px;
}

.daily-card-container p{
    color:#d7f8ee;

    line-height:1.8;
}