* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    color: aliceblue;
    background: url(Imagenes/Fondo.jpg);
}

/*FUENTES*/

@font-face {
    font-family: 'HighriseFont';
    src: url('Tipografias/HighriseFont-Bold-Demo.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*MENU PRINCIPAL*/

body {
    background-color: rgb(0, 0, 0);
}

/*BARRA SUPERIOR*/

#menu {
    position: relative;
    background: #ffffff;
    padding: 18px 50px 18px;
    z-index: 1;
    overflow: visible;
}

.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav {
    align-items: center;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 25px;
color: rgb(0, 0, 0);
}

.nav-iz {
    justify-content: flex-start;
}

.nav-der {
    justify-content: flex-end;
}

.nav a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-family: 'HighriseFont', Arial, sans-serif;
    font-size: 30px;
    letter-spacing: 1px;
}

.nav li {
    position: relative;
}

.nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background: #ffffffcb;
    list-style: none;
}

.nav li:hover ul {
    display: block;
}


/*LOGO*/

.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -92px; 
    z-index: 10;
}

.logo {
    width: 307px;
    height: auto;
}

/*CATEGORIAS*/

.perfiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 80px 100px 40px 100px;
}

.perfil {
    position: relative;
    height: 760px;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
}

.perfil1 {
    background-color: #0f7adf;
}
.perfil2 {
    background-color: #1daf00;
}
.perfil3 {
    background-color: #be093f;
}
.perfil4 {
    background-color: #d4ae05;
}

.perfil img {
    width: 80%;
    height: auto;
    opacity: 0.8;
    mix-blend-mode: luminosity;
    pointer-events: none;
}

.perfil span {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    font-size: 200px;
    color: white;
    font-weight: bold;
    font-family:'HighriseFont';
}

.perfil:hover {
    transform: scale(1.07);
    opacity: 1;
    mix-blend-mode: linear-light;
}

.img-hover {
    display: none;
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: auto;
    mix-blend-mode: luminosity;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.img-normal {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: auto;
    mix-blend-mode: luminosity;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.perfil:hover .img-normal {
    display: none;
}

.perfil:hover .img-hover {
    display: block;
}

/*LANDING PAGE*/

.landing-container {
    background: url(Imagenes/Fondo.jpg);
    background-repeat: no-repeat;

    color: white;
    font-family:'HighriseFont', Arial, sans-serif ;
    letter-spacing: 1px ;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
}

.landing-logo {
    width: 300px;
    margin-bottom: 20px;
}

.landing-container h1 {
    font-size: 50px;
    margin-bottom: 10px;
    color: #e40031;
}

.landing-container p {
    font-size: 35px;
    margin-bottom: 30px;
}

.landing-container button {
    padding: 10px 20px;
    font-size: 30px;
    background: white;
    color: black;
    font-family:'HighriseFont', Arial, sans-serif ;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 10px;
    letter-spacing: 1px;
}

.landing-container button:hover {
    background: #9c0839;
    color: aliceblue;
    font-family:'HighriseFont', Arial, sans-serif;
}

/*blog*/

.blog-contenido {
    padding: 160px 100px 60px 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    gap: 40px;
}

.blog-post {
   background-color: rgba(112, 112, 112, 0.562);
    padding: 30px 40px;
    width: 800px; 
    margin: 0 auto; 
    border-radius: 21px;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 20px;
    line-height: 1.7;
    box-shadow: 0 4px 20px rgba(56, 56, 56, 0.61);
    transition: transform 0.3s ease;
    text-align: left; 
}

.blog-post:hover {
    transform: scale(1.01);
}

.blog-post h1, .blog-post h2 {
  
    font-family: 'HighriseFont', Arial, sans-serif;
    color: #c26eb5;
    font-size: 55px;
}

.blog-gif {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 400px;
    height: auto;
    z-index: 100;
    pointer-events: none;
}

/*GALERIA DE PROCESO*/

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: rgba(0, 0, 0, 0.6); 
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar-iz {
  display: flex;
  align-items: center;
}

.nav-logo {
  width: 40px;
  height: auto;
  margin-right: 10px;
}

.portfolio-title {
  font-size: 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif; 
  color: white;
}

.navbar-der {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar-der li a {
  color: white;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif; 
  font-size: 16px;
  transition: color 0.3s;
}

.navbar-der li a:hover {
  color: #ff4081;
}


.galeria{ 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
    width: 100vw;
    max-width: 1500px;
    margin: auto;
}

.imagen { 
    flex-grow: 1;
    flex-basis: 150px; 
    aspect-ratio: 1 / 1;
    object-fit: cover;
    min-width: 300px;
}

.imagenG { 
 flex-grow: 2;
  flex-basis: 300px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  min-width: 600px;
}

/*titulo de proceso*/

.proceso-contenido h1 {
    text-align: center;
    font-family: 'HighriseFont', Arial, sans-serif;
    color: #ffb3f3;
    font-size: 90px;
    margin-top: 100px;
}

/*curriculum*/

.curriculum-container {
 display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 60px;
  max-width: 1200px;         
  margin: 160px auto 100px;  
  padding: 0 40px;           
  color: white;
  font-family: Arial, sans-serif;
  font-size: 23px;
}

/* Columna izquierda */
.columna-izquierda .presentacion {
   background-color: #555555b2;
  padding: 20px 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  text-shadow: 4px 4px 10px rgb(0, 0, 0);
}

.presentacion h1 {
  font-size: 100px;
  font-family: 'HighriseFont', Arial, sans-serif;
  margin-bottom: 10px;
 
}

.presentacion p {
  font-size: 20px;
  max-width: 600px;
 
}

/* Bloques generales */
.bloque {
  margin-bottom: 30px;
}

.bloque h2 {
  font-size: 50px;
  font-family: 'HighriseFont', Arial, sans-serif;
  color: #ffb3f3;
  margin-bottom: 10px;
}

.bloque ul {
  list-style: disc;
  padding-left: 20px;
}

/* Columna derecha */
.foto-perfil {
  display: flex;
  justify-content: left;
  margin-bottom: 40px;
}

.foto-perfil img {
  width: 300px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}