/* FONDO */
body {
    background-image: url('images/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    color: #d4c08a;
    font-family: Tahoma;
    margin: 0;
}

/* sombra */
body {
    display: flex;
    justify-content: center;
}    

/* CONTENEDOR */
.container {
    width: 1200px;
    margin: 20px auto;
    background-color: rgba(26, 26, 26, 0.6);
    border: 3px solid #5a4a2f;
}

/* HEADER */
.header.banner-bg {
    background: url('images/banner.png') no-repeat center center;
    background-size: cover;
    height: 200px; /* ajusta según tu imagen */
    padding: 0;
    margin: 0;
    border-bottom: 3px solid #5a3b1a;
}

/* LAYOUT */
.main {
    display: flex;
}

.sidebar {
    width: 250px;
    flex-shrink: 0;
}

.content {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

.box {
    background: rgba(0,0,0,0.4);
    border: 2px solid gold;
}

/* CAJAS */
.box {
    text-align: left;
}
/* MENÚ */
.menu-box {
    background: #1b1b1b;
    border: 2px solid #c6a300;
    margin-bottom: 15px;
    padding: 10px;
}

.menu-title {
    color: #00ff00;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    padding-right: 15px;
}

/* flecha */
.menu-title::after {
    content: "▶";
    position: absolute;
    right: 5px;
}

.menu-title.active::after {
    content: "▼";
}

/* desplegable */
.menu-content {
    display: none;
}

/* botón descarga */
.download-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(to bottom, #5a3b1a, #2d1b0f);
    color: gold;
    text-decoration: none;
    border: 2px solid #8b5a2b;
}

/* skills */
.menu-box-inner {
    border-top: 1px solid #333;
    padding: 5px 0;
}

.side-images {
    position: fixed;
    top: 100px; /* ajusta altura */
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
}

.side-images img {
    width: 100%;
    border: 2px solid gold;
    box-shadow: 0 0 10px black;
}

/* izquierda */
.side-images.left {
    left: 10px;
}

/* derecha */
.side-images.right {
    right: 10px;
}
.side-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px gold;
    transition: 0.3s;
}
#visor {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#visor img {
    max-width: 80%;
    max-height: 80%;
    border: 3px solid gold;
    box-shadow: 0 0 20px black;
}
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    border-bottom: 1px solid #333;
}

.menu-list a {
    display: block;
    padding: 6px;
    color: #d4c08a;
    text-decoration: none;
}

.menu-list a:hover {
    background: #2a2a2a;
    color: white;
}
.menu-content {
    display: none;
}

/* flecha */
.menu-title {
    cursor: pointer;
    position: relative;
    padding-right: 15px;
}

.menu-title::after {
    content: "▶";
    position: absolute;
    right: 5px;
    color: #00ff00;
}

/* cuando está abierto */
.menu-title.active::after {
    content: "▼";
}
.side-images left {
    display: flex;
    flex-direction: column;
    align-items: center; /* 🔥 CENTRA horizontal */
    gap: 20px;
    margin-top: 20px;
}

.side-images left img {
    width: 250px;
    border: 2px solid gold;
    cursor: pointer;
}
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    background: rgba(0, 0, 0, 0.6);
    border-left: 4px solid gold;
    padding: 10px;
    margin-bottom: 8px;
    transition: 0.3s;
}

.features-list li:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

/* CENTRAR LOGIN */
.content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* CAJA LOGIN */
.box {
    width: 300px;
    margin-top: 40px;
    background: rgba(0,0,0,0.6);
    padding: 20px;
    border: 1px solid gold;
    border-radius: 8px;
}

/* INPUTS */
.box input {
    width: 100%;
    padding: 6px;
    margin-top: 5px;
}

/* BOTÓN */
.box button {
    width: 100%;
    padding: 8px;
    background: #222;
    color: gold;
    border: 1px solid gold;
    cursor: pointer;
}
/* CONTENEDOR CENTRAL */
.home-panels {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* CAJAS */
.box {
    width: 400px;
    background: rgba(0, 0, 0, 0.65);
    border: 2px solid gold;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* TITULOS */
.box h2 {
    text-align: center;
    margin-bottom: 15px;
    border-bottom: 1px solid gold;
    padding-bottom: 10px;
}

/* LISTAS */
.box ul {
    list-style: none;
    padding: 0;
}

.box li {
    padding: 8px 10px;
    margin-bottom: 6px;
    background: rgba(255,255,255,0.05);
    border-left: 3px solid gold;
    transition: 0.2s;
}

/* EFECTO HOVER */
.box li:hover {
    background: rgba(255,215,0,0.15);
    transform: translateX(5px);
}
/* CONTENEDOR DE PANELES */
.panel-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* CAJAS */
.box {
    width: calc(50% - 10px); /* 2 columnas reales */
    min-width: 300px;
    box-sizing: border-box;
}

/* TITULOS */
.box h2 {
    margin-bottom: 15px;
    border-bottom: 1px solid gold;
    padding-bottom: 10px;
}

/* LISTAS */
.box ul {
    list-style: none;
    padding: 0;
}

.box li {
    padding: 8px;
    margin-bottom: 6px;
    background: rgba(255,255,255,0.05);
    border-left: 3px solid gold;
}

/* HOVER PRO */
.box li:hover {
    background: rgba(255,215,0,0.15);
}