@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;600;700&display=swap');

* {
  font-family: 'Ubuntu', sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Ubuntu', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body {
  position: relative;
}

main.sobre {
  flex-grow: 1;
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  padding-bottom: 4rem;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.sobre-texto h2 {
  font-size: 2.8rem;
  color: #f99e61;
  margin-bottom: 1rem;
}

.sobre-texto p {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.6;
  max-width: 600px;
  font-weight: 300;
}

.sobre-texto h3 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  color: #d46b25;
}

.skills-icons {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 0;
}

.skills-icons li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 120px;
  font-size: 0.95rem;
  color: #333;
}

.skills-icons img {
  width: 40px;
  margin-bottom: 0.5rem;
}

.skills-icons span {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.3;
}

.skills-icons span small {
  font-size: 0.75rem;
  font-weight: 600;
}

/* Tonalidades verde agua para niveles */
.nivel-avanzado {
  color: #a3531e;
}

.nivel-intermedio {
  color: #d46b25;
}

.nivel-basico {
  color: #cd7a42;
}

/* Foto */
.sobre-foto {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -40px; /* Este es el ajuste para subir el cuadro */
}

.foto-cuadro {
  width: 500px;
  height: 650px;
  background-color: #57ace4;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.foto-cuadro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  opacity: 1;
  transition: opacity 0.8s ease;
}

/* Bottom nav */
.bottom-nav {
  position: static;
  margin: 2rem auto 1.5rem auto;
  background: #f99e61;
  border-radius: 40px;
  box-shadow: 0 4px 12px #cf8250;
  padding: 0.5rem 1rem;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  max-width: 500px;
}

.bottom-nav .bubble {
  background-color: white;
  color: #f99e61;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 10px #805132;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.bottom-nav .bubble:hover {
  background-color: #57ace4;
  color: white;
  transform: scale(1.05);
}

.footer {
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
  color: #8e8e93;
  background-color: #fff;
  margin-top: auto;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sobre-foto {
    margin: 0 auto;
  }
}
