body{
-webkit-user-select:none;
-ms-user-select:none;
user-select:none;
background:#081120;
color:white;

}



*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}


header{
position:fixed;
width:100%;
top:0;
left:0;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:rgba(0,0,0,0.4);
backdrop-filter:blur(10px);
z-index:1000;
}

.logo h2{
color:#4da3ff;
}

.logo-container{
display:flex;
align-items:center;
gap:15px;

}

h1{
     font-family:Georgia, 'Times New Roman', Times, 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}
.logo-container img{
width:60px;
height:60px;
object-fit:contain;
}

.logo-container h1{
font-size:28px;
font-weight:700;
color:white;
}


nav{
     font-family:Georgia, 'Times New Roman', Times, 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}



nav a{
color:white;
text-decoration:none;
margin-left:20px;
transition:0.3s;
}

nav a:hover{
color:#4da3ff;
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:120px 20px;

background:
linear-gradient(
135deg,
rgba(103,61,230,.95),
rgba(80,37,209,.95)
),
url("imagenes/fondo.jpg");

background-size:cover;
background-position:center;
background-repeat:no-repeat;
}
.hero h1{

font-size:68px;
font-weight:800;
line-height:1.1;

color:white;

background:none;

-webkit-text-fill-color:white;

margin-bottom:25px;

}

.hero p{
font-size:20px;
margin-bottom:30px;
color: rgb(233, 236, 238);
 font-family:Georgia, 'Times New Roman', Times, 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}

.btn{

display:inline-block;

padding:16px 34px;

background:#673DE6;

color:white;

text-decoration:none;

border-radius:12px;

font-weight:700;

transition:.3s;

box-shadow:
0 8px 25px rgba(103,61,230,.35);

}

.btn:hover{

transform:translateY(-4px);

background:#5025D1;

}
.btn:hover{
transform:translateY(-3px);
background:#1d4ed8;
}

section{
padding:100px 8%;
}

section h2{
text-align:center;
font-size:40px;
margin-bottom:50px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:#10233f;
padding:30px;
border-radius:20px;
text-align:center;
transition:0.3s;
box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.card:hover{
transform:translateY(-10px);
}

.card i{
font-size:45px;
margin-bottom:20px;
color:#4da3ff;
}

.card h3{
margin-bottom:15px;
font-size:28px;
}

.premium strong{
display:block;
font-size:30px;
margin:20px 0;
color:#4da3ff;
}

.productos-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:25px;
}

.producto{
background:#10233f;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
transition:0.3s;
}

.producto:hover{
transform:translateY(-5px);
}

.producto img,
.producto video{
width:100%;
height:250px;
object-fit:cover;
}

.producto-content{
padding:20px;
}

.producto-content h3{
margin-bottom:10px;
}

.producto-content p{
margin-bottom:20px;
line-height:1.6;
}
.footer{
background:#050b16;
padding-top:80px;
color:white;
}

.footer-container{
width:90%;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
padding-bottom:50px;
}

.footer-box h3{
margin-bottom:20px;
font-size:24px;
}

.footer-box p{
line-height:1.8;
color:#cbd5e1;
}

.footer-box ul{
list-style:none;
padding:0;
}

.footer-box ul li{
margin-bottom:12px;
}

.footer-box ul li a{
color:#cbd5e1;
text-decoration:none;
transition:0.3s;
}

.footer-box ul li a:hover{
color:#00c6ff;
padding-left:5px;
}

.footer-logo{
display:flex;
align-items:center;
gap:15px;
margin-bottom:20px;
}

.footer-logo img{
width:60px;
height:60px;
object-fit:contain;
}

.footer-logo h2{
font-size:28px;
font-weight:800;

background:linear-gradient(90deg,#00c6ff,#7d2ae8);

-webkit-text-fill-color:transparent;
}

.footer-btn{
display:inline-block;
margin-top:20px;
padding:14px 25px;
border-radius:12px;
background:linear-gradient(90deg,#00c6ff,#7d2ae8);
color:white;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.footer-btn:hover{
transform:translateY(-3px);
}

.footer-copy{
border-top:1px solid rgba(255,255,255,0.1);
padding:25px;
text-align:center;
color:#94a3b8;
font-size:15px;
}
.login-container{
display:flex;
justify-content:center;
align-items:center;
height:100vh;
}

.login-box,
.formulario{
background:#10233f;
padding:30px;
border-radius:20px;
max-width:500px;
width:100%;
margin:auto;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.login-box h2{
text-align:center;
margin-bottom:20px;
}

input,
textarea,
select{
width:100%;
padding:14px;
margin-top:15px;
border:none;
border-radius:10px;
background:#0b1728;
color:white;
}

textarea{
height:120px;
resize:none;
}

button{
margin-top:20px;
width:100%;
padding:15px;
border:none;
border-radius:10px;
background:#2563eb;
color:white;
font-size:16px;
cursor:pointer;
}

button:hover{
background:#1d4ed8;
}

.admin-panel{
padding:50px 8%;
}

.admin-panel h1,
.admin-panel h2{
text-align:center;
margin-bottom:30px;
}

.hidden{
display:none;
}

.logout{
margin-top:40px;
background:#dc2626;
}

.logout:hover{
background:#b91c1c;
}

.eliminar{
background:#dc2626;
margin-top:10px;
}

@media(max-width:768px){

header{
flex-direction:column;
}

nav{
margin-top:15px;
}

.hero h1{
font-size:38px;
}

.hero p{
font-size:18px;
}

section h2{
font-size:32px;
}

}

.preview-container{
width:100%;
height:320px;
margin-top:20px;
border-radius:20px;
overflow:hidden;
background:#0b1728;
display:flex;
align-items:center;
justify-content:center;
position:relative;
border:2px dashed rgba(255,255,255,0.1);
}

.preview-img,
.preview-video{
width:100%;
height:100%;
object-fit:cover;
object-position:center;
display:block;
}

.producto{
background:#10233f;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
transition:0.3s;
display:flex;
flex-direction:column;
justify-content:space-between;
}

.producto-media{
width:100%;
height:320px;
background:#0b1728;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
position:relative;
}

.producto img,
.producto video{
width:100%;
height:100%;
object-fit:cover;
object-position:center;
display:block;
transition:0.3s;
}

.producto:hover img,
.producto:hover video{
transform:scale(1.03);
}


.catalogo{
padding:100px 8%;
background:#081120;
}

.catalogo-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.catalogo-card{
background:#10233f;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
transition:0.3s;
display:flex;
flex-direction:column;
}

.catalogo-card:hover{
transform:translateY(-8px);
}

.catalogo-img{
width:100%;
height:260px;
overflow:hidden;
background:#0b1728;
}

.catalogo-img img{
width:100%;
height:100%;
object-fit:cover;
object-position:center;
transition:0.4s;
}

.catalogo-card:hover img{
transform:scale(1.05);
}

.catalogo-content{
padding:25px;
display:flex;
flex-direction:column;
justify-content:space-between;
height:100%;
}

.catalogo-content h3{
font-size:26px;
margin-bottom:15px;
}

.catalogo-content p{
line-height:1.7;
margin-bottom:25px;
}

.catalogo-buttons{
display:flex;
flex-direction:column;
gap:15px;
}

.secondary{
background:#0f172a;
border:1px solid rgba(255,255,255,0.1);
}

.secondary:hover{
background:#1e293b;
}


.contacto{
padding:100px 8%;
background:#0b1728;
}

.formulario-contacto{
max-width:700px;
margin:auto;
background:#10233f;
padding:40px;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
display:flex;
flex-direction:column;
gap:20px;
}

.formulario-contacto input,
.formulario-contacto select,
.formulario-contacto textarea{
width:100%;
padding:16px;
border:none;
border-radius:12px;
background:#081120;
color:white;
font-size:16px;
}

.formulario-contacto textarea{
height:140px;
resize:none;
}

.formulario-contacto button{
margin-top:10px;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

img{
max-width:100%;
display:block;
}

img{
max-width:100%;
height:auto;
display:block;
}

.catalogo-img{
width:100%;
height:260px;
overflow:hidden;
position:relative;
background:#0b1728;
display:flex;
align-items:center;
justify-content:center;
}

.catalogo-img img{
width:100%;
height:100%;
object-fit:cover;
object-position:center;
display:block;
}

.producto-media{
width:100%;
height:320px;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
background:#0b1728;
}

.producto-media img,
.producto-media video{
width:100%;
height:100%;
object-fit:cover;
object-position:center;
display:block;
}



video{
max-width:100%;
display:block;
}

body{
overflow-x:hidden;
font-family:Arial, sans-serif;
background:#081120;
color:white;
}

html{
scroll-behavior:smooth;
}

@media(max-width:991px){

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

.logo-container h1{
font-size:24px;
}

.catalogo-grid,
.productos-grid,
.paquetes-grid,
.footer-container{
grid-template-columns:1fr;
}

.formulario-contacto{
padding:25px;
}

.footer{
text-align:center;
}

.footer-logo{
justify-content:center;
}

.catalogo-buttons{
flex-direction:column;
}

}

@media(max-width:600px){

.hero{
padding:40px 20px;
height:auto;
min-height:100vh;
}

.hero h1{
font-size:34px;
line-height:1.3;
}

.hero p{
font-size:16px;
}

.btn{
width:100%;
text-align:center;
}

.logo-container img{
width:45px;
height:45px;
}

.logo-container h1{
font-size:20px;
}

.catalogo-content h3{
font-size:22px;
}

.footer-box h3{
font-size:22px;
}

}


.catalogo-card,
.producto{
min-width:0;
max-width:100%;
}


body{
overflow-x:hidden;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, sans-serif;
background:#081120;
color:white;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

.header{
width:100%;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,0.3);
backdrop-filter:blur(10px);
position:fixed;
top:0;
left:0;
z-index:999;
}

.logo-container{
display:flex;
align-items:center;
gap:15px;
}

.logo-container img{
width:60px;
height:60px;
object-fit:contain;
}

.logo-container h1{
font-size:30px;
font-weight:800;
background:linear-gradient(90deg,#00c6ff,#7d2ae8);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

nav{
display:flex;
align-items:center;
gap:25px;
}

nav a{
text-decoration:none;
color:white;
font-weight:600;
transition:0.3s;
}

nav a:hover{
color:#00c6ff;
}

.login-btn{
padding:12px 22px;
border-radius:12px;
background:linear-gradient(90deg,#00c6ff,#7d2ae8);
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:120px 20px;
background:
linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
url('assets/hero.jpg');
background-size:cover;
background-position:center;
}

.hero-content{
max-width:850px;
}

.hero h2{
font-size:62px;
margin-bottom:25px;
line-height:1.2;
}

.hero p{
font-size:20px;
line-height:1.8;
margin-bottom:35px;
color:#dbeafe;
}

.btn-principal{
display:inline-block;
padding:18px 35px;
background:linear-gradient(90deg,#00c6ff,#7d2ae8);
color:white;
text-decoration:none;
border-radius:14px;
font-size:18px;
font-weight:bold;
transition:0.3s;
}

.btn-principal:hover{
transform:translateY(-5px);
}

.planes{
padding:100px 8%;
}

.planes h2,
.servicios h2{
text-align:center;
font-size:42px;
margin-bottom:60px;
}

.planes-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;
}

.plan-card{
background:#10233f;
padding:40px 30px;
border-radius:25px;
position:relative;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
transition:0.3s;
}

.plan-card:hover{
transform:translateY(-10px);
}

.popular{
border:2px solid #00c6ff;
}

.badge{
position:absolute;
top:-15px;
right:20px;
background:#00c6ff;
padding:10px 18px;
border-radius:30px;
font-size:14px;
font-weight:bold;
}

.plan-card h3{
font-size:30px;
margin-bottom:20px;
}

.precio{
font-size:52px;
font-weight:bold;
margin-bottom:25px;
}

.precio span{
font-size:18px;
color:#cbd5e1;
}

.plan-card ul{
list-style:none;
margin-bottom:35px;
}

.plan-card ul li{
margin-bottom:15px;
font-size:17px;
color:#dbeafe;
}

.btn-plan{
display:block;
text-align:center;
padding:16px;
border-radius:14px;
background:linear-gradient(90deg,#00c6ff,#7d2ae8);
text-decoration:none;
color:white;
font-weight:bold;
transition:0.3s;
}

.btn-plan:hover{
transform:translateY(-4px);
}

.servicios{
padding:100px 8%;
background:#0b1728;
}

.servicios-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.servicio-card{
background:#10233f;
padding:35px;
border-radius:20px;
transition:0.3s;
}

.servicio-card:hover{
transform:translateY(-8px);
}

.servicio-card h3{
font-size:28px;
margin-bottom:20px;
}

.servicio-card p{
line-height:1.8;
color:#dbeafe;
}

.footer{
background:#050b16;
padding-top:80px;
}

.footer-content{
width:90%;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
padding-bottom:50px;
}

.footer h3{
margin-bottom:20px;
font-size:24px;
}

.footer p{
line-height:1.8;
color:#cbd5e1;
}

.footer-copy{
text-align:center;
padding:25px;
border-top:1px solid rgba(255,255,255,0.1);
color:#94a3b8;
}

@media(max-width:991px){

.header{
flex-direction:column;
gap:20px;
}

.hero h2{
font-size:42px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

}

@media(max-width:600px){

.hero h2{
font-size:34px;
}

.hero p{
font-size:16px;
}

.logo-container h1{
font-size:22px;
}

.logo-container img{
width:45px;
height:45px;
}

.btn-principal,
.btn-plan{
width:100%;
}

}