:root {
  --fondo: #111;
  --texto: #f0f0f0;
  --violeta: #a66cff;
  --violeta-hover: #cfa8ff;
  --gris-suave: #222;

  --fondo-inicio: linear-gradient(180deg, #0d0d0d 0%, #1a0b2e 100%);
  --color-titulo: #d7b3ff;
  --color-frase: #e0caff;
  --color-cursor: #8c00ff;
  --color-btn: #c084fc;
  --color-btn-hover: #0d0d0d;

  --fondo-card: rgba(17, 17, 17, 0.45); /* fondo oscuro con opacidad */
}

body.dark {
  --fondo: #eee;
  --texto: #111;
  --violeta: #7c3aed;
  --violeta-hover: #9f6ff9;
  --gris-suave: #ddd;

  --fondo-inicio: linear-gradient(180deg, #fdfdfd 0%, #d6c9ff 100%);
  --color-titulo: #5b00b3;
  --color-frase: #6b3fcf;
  --color-cursor: #4c00a4;
  --color-btn: #7c3aed;
  --color-btn-hover: #fff;

  --fondo-card: rgba(255, 255, 255, 0.45); /* fondo claro con opacidad */
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#proyectos,
#experiencia,
#sobre-mi,
#contacto {
  scroll-margin-top: 20px;
}

body {
  font-family: 'Space Grotesk', sans-serif;
}

body, .header, #inicio {
  transition: background-color 0.4s ease, color 0.4s ease, filter 0.4s ease;
}

.info-izquierda h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
}

/* HEADER */
/* Estilo general del header fijo */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--violeta);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Fondo en modo oscuro */
body.dark .header {
  background-color: rgba(255, 255, 255, 0.45);
}

/* Fondo en modo claro */
body:not(.dark) .header {
  background-color: rgba(0, 0, 0, 0.7);
}


.header {
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.7); /* modo dark base */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}


.header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
} 

.logo code {
  margin-right: 40px;
  font-size: 1.5rem;
  font-family: 'Courier New', monospace;
  font-weight: 800; /* Más grueso */
  color: var(--violeta);
  text-shadow: 0 0 4px rgba(166, 108, 255, 0.4); /* efecto glow sutil */
}
body.dark .logo code {
  text-shadow: 0 0 5px rgba(166, 108, 255, 0.5);
}
body:not(.dark) .logo code {
  text-shadow: none;
}

.logo a {
  text-decoration: none;
  color: var(--violeta);
}

.logo a:hover {
  color: var(--violeta-hover);
}

.nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

.nav a {
  padding: 0 8px;
  color: var(--texto);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.nav a:hover {
  color: var(--violeta);
  transform: translateY(-3px);
}

.modo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--violeta);
  border-radius: 8px;
  background: transparent;
  color: var(--violeta);
  cursor: pointer;
  transition: all 0.3s;
}

.modo-btn svg {
  width: 24px;
  height: 24px;
  display: block;
  margin: 0 auto;
}

.modo-btn svg path {
  transform: translateX(-2px) translateY(2px);
}

.modo-btn:hover {
  background-color: var(--violeta);
  color: var(--color-btn-hover);
}

/* RESPONSIVE NAV */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
}

/* INICIO */
#inicio {
  min-height: 100vh; /* en lugar de height: 100vh */
  padding: 80px 5vw 0;
  background: var(--fondo-inicio);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--texto);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}



.container-inicio {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}


@media (min-width: 992px) {
  .container-inicio {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
  }
}

.info-izquierda {
  flex: 1;
}

.info-izquierda h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--color-titulo);
}

/* Frase animada */
#frase-animada {
  font-size: 1.4rem;
  color: var(--color-frase);
  margin-bottom: 30px;
  max-width: 500px;
  width: 100%;
  height: 2.2em;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  display: block;
}

#texto {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
}

.cursor {
  display: inline-block;
  color: var(--color-cursor);
  font-weight: bold;
  animation: blink 1.5s infinite;
  transform: translateY(-7px);
}

@keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.btn-proyectos {
  padding: 12px 24px;
  font-size: 1rem;
  background-color: transparent;
  color: var(--color-btn);
  border: 2px solid var(--color-btn);
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-proyectos:hover {
  background-color: var(--color-btn);
  color: var(--color-btn-hover);
}

.redes-inicio {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.foto-derecha img {
  max-width: 480px;
  border-radius: 25px;
}


body.dark .modo-btn svg {
  fill: currentColor; /* para que el sol se vea lleno en modo dark */
}

.modo-btn svg path,
.modo-btn svg circle,
.modo-btn svg line {
  transition: all 0.3s ease;
}

@keyframes rotar-sol {
  0% {
    transform: rotate(0deg) scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }
}

@keyframes rotar-luna {
  0% {
    transform: rotate(180deg) scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
}

.rotate-sun {
  animation: rotar-sol 0.4s ease forwards;
}
.rotate-moon {
  animation: rotar-luna 0.4s ease forwards;
}


/* REDES INICIO — ESTILOS ACTUALIZADOS */
.redes-inicio {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.icono-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, color 0.3s ease;
  color: var(--color-btn); /* Se hereda en el fill de SVG */
}

.icono-red {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: transform 0.3s ease, fill 0.3s ease, filter 0.3s ease;
}


.icono-link:hover {
  transform: scale(1.2) translateY(-3px);
  color: var(--color-btn-hover);
  filter: drop-shadow(0 0 16px currentColor); /* agrega glow dinámico */
}


/* MODO OSCURO y CLARO — el color se adapta */
body.dark .icono-link {
  color: var(--color-btn); /* Rosa pastel */
}

body:not(.dark) .icono-link {
  color: var(--color-btn); /* Violeta fuerte (ya está adaptado por variables) */
}



/* Botón con SVG embebido */
.btn-proyectos {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 1rem;
  background-color: transparent;
  color: var(--color-btn);
  border: 2px solid var(--color-btn);
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-proyectos:hover {
  background-color: var(--color-btn);
  color: var(--color-btn-hover);
}

.btn-proyectos .icono-proyectos {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-proyectos:hover .icono-proyectos {
  transform: translateX(4px);
}

.btn-proyectos svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  vertical-align: middle;
}

.btn-proyectos svg {
  transform: translateY(1px); /* ajuste fino */
}

.botones-inicio {
  display: flex;
  gap: 16px; /* separá a gusto */
  flex-wrap: wrap; /* por si en mobile se ajusta */
  margin-bottom: 20px;
}

/* SECCIÓN PROYECTOS */
#proyectos {
  padding: 120px 0;
  background: var(--fondo-inicio);
  color: var(--texto);
}

#proyectos .container-inicio {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.titulo-seccion {
  font-size: 2.8rem;
  color: var(--color-titulo);
  text-align: left;
  font-family: 'DM Serif Display', serif;
}

.proyecto-card-horizontal {
  display: flex;
  align-items: stretch;
  background-color: var(--fondo-card);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.3s;
  width: 100%;
  max-width: 1050px;
  min-height: 300px;
  margin: 0 auto 10px auto;
}

.proyecto-card-horizontal:hover {
  transform: translateY(-5px);
}

.info-proyecto {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.titulo-proyecto {
  font-size: 2rem;
  color: var(--color-titulo);
}

.descripcion-proyecto {
  font-size: 1rem;
  color: var(--texto);
}

.etiquetas span {
  display: inline-block;
  background-color: var(--color-btn);
  color: var(--color-btn-hover);
  padding: 6px 12px;
  margin: 0 6px 6px 0;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.botones-proyecto {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.btn-codigo{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}


.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  padding-right: 6px;
  font-size: 0.95rem;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-codigo {
  background-color: var(--color-btn);
  color: var(--color-btn-hover);
}

.btn-codigo:hover {
  background-color: var(--color-btn-hover);
  color: var(--color-btn);
}

.btn-demo {
  border: 2px solid var(--color-btn);
  color: var(--color-btn);
}

.btn-demo:hover {
  background-color: var(--color-btn);
  color: var(--color-btn-hover);
}

.icon-github {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* FLECHITA ↗ */
.icon-link {
  width: 22px;
  height: 22px;
  margin-left: 6px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  vertical-align: middle;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
  transform: translate(-10px, 4px);
}

.btn-demo:hover .icon-link {
  transform: translate(-5px, -1px) scale(1.15);
  opacity: 1;
}

.imagen-proyecto {
  flex: 1;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagen-proyecto img {
  max-width: 100%;
  max-height: 280px;
  border-radius: 18px;
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
  object-fit: cover;
}

.cta-proyectos {
  text-align: center;
  margin-top: 60px;
}

.btn-proyectos-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  padding-right: 16px;
  background-color: var(--color-btn);
  color: var(--color-btn-hover);
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.btn-proyectos-cta:hover {
  transform: scale(1.05);
  background-color: var(--color-btn-hover);
  color: var(--color-btn);
}

.icon-cta {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  transition: transform 0.3s ease;
  stroke-width: 2.4;
  transform: translateY(4px) translateX(-4px); /* 🧩 ¡Este es el truco! */

}


.btn-proyectos-cta:hover .icon-cta {
  transform: translateX(2px);
}


/* Footer realizado */
.footer {
  background-color: var(--fondo);
  padding: 20px 10px;
  border-top: 1px solid var(--violeta);
}

.footer-content {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--texto);
}

.footer-content p {
  margin: 0;
  font-weight: 500;
}

.footer-redes {
  display: flex;
  gap: 20px;
}

.footer .icono-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.footer .icono-red {
  width: 22px;
  height: 22px;
  color: var(--color-btn); /* ✅ se mantiene el color desde CSS */
  transition: fill 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

/* Glow más suave y elegante */
.footer .icono-link:hover .icono-red {
  fill: var(--color-btn-hover);
  filter: drop-shadow(0 0 1px var(--color-btn-hover));
  transform: scale(1.1);
}

/* Experiencia */

#experiencia {
  background: var(--fondo-inicio);
  padding: 100px 20px;
  color: var(--texto);
  text-align: center;
}

.titulo-seccion {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: var(--color-titulo);
  font-family: 'DM Serif Display', serif;
}


.botones-experiencia {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.btn-exp {
  padding: 10px 24px;
  font-weight: bold;
  border-radius: 20px;
  background: transparent;
  border: 2px solid var(--violeta);
  color: var(--violeta);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-exp.activo,
.btn-exp:hover {
  background: var(--violeta);
  color: var(--color-btn-hover);
}

.timeline {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
  padding-left: 40px; /* Espacio para la línea */
}

.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--violeta);
  z-index: 0;
}



.exp-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 60px;
  text-align: left;
}

.punto-linea {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  background: var(--violeta);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--violeta);
  margin-top: 0px;
  margin-left: -24.5px; /* Alineado con la línea */
}


.exp-contenido {
  background: var(--fondo-card);
  padding: 10px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  flex: 1;
}

.exp-info h3 {
  font-size: 1.4rem;
  color: var(--violeta);
  margin-bottom: 5px;
}

.exp-info .lugar {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--texto);
  margin-bottom: 15px;
}

.exp-desc p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.oculto {
  display: none;
}

.exp-item:last-of-type .punto-linea::before {
  display: none;
}

.exp-contenido {
  background: var(--fondo-card);
  padding: 24px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.exp-col-izq {
  min-width: 220px;
  max-width: 260px;
}

.exp-col-der {
  flex: 1;
}

.exp-puesto {
  font-size: 1.3rem;
  color: var(--violeta);
  font-weight: 700;
  margin-bottom: 8px;
}

.exp-empresa {
  font-weight: 600;
  color: var(--texto);
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.exp-fecha {
  font-size: 0.9rem;
  color: var(--texto);
  opacity: 0.8;
}

.exp-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--texto);
}

.exp-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.2s ease-in-out;
}

.exp-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SOBRE MI */

#sobre-mi {
  background: var(--fondo-inicio);
  padding: 100px 20px;
  color: var(--texto);
}

.sobre-mi-titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-family: 'DM Serif Display', serif;
  color: var(--color-titulo);
}

.icono-sobre-mi {
  stroke: var(--violeta);
  width: 32px;
  height: 32px;
}

.sobre-mi-container {
  display: flex;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.texto-sobre-mi {
  flex: 1;
  font-size: 1rem;
  line-height: 1.7;
  text-align: left;
  min-width: 300px;
}

.texto-sobre-mi p {
  margin-bottom: 20px;
}

.texto-sobre-mi strong {
  color: var(--violeta);
  font-weight: 600;
}

.foto-sobre-mi {
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(166, 108, 255, 0.3);
}

.foto-sobre-mi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*contacto*/

#contacto {
  background: var(--fondo-inicio);
  padding: 100px 20px;
  color: var(--texto);
  text-align: center;
}

#contacto h2 {
  font-size: 2.6rem;
  color: var(--color-titulo);
  margin-bottom: 40px;
  font-family: 'DM Serif Display', serif;
}

#contacto form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contacto input,
#contacto textarea {
  padding: 14px 16px;
  border: none;
  border-radius: 12px;
  background-color: var(--gris-suave);
  color: var(--texto);
  font-size: 1rem;
  resize: none;
  transition: box-shadow 0.3s ease;
}

#contacto input::placeholder,
#contacto textarea::placeholder {
  color: #aaa;
}

#contacto input:focus,
#contacto textarea:focus {
  outline: none;
  box-shadow: 0 0 8px var(--violeta);
}

#contacto button {
  padding: 12px;
  background: var(--color-btn);
  color: var(--color-btn-hover);
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#contacto button:hover {
  background: var(--violeta-hover);
  color: var(--fondo);
}

.formulario-contacto {
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.formulario-contacto input,
.formulario-contacto textarea {
  padding: 12px 18px;
  border: 2px solid var(--violeta);
  border-radius: 12px;
  background: transparent;
  color: var(--texto);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.formulario-contacto input::placeholder,
.formulario-contacto textarea::placeholder {
  color: var(--violeta-hover);
  opacity: 0.8;
}

.formulario-contacto input:focus,
.formulario-contacto textarea:focus {
  outline: none;
  border-color: var(--violeta-hover);
  box-shadow: 0 0 12px var(--violeta-hover);
}

.formulario-contacto textarea {
  min-height: 150px;
  resize: vertical;
}

.formulario-contacto button {
  background: var(--violeta);
  color: var(--color-btn-hover);
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}

.formulario-contacto button:hover {
  background: var(--violeta-hover);
  box-shadow: 0 0 12px var(--violeta-hover);
}

.redes-contacto {
  margin-top: 30px;
}

.redes-contacto p {
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--color-titulo);
}

.redes-enlaces {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.redes-enlaces a {
  color: var(--violeta);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.redes-enlaces a:hover {
  color: var(--violeta-hover);
  text-shadow: 0 0 8px var(--violeta-hover);
}

/* RESPONSIVE */

/* Responsive: Tablets (max-width: 992px) */
@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
    flex-direction: row;  /* ✅ vuelve a fila */
    justify-content: space-between; /* ✅ logo izq, botón der */
    align-items: center;
  }

  .nav-wrapper {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }

  .nav {
    display: none; /* menu oculto (si usás hamburguesa lo activás con JS) */
  }

  #inicio {
    min-height: 120dvh; /* 100% del viewport visible, más compatible que 100vh */
    padding-top: 100px; /* ✅ compensa el header fijo */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  

  .container-inicio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info-izquierda h2 {
    font-size: 2.5rem;
  }

  #frase-animada {
    font-size: 1.2rem;
    height: auto;
    white-space: normal;
  }

  .botones-inicio {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .redes-inicio {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .foto-derecha img {
    max-width: 80%;
    height: auto;
    margin-top: 30px;
  }

  /* PROYECTOS */
  .proyecto-card-horizontal {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
  }

  .info-proyecto {
    padding: 20px;
    align-items: center;
  }

  .imagen-proyecto {
    padding: 20px 0;
  }

  .botones-proyecto {
    flex-direction: row;  /* ✅ mantiene GITHUB y DEMO uno al lado del otro */
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .etiquetas {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* EXPERIENCIA */
  .exp-contenido {
    flex-direction: column;
    gap: 20px;
  }

  .exp-col-izq,
  .exp-col-der {
    max-width: 100%;
  }

  /* SOBRE MÍ */
  .sobre-mi-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .texto-sobre-mi {
    text-align: center;
  }

  .foto-sobre-mi {
    width: 200px;
    height: 200px;
  }

  /* CONTACTO */
  .redes-enlaces {
    justify-content: center;
  }

  /* FOOTER */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

