

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:linear-gradient(to bottom,#2e1065,#4c1d95,#6d28d9);
    color:white;
}

/* ===== MENÚ ===== */

nav{
    background:#4c1d95;
    padding:20px;
    text-align:center;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 0 20px rgba(192,132,252,.5);
}

nav a{
    color:white;
    text-decoration:none;
    margin:0 15px;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:#e9d5ff;
    text-shadow:0 0 15px #c084fc;
}

/* ===== PORTADA ===== */

.contenedor-imagen{
    overflow:hidden;
}

.contenedor-imagen img{
    width:100%;
    height:700px;
    object-fit:cover;
    transition:.6s;
}

.contenedor-imagen:hover img{
    transform:scale(1.2);
}

/* ===== TÍTULOS ===== */

h1{
    text-align:center;
    font-size:70px;
    color:white;
    margin-top:20px;
    text-shadow:0 0 20px #c084fc;
}

h2{
    color:#f3e8ff;
    margin-bottom:20px;
    border-bottom:2px solid #c084fc;
    padding-bottom:10px;
}

h3{
    color:#ddd6fe;
    margin-top:15px;
    margin-bottom:10px;
}

/* ===== SECCIONES ===== */

section{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    border-radius:20px;
    margin:20px;
    padding:25px;
    box-shadow:0 0 20px rgba(255,255,255,.08);
}

section:hover{
    box-shadow:0 0 25px rgba(192,132,252,.5);
}

/* ===== TEXTO ===== */

p{
    line-height:1.8;
    margin-bottom:10px;
    color:#f3f4f6;
}

ul,ol{
    margin-left:30px;
    margin-top:10px;
}

li{
    margin-bottom:8px;
}

/* ===== VIDEOS ===== */

video{
    margin:10px;
    border-radius:15px;
    border:3px solid #a855f7;
    box-shadow:0 0 20px rgba(168,85,247,.6);
}

/* ===== TABLA ===== */

table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
    background:#f5f5f5;
    color:#222;
    border-radius:10px;
    overflow:hidden;
}

th{
    background:#7e22ce;
    color:white;
    padding:15px;
}

td{
    padding:15px;
    text-align:center;
    border:1px solid #d4d4d4;
}

tr:nth-child(even){
    background:#eeeeee;
}

tr:hover{
    background:#ddd6fe;
}

table img{
    width:100px;
    border-radius:10px;
    transition:.4s;
}

table img:hover{
    transform:scale(1.1);
}

/* ===== MÚSICA ===== */

audio{
    width:100%;
    margin-top:20px;
}

button{
    background:#7e22ce;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:50px;
    margin:10px;
    cursor:pointer;
    font-size:15px;
    transition:.3s;
}

button:hover{
    background:#a855f7;
    transform:scale(1.05);
}

/* ===== GALERÍA ===== */

#galeria{
    text-align:center;
}

#galeria img{
    width:280px;
    height:280px;
    object-fit:cover;
    border-radius:15px;
    margin:10px;
    transition:.4s;
    border:3px solid #c084fc;
}

#galeria img:hover{
    transform:scale(1.08);
    box-shadow:0 0 30px #c084fc;
}

/* ===== CONTACTO ===== */

#contacto{
    text-align:center;
}

#contacto p{
    font-size:18px;
}

/* ===== SCROLL ===== */

::-webkit-scrollbar{
    width:12px;
}

::-webkit-scrollbar-track{
    background:#2e1065;
}

::-webkit-scrollbar-thumb{
    background:#c084fc;
    border-radius:10px;
}

::-webkit-scrollbar-thumb:hover{
    background:#e9d5ff;
}

/* ===== EFECTOS ===== */

img{
    max-width:100%;
}

html{
    scroll-behavior:smooth;
}