/* ============================= */
/* FONDO GENERAL */
/* ============================= */

body{
background:radial-gradient(circle at top,#0b1224,#000);
color:#e5e7eb;
font-family:'Poppins',sans-serif;
margin:0;
overflow-x:hidden;
}


/* ============================= */
/* HERO */
/* ============================= */

.category-hero{
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
max-width:1000px;
margin:90px auto;
padding:20px;
gap:30px;
}


/* ============================= */
/* TITULO */
/* ============================= */

.hero-text{
max-width:800px;
}

#typing-title{
font-size:40px;
color:#00ffff;
text-shadow:0 0 20px rgba(0,255,255,.4);
max-width:800px;
margin:auto;
line-height:1.4;
}

#typing-title::after{
content:"|";
margin-left:6px;
animation:blink 1s infinite;
}

@keyframes blink{
0%{opacity:1}
50%{opacity:0}
100%{opacity:1}
}


/* ============================= */
/* IMAGEN HERO */
/* ============================= */

.category-hero img{
width:100%;
max-width:750px;
border-radius:18px;
box-shadow:0 25px 70px rgba(0,0,0,.7);
transition:.5s;
}

.category-hero img:hover{
transform:scale(1.05);
box-shadow:0 0 40px rgba(0,255,255,.25);
}


/* ============================= */
/* SECCION INFO */
/* ============================= */

.info-section{
max-width:1000px;
margin:70px auto;
padding:20px;
}

.info-container{
background:rgba(15,23,42,.85);
border-radius:22px;
padding:45px;
border:1px solid rgba(255,255,255,.08);
box-shadow:0 20px 60px rgba(0,0,0,.6);
backdrop-filter:blur(10px);
transition:.35s;
position:relative;
overflow:hidden;
}


/* EFECTO BRILLO */

.info-container::before{
content:"";
position:absolute;
top:0;
left:-120%;
width:120%;
height:100%;
background:linear-gradient(
120deg,
transparent,
rgba(0,255,255,.15),
transparent
);
transition:.6s;
}

.info-container:hover::before{
left:120%;
}

.info-container:hover{
transform:translateY(-6px);
box-shadow:0 0 40px rgba(0,255,255,.18);
}


/* TITULO */

.info-container h3{
font-size:28px;
color:#00ffff;
margin-bottom:15px;
text-shadow:0 0 12px rgba(0,255,255,.35);
}


/* TEXTO */

.info-container p{
font-size:15px;
line-height:1.8;
color:#cbd5e1;
margin-bottom:14px;
}


/* ============================= */
/* CALL TO ACTION */
/* ============================= */

.call-to-action{
margin-top:35px;
padding:28px;
border-radius:16px;
background:rgba(0,255,255,.05);
border:1px solid rgba(0,255,255,.25);
text-align:center;
}

.call-to-action h4{
font-size:22px;
color:#00ffff;
margin-bottom:10px;
}

.call-to-action p{
margin-bottom:20px;
}


/* ============================= */
/* BOTON */
/* ============================= */

.quote-button{
display:inline-block;
padding:15px 30px;
border-radius:12px;
background:#00ffff;
color:#000;
font-weight:700;
text-decoration:none;
letter-spacing:.5px;
transition:.3s;
box-shadow:0 0 20px rgba(0,255,255,.4);
}

.quote-button:hover{
transform:translateY(-3px);
box-shadow:0 0 35px rgba(0,255,255,.7);
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:900px){

.hero-text h2{
font-size:30px;
border-right:none;
animation:none;
}

.category-hero img{
max-height:300px;
object-fit:cover;
}

}

#typing-title{
font-size:40px;
color:#00ffff;
text-shadow:0 0 20px rgba(0,255,255,.4);
max-width:800px;
margin:auto;
line-height:1.4;
}

#typing-title::after{
content:"|";
margin-left:5px;
animation:blink 1s infinite;
}

/* ============================= */
/* 🌞 MODO CLARO - CATEGORY PAGE */
/* ============================= */

body.light{
background:linear-gradient(180deg,#f8fbff,#eef6ff);
color:#111;
}

/* HERO TITULO */
body.light #typing-title{
color:#0099cc;
text-shadow:0 0 10px rgba(0,153,204,.2);
}

/* IMAGEN HERO */
body.light .category-hero img{
box-shadow:0 20px 50px rgba(0,0,0,.15);
}

body.light .category-hero img:hover{
box-shadow:0 0 25px rgba(0,153,204,.2);
}

/* INFO CARD */
body.light .info-container{
background:#ffffff;
border:1px solid rgba(0,0,0,.08);
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

body.light .info-container:hover{
box-shadow:0 0 30px rgba(0,153,204,.15);
}

/* EFECTO BRILLO */
body.light .info-container::before{
background:linear-gradient(
120deg,
transparent,
rgba(0,153,204,.12),
transparent
);
}

/* TITULO */
body.light .info-container h3{
color:#0099cc;
text-shadow:0 0 8px rgba(0,153,204,.2);
}

/* TEXTO */
body.light .info-container p{
color:#444;
}

/* CALL TO ACTION */
body.light .call-to-action{
background:rgba(0,153,204,.05);
border:1px solid rgba(0,153,204,.25);
}

body.light .call-to-action h4{
color:#0099cc;
}

body.light .call-to-action p{
color:#555;
}

/* BOTON */
body.light .quote-button{
background:#00bcd4;
color:#fff;
box-shadow:0 0 15px rgba(0,188,212,.25);
}

body.light .quote-button:hover{
box-shadow:0 0 25px rgba(0,188,212,.4);
}

/* CURSOR TITULO */
body.light #typing-title::after{
color:#0099cc;
}