.banner-foto-juanjo {
    background: url('../Imgs/fotos\ nuevas\ juanjo/baner.png');
    background-size: cover;
    background-position: center - 50px;
    height: 600px; 
    width: 100%;
    
}

.about-me {
    padding: 80px 5%;
    background-color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333333;
}

.about-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: flex-start;
}

/* Lado de la Imagen */
.about-image {
    flex: 1;
    position: sticky; 
    top: 50px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 20px 20px 0px #0B4141; 
    object-fit: cover;
}

/* Lado del Texto */
.about-bio {
    flex: 1.2;
}

.about-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #888888;
    font-weight: bold;
}

.about-bio h1 {
    font-size: 2.8rem;
    margin: 10px 0;
    color: #1a1a1a;
}

.about-separator {
    width: 80px;
    height: 4px;
    background-color: #c0a060; 
    border: none;
    margin-bottom: 30px;
}

/* Párrafos */
.about-paragraphs p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444444;
}

.about-paragraphs strong {
    color: #0B4141; 
}

/* Lista de Principios */
.principles {
    background-color: #f9fbf6;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #c0a060;
}

.principles h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: #0B4141;
}

.principles ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.principles li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    font-weight: 500;
}

.principles li span {
    color: #c0a060;
    font-weight: bold;
}

/* Cita del Libro */
.book-quote {
    margin: 40px 0;
    padding: 20px 40px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
    position: relative;
}

.book-quote p {
    font-style: italic;
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 10px;
}

.book-quote cite {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image img {
        box-shadow: 10px 10px 0px #0B4141;
    }

    .about-bio h1 {
        font-size: 2.2rem;
    }
}

/*KEYWORDS*/

.keywords {
   text-align: center;
   text-decoration: none;
   text-transform: uppercase;
   list-style: none;
   color: rgb(0, 0, 0);
   padding: 20px 0 0 0;
}

.keywords-hr {
   width: 80%;
   margin-left: auto;
   margin-right: auto;
}

.keywords li {
   display: inline-block;
   margin: 10px 15px;
   padding: 10px 20px;
   font-size: large;
   color: rgb(0, 0, 0);
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   position: relative;
   transition: color 0.3s ease;
}

.keywords li:not(.separador)::after {
   content: '';
   position: absolute;
   left: 0;
   bottom: 0;
   height: 2px;
   width: 0;
   background-color: #0B4141;
   transition: width 0.3s;
}

.keywords li:hover::after {
   width: 100%;
}

.estudios-container {
   position: relative;
}

.estudios-container::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   width: 100%;
   height: 100%;
   background-image: url('../Imgs/estanteria.jpg');
   filter: blur(8px);
   opacity: 0.5;
   background-color: rgba(255, 255, 255, 0.1);
   z-index: -1;
   pointer-events: none;
}

.estudios {
   z-index: 1;
   display: flex;
   flex-wrap: wrap;
   gap: 40px;
   padding: 40px;
   background-color: rgba(255, 255, 255, 0.8);
   text-align: center;
   justify-content: center;
   max-width: 1200px;
   margin: 0 auto;
}

.titulo-estudios {
   z-index: 2;
   width: 100%;
   opacity: 1;
   font-size: 32px;
   font-weight: bold;
   text-align: center;
   color: #222;
   margin-bottom: 40px;
}

.estudio {
   z-index: 2;
   width: 250px;
   text-align: center;
   background-color: white;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   padding: 20px;
   border-radius: 10px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   opacity: 1;
}

.estudio:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.estudio h2 {
   font-weight: bold;
   font-size: 18px;
   margin-top: 10px;
   margin-bottom: 10px;
}

.estudio p {
   font-style: italic;
   font-size: 14px;
   color: #555;
}

.img-estudio img {
   width: 80px;
   height: 80px;
   object-fit: contain;
   margin-bottom: 15px;
}

.contacto-AM {
   background-color: #0B4141;
   color: white;
   text-align: center;
   text-transform: uppercase;
   height: 60px;
   width: 200px;
   border: none;
   border-radius: 10px;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 16px;
   font-weight: bold;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   margin: 0 auto;
}

.contacto-AM:hover {
   transform: scale(1.05);
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}