/* ======================================= */
/* 1. RESET Y BASE */
/* ======================================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

/* Listas */
ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Imágenes y figuras base */
img {
    max-width: 100%;
    height: auto;
}

figure {
    margin: 0;
}

/* Contenedor principal */
.main-contenedora {
    width: min(75rem, calc(100% - 2rem));
    margin-inline: auto;
}

/* ======================================= */
/* 2. TIPOGRAFÍA Y TRANSFORMACIONES */
/* ======================================= */

/* Títulos h1 */
h1 {
    font-size: 85px;
    color: #fc4a1a;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Títulos h2 */
h2 {
    font-size: 34px;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
    text-transform: uppercase;
}

/* Títulos h3 y h4 */
h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 24px;
    color: #000000;
    text-transform: uppercase;
        margin-bottom: 5px;
    margin-top: 5px;
}
h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #000000;
    text-transform: uppercase;
        margin-bottom: 5px;
    margin-top: 5px;
}

/* Párrafos */
p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #000000;
    text-align: justify; 
}

/* Ítems de lista */
li {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #000000;
    text-decoration: none;
}

/* Enlaces generales */
a {
    font-size: 16px;
    text-decoration: none;
    color: #000000;
    font-weight: bold; 
    font-family: Arial, Helvetica, sans-serif;
}
a:hover,
a:focus-visible {
    color: #fc4a1a;
    text-decoration: none;
}

/* ======================================= */
/* 3. HEADER Y NAVEGACIÓN */
/* ======================================= */

header {
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-contenedora {
    width: min(75rem, calc(100% - 2rem));
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
}

/* Menú de navegación */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0px;
    padding: 0;
    justify-content: flex-end;
}
.nav-menu li {
    display: inline-block;
    margin-right: 20px;
    float: none;  
}
.nav-menu a {
    color: #dfdce3;
    transition: color 0.3s ease-in-out;
    font-weight: bold;
    text-transform: uppercase;
}

nav a:hover {
    color: #4abdac;
}

/* ======================================= */
/* 4. SECCIÓN MIRANDA */
/* ======================================= */
  
.miranda-profesion {
    color: #000000;
    font-size: 80px;
    font-weight: normal; 
    display: inline-block;
    margin-top: 10px;
    text-transform: uppercase;
}
.imagen-con-texto {
    display: grid;
    grid-template-columns: 1fr 500px; 
    gap: 20px;
    align-items: start;
}
.datita p{
    text-transform:uppercase
}
/* ======================================= */
/* 5. HISTORIAL ACADÉMICO  */
/* ======================================= */


.cuadrosmaterias {
    width: 100%;
    max-width: 1400px;
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    align-items: flex-start;
    margin-top: 0.5rem;
}

.materia {
    background-color: #000000;
    border: #000000 2px solid;
    padding: 10px;
    border-radius: 15px;
    min-width: 200px;
}

.materia h3 {
    font-size: 24px;
    color: #fc4a1a;
    margin-top: 0;
    padding-bottom: 5px;
}

.materia ul {
    margin-bottom: 5px;
    display: flex; 
    flex-direction: column;
    text-align: left;
    border-radius: 5px;
    padding: 0.5rem 0.75rem;
}
.materia li {
    color: #ffffff;
    font-weight: normal;
    font-size: 14px;
    text-transform: uppercase;
}

/* ======================================= */
/* 6. COMITENTE Y ACADÉMICOS */
/* ======================================= */

.mocks-celu {
    width: 250px;
    height: 500px;
    padding: 0;
    display: inline-block;
    margin-left: 40px;
}

/* Sección datos académicos  */

.datosacademicos{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(22em, 100%), 1fr));
  gap: 2rem;
}
.datoacademico{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: left;
  justify-content: left;
  border: #000000 2px solid;
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 1.5rem;
}
.datosacademicos a{
  color: #000000;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}
.datoacademico p{
  font-size: 12px;
}
.datosacademicos img{
  width: auto;
  height: 4rem;
  object-fit:contain;
}

/* ======================================= */
/* 7. FOOTER */
/* ======================================= */

footer {
    background-color: #fc4a1a;
    padding: 20px 10px; 
    text-align: center;
    margin-top: 20px;
}

footer p {
    width: min(75rem, calc(100% - 2rem));
    margin-inline: auto;
    font-size: 14px; 
    text-align: center;
    color: #ffffff; 
    ::first-letter {
        text-transform: uppercase;
    }
}