:root {
    --bg-dark: #0a0a0a;
    --orange-gradient: linear-gradient(180deg, #f41414 0%, #ff914d 100%);
    --orange-solid: #ff4500;
    --title-bg: #ff914d;
    --card-red: #fa0000;
    --text-light: #ffffff;
    --text-dark: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contenedor {
    width: 100%;
    max-width: 450px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.main-header {
    width: 100%;
    max-width: 450px;
    background: linear-gradient(90deg, #f41414 20%, #ff914d 60%);
    padding: 15px;
    text-align: center;
}

.logo-contenedor {
    border: 2px dashed #000;
    display: inline-block;
    padding: 5px 15px;
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 10px;
}

.logo {
    display: block;
    max-width: 120px;
    height: auto;
    margin: 0 auto 20px;
}

.navegacion-main {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.navegacion-main a {
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.degradado {
    width: 100%;
    max-width: 450px;
    height: 48px;
    background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)),
        repeating-conic-gradient(#000 0% 25%, #ff914d 0% 50%);
    background-size: 100% 100%, 12px 12px;
    border-bottom: linear-gradient(20deg, #000 40%, #000 60%);
}


.seccion-presentacion {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: flex-start;
    margin-top: 15px;
}

.imagen-personal {
    width: 35%;
    flex-shrink: 0;
}


.imagen {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 3px solid var(--card-red);
    border-radius: 10px;
    display: block;
}

.carta-biografica {
    flex: 1;
    background-color: var(--card-red);
    padding: 15px;
    border-radius: 15px;
    position: right;
}

.carta-biografica h2 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.carta-biografica p {
    font-size: 0.85rem;
    line-height: 1.3;
}

.mascotas {
    width: 500px;
    height: 250px;
    justify-content: right;
}

.contenedor-general {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.titulo-general {
    background: linear-gradient(90deg, #f41414 20%, #ff914d 60%);
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 20px;
}

.desempeño {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.tarjeta {
    padding: 15px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.tarjeta-roja {
    background: linear-gradient(135deg, #ff1a1a 0%, #b30000 100%);
}

.tarjeta h3 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
}

.tarjeta p,
.tarjeta li {
    margin-bottom: 5px;
    list-style-position: inside;
}

.sticker {
    position: absolute;
    width: 50px;
}


.iconos {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 10px 0;
}

.caja-iconos {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.iconoapps {
    width: 60px;
    height: 60px;
}

.tarjeta-compi {
    display: flex;
    background-color: #1a1a1a;
    border: 2px solid var(--card-red);
    padding: 15px;
    border-radius: 15px;
    gap: 15px;
    align-items: center;
}

.foto-compi {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.info-compi {
    flex: 1;
}

.info-compi h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-compi p {
    font-size: 0.8rem;
    color: #ccc;
    margin-bottom: 8px;
}

.boton-presentacion {
    display: inline-block;
    background: var(--orange-gradient);
    color: white;
    text-decoration: none;
    padding: 4px 12px;
    font-size: 0.75rem;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 8px 8px #fa0000;
}


.academico-container {
    width: 100%;
    max-width: 600px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #ff1a1a 0%, #b30000 100%);
}

.academico-tarjeta {
    background-color: #f7f2f2;
    width: 85%;
    border-radius: 30px;
    padding: 20px 25px 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: -6px 6px 0px #fa0000;
    box-shadow: 0 8px 8px #fa0000(105, 2, 2, 0.8)
}

.caja-logo-academico {
    background-color: #ff914d;
    padding: 8px 25px;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 8px 8px #fa0000(105, 2, 2, 0.8)
}

.logo-img {
    max-width: 120px;
    height: auto;
    display: block;
}

.informacion-academica {
    width: 100%;
}

.informacion-academica ul {
    text-align: left;
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 20px;
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #444;
}

.informacion-academica ul li {
    margin-bottom: 5px;
}

.academico-sitio {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fa0000;
    color: #000000;
    text-decoration: none;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
}



.main-footer {
    width: 100%;
    max-width: 450px;
    background: linear-gradient(135deg, #ff1a1a 0%, #b30000 100%);
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-size: 0.75rem;
    margin-top: 30px;
    border-top: 8px solid #000;
}

.footer-copyright {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-disclaimer {
    line-height: 1.4;
    opacity: 0.9;
}