@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,500;1,500&display=swap');



* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    scroll-behavior: smooth !important;
    font-family: "Feather Bold", "sans-serif";
}

html {
    scroll-behavior: smooth !important;
}

img {
    width: 100%;
    display: flex;
    height: 100%;
}

a {
    text-decoration: none;
}

body {
    /* font-family: 'Roboto Condensed', sans-serif; */
    background-color: #001E1A;
    scrollbar-color: #10D589 #001E1A !important;
    overflow-y: scroll;

}

nav {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    max-width: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-left: 35px;
    transition: transform 0.3s;
    font-size: 19px;
}


.nav-links a i {
    margin-right: 8px;
    color: #10D589;
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-links a:hover i {
    transform: scale(1.3);
    color: #0a7049;
}


#tsparticles {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #001E1A; /* fondo oscuro */
}


header .content h1,
header .content span {
    text-shadow: 0 0 10px rgba(16, 213, 137, 0.5);
    transition: text-shadow 0.4s ease;
}

header .content h1:hover,
header .content span:hover {
    text-shadow: 0 0 20px #10D589, 0 0 30px #10D589;
}




.link a, .link-inicio a, .link-contacto a {
    position: relative;
    padding-bottom: 0.75rem;
    color: #fff;
}

.link a::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: #10D589;
    transition: width 0.3s ease;
}

.link-inicio a::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: #10D589;
    transition: width 0.3s ease;
}

.link-contacto a::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: #10D589;
    transition: width 0.3s ease;
}

.link a:hover::after {
    width: 70%;
}

.link-inicio a:hover::after {
    width: 70%;
}

.link-contacto a:hover::after {
    width: 70%;
    
}


.link, .link-inicio, .link-contacto {
    transition: 0.3s ease;
}

.link:hover {
    transform: scale(1.1) translateY(-0.2px);
    text-shadow: 1px 2px 15px #10D589;
    font-weight: bolder;
}

.link-inicio:hover {
    transform: scale(1.1) translateY(-0.2px);
    text-shadow: 1px 2px 15px #10D589;
    font-weight: bolder;
}

.link-contacto:hover {
    transform: scale(1.1) translateY(-0.2px);
    text-shadow: 1px 2px 15px #10D589;
    font-weight: bolder;
}

.btn {
    /* padding: 1rem 2rem;
    font-size: 1rem;
    color: #001E1A;
    font-weight: bolder;
    background-color: #10D589;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease; */


    position: relative;
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #001E1A;
    background-color: #10D589;
    font-weight: bolder;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(16, 213, 137, 0.4);
}


.btn::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle, #10D589 0%, transparent 70%);
    transform: scale(0);
    opacity: 0.5;
    transition: transform 0.4s, opacity 0.4s;
}

.btn:hover::before {
    transform: scale(2.5);
    opacity: 0;
}



.floating-card {
  position: absolute;
  padding: 1rem 1.4rem;
  font-weight: bold;
  color: #001E1A;
  background-color: #10D589;
  border-radius: 20px;
  font-size: 1rem;
  box-shadow: 0 0 20px #10D589;
  animation: float 4s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  z-index: 2;
}

/* Posiciones fijas sobre la imagen */
.autodidacta-card {
  top: 10%;
  left: 68%;
}

.curioso-card {
  bottom: 15%;
  left: 70%;
}

.creativo-card {
  top: 45%;
  right: 75%;
}

/* Animación de flotación vertical */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Efecto hover interactivo */
.floating-card:hover {
  transform: scale(1.2) rotateY(15deg) translateY(-5px);
  box-shadow: 0 0 30px #0afc9a, 0 0 40px #0afc9a;
  background-color: #0afc9a;
}





header .content, header .image {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

header .image {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


header .image::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 213, 137, 0.3) 20%, transparent 70%);
    animation: pulse 3s infinite ease-in-out;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}





.btn:hover {
    background-color: #0a7049;
    transform: scale(1.1) translateY(-0.3px);
    color: #ccc;
    
}

nav button:hover {
    font-weight: bolder;
    font-size: 1.2rem;
    transform: scale(1.2) translateY(-0.3px);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 1rem 2rem;
}

.blur {
    position: absolute;
    box-shadow: 0 0 1000px 50px #10D589;
    z-index: -100;
}

header {
    position: relative;
    padding-top: 2rem;
    /* display: grid;
    grid-template-columns: repeat(2, 1fr); */
    align-items: center;
    /* gap: 2rem; */
}

header .content h1 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 4rem;
}

header .content h1 span {
    padding-left: 9px;
    -webkit-text-stroke: 1px #fff;
    font-family: Georgia, 'Times New Roman', Times, serif;
}


header .content p {
    margin-bottom: 2rem;
    color: #ccc;
    font-size: 22px;
    letter-spacing: 1px;
    word-spacing: 5px;
    line-height: 1.5
}

header .image {
    position: relative;
}

header .image::before {

}

header .image img {
    max-width: 400px;
    margin: auto;
    transition: 0.3s ease;
    filter: drop-shadow(
        0 0 40px #10D589);

}

header .image img:hover {
    transform: scale(1.1) translateY(-0.3px);
    cursor: pointer;
}

.socials {
    margin-top: 3rem;
}



.socials a {
    color: #10D589;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: transparent;
    border: 0.2rem solid #0a7049;
    font-size: 2rem;
    border-radius: 50%;
    transition: 0.3s ease;
    margin: 0.3rem 0.8rem;
}


.socials a:hover {
    color: #0a7049;
    transform: scale(1.3) translateY(-5px);
    background-color: #10D589;
    box-shadow: 0 0 25px #0a7049;
}

.typing-text {
    position: relative;
}

.typing-text::before {
    content: 'Frontend Developer';
    color: #10D589;
    animation: words 10s infinite;
    font-size: 2.7rem;
}

.typing-text::after {
    content: "";
    background-color: #001E1A;
    position: absolute;
    height: 100%;
    border-left: 3px solid black;
    right: -8;
    animation: cursor 0.6s infinite;
}

@keyframes cursor {
    to {
        border-left: 3px solid #10D589;
    }
}

@keyframes words {

    0%, 20% {
        content: "Frontend Developer";
    }

    21%, 40% {
        content: "Backend developer";
    }

    41%, 60% {
        content: "Web Designer";
    }

    61%, 80% {
        content: "Pentester";
    }

    81%, 100% {
        content: "Flutter Developer";
    }
}

/* Skills Section */

.skills {
  padding: 80px 10%;
  background-color: transparent;
  color: #001E1A;
}



/* Colores para el aurora adaptados a tu paleta */
:root {
  --aurora-color-1: #10D589;  /* verde acento que ya usas */
  --aurora-color-2: #0f5c46;  /* verde más oscuro */
  --aurora-color-3: #002f3e;  /* casi azul oscuro para variar */
  --aurora-color-4: #00665e;  /* otro verde/azul intermedio */
}

.skills-title {
  position: relative;
  padding: 3rem 2rem;
  border-radius: 16px;
  overflow: hidden;
  color: #FFFFFF;
  background-color: rgba(0, 30, 26, 0.8); /* fondo base algo semitransparente oscuro para contraste */
  z-index: 1;

  text-align: center;
  margin-bottom: 40px;
}

.skills-title::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    var(--aurora-color-1),
    var(--aurora-color-2),
    var(--aurora-color-3),
    var(--aurora-color-4),
    var(--aurora-color-1)
  );
  background-size: 600% 600%; /* alargar la “ruta” del fondo para que se vea movimiento */
  filter: blur(100px);
  opacity: 0.5;
  animation: auroraMove 10s ease infinite;
  z-index: 0;
}

@keyframes auroraMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.skills-title::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  z-index: 2;
}

.skills-title > * {
  position: relative;
  z-index: 3;
}








.skills-title h2 {
  font-size: 2.8rem;
  font-weight: bold;
  color: white;
}

.skills-title .subtitle {
  font-size: 1.3rem;
  color: #ccc;
  margin-top: 8px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 60px;
  justify-items: center;
}

.skill-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  padding: 20px 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  cursor: default;
}

.skill-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: transform 0.4s ease;
}

.skill-card p {
  font-weight: 600;
  font-size: 1rem;
  color: #222;
}

.skill-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.skill-card:hover img {
  transform: scale(1.1);
}

/* Tooltip Custom */
.skill-card::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #10D589;
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.skill-card:hover::after {
  opacity: 1;
}



hr {
    color: #10D589;
    border: revert;
    margin: 0 200px;
    opacity: 0.3;
}


:root {
  --bg: #001E1A;
  --card-bg: #1e2023;
  --accent: #10D589;
  --text-light: #ccc;
  --text-dark: #fff;
  --shadow-glow: rgba(16,213,137,0.25);
}

.projects {
  background-color: var(--bg);
  padding: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.title-projects h1 {
  color: var(--accent);
  font-size: 2.8rem;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}



.enhanced-projects-header {
  text-align: center;
  margin-bottom: 0;
  position: relative;
}

.glow-title {
  font-size: 3rem;
  color: var(--accent);
  text-shadow: 0 0 8px rgba(16, 213, 137, 0.6), 0 0 16px rgba(16, 213, 137, 0.3);
  animation: glow-fade 2.5s ease-in-out infinite alternate;
  position: relative;
  display: inline-block;
}

.glow-title i {
  margin-right: 10px;
}

@keyframes glow-fade {
  from {
    text-shadow: 0 0 8px rgba(16, 213, 137, 0.4), 0 0 14px rgba(16, 213, 137, 0.2);
  }
  to {
    text-shadow: 0 0 14px rgba(16, 213, 137, 0.8), 0 0 30px rgba(16, 213, 137, 0.4);
  }
}

.subtitle {
  color: var(--text-light);
  font-size: 1.4rem;
  margin-top: 10px;
}

.subtitle span {
  color: var(--accent);
  font-weight: 600;
}

/* LÍNEAS ANIMADAS */
.animated-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  animation: move-glow 3s infinite linear;
  opacity: 0.3;
}

@keyframes move-glow {
  0% {
    background-position: -500px;
  }
  100% {
    background-position: 500px;
  }
}

.top-line {
  margin-bottom: 10px;
}
.bottom-line {
  margin-top: 10px;
}










.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--card-bg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.project-card.featured {
  grid-column: span 2;
}

.project-image {
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.75) 100%);
  opacity: 0;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: opacity 0.4s ease;
}

.project-card:hover .overlay {
  opacity: 1;
}

.overlay h2 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--accent);
}

.overlay p {
  margin: 10px 0;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.4;
}

.overlay .links {
  margin-top: 10px;
}

.overlay .btn, .overlay .btn-outline {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.overlay .btn {
  background-color: var(--accent);
  color: var(--bg);
}

.overlay .btn:hover {
  background-color: #0da56b;
}

.overlay .btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.overlay .btn-outline:hover {
  background-color: var(--accent);
  color: var(--bg);
}

.placeholder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  font-size: 4rem;
  color: var(--accent);
}

/* Responsividad */

@media (max-width: 768px) {
    .projects-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-content h3 {
        font-size: 1.3rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }

    .tech-tags span {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    .card-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .card-links .btn,
    .card-links .btn-outline {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
  .title-projects h1 {
    font-size: 2.2rem;
  }
  .overlay h2 {
    font-size: 1.5rem;
  }
  .overlay p {
    font-size: 0.9rem;
  }
}

.toggle-menu {
    display: none;
}



/* Para todo el scrollbar de la página */
::-webkit-scrollbar {
  width: 26px; /* Ancho del scrollbar vertical */
  height: 10px; /* Alto del scrollbar horizontal */
}

/* El fondo del scrollbar */
::-webkit-scrollbar-track {
  background: #1e2023; /* Color de fondo del track (pista) */
  border-radius: 10px; /* Bordes redondeados del track */
}

/* El "pulgar" o la barra que se mueve */
::-webkit-scrollbar-thumb {
  background: #10D589; /* Color de la barra (thumb) */
  border-radius: 10px; /* Bordes redondeados de la barra */
}

/* Al pasar el mouse sobre la barra */
::-webkit-scrollbar-thumb:hover {
  background: #0da56b; /* Color de la barra al pasar el mouse */
  transition: 0.3s ease;
  width: 25px;
}


.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem auto;
}

.project-card {
    background: rgba(30, 32, 34, 0.8);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(16, 213, 137, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 213, 137, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 213, 137, 0.3);
}

.card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    color: #10D589;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 1.3rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tags span {
    background: linear-gradient(135deg, #10D589, #0a7049);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.tech-tags span:hover {
    transform: scale(1.1);
}

.card-links {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.card-links .btn,
.card-links .btn-outline {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn {
    background: #10D589;
    color: #001E1A;
}

.btn:hover {
    background: #0a7049;
    color: #fff;
    box-shadow: 0 0 15px rgba(16, 213, 137, 0.5);
}

.btn-outline {
    border: 2px solid #10D589;
    color: #10D589;
    background: transparent;
}

.btn-outline:hover {
    background: #10D589;
    color: #001E1A;
    box-shadow: 0 0 15px rgba(16, 213, 137, 0.5);
}



.footer {
  background-color: #001E1A;
  color: var(--text-light);
  padding: 60px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 40px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-left h2 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.footer-copy {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.6;
}

.footer-center ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 10px 0;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-right p {
  margin-bottom: 10px;
}

.social-icons a {
  margin-right: 15px;
  font-size: 1.5rem;
  color: var(--text-light);
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    margin-bottom: 20px;
  }

  .social-icons a {
    margin-right: 10px;
  }
}







@media (width < 1253px) {
    header .content h1 {
        font-size: 2.6rem;
    }

    .socialize, .socialis, .chatbot {
        margin: 35px 150px;
    }
}


@media (width < 883px) {
    header .content h1 {
        font-size: 2.2rem
    }

    .socialize, .socialis, .chatbot {
        margin: 35px 50px;
    }

    .chatbot {
        margin-bottom: 170px;
    }

    .skills {
        margin: 0;
    }
}

@media (width < 754px) {
    .socialize p, .socialis p, .chatbot p {
        padding: 5px 60px;
    }

    .nav-links-div {
        display: none;
        transition: transform 0.3s;
    }

    .nav-links {
        list-style: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        gap: 3rem;
        margin: 0;
        padding: 50px;
        transition: transform 0.3s;
    }

    .nav-links-div--show {
        display: block;
        transition: transform 0.3s;
        margin-left: 0;
        z-index: 1;
        align-items: center;
        background-color: #10D589;
        border-radius: 30px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        position: absolute;
        top: 8rem;
        
    }

    .nav-links--show {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        position: absolute;
        top: 1rem;
        transition: transform 0.3s;
    }

    header .content h1 {
        font-size: 2rem;
        width: 100%;
    }

    .typing-text::before {
        font-size: 2rem;
    }

    .typing-text::after {
        font-size: 2rem;
    }

    .content-skills {
        justify-content: space-between;
        flex-direction: column;
        gap: 3rem;
    }


    .link a{
        color: #001E1A;
        
    }

    .link-inicio {
        padding-top: 20px;
    }

    .link-contacto {
        padding-bottom: 20px;
    }

    .link-inicio a, .link-contacto a {
        color: #001E1A;
    }

    .link-inicio a::after {
        background-color: #001E1A;
    }

    .link-contacto a::after {
        background-color: #001E1A;
    }

    .link a::after {
        background-color: #001E1A;
    }

    .toggle-menu {
        display: block;
        cursor: pointer;
        width: 80px;
    }

    .toggle-menu img {
        max-width: 100%;
    }   
}


@media (width < 678px) {
    .container {
        display: block;
        text-align: center;
    }

    .projects-gallery {
        display: flex !important;
        gap: 40px;
        flex-direction: column;
    }

    .card-overlay2 {
        height: auto !important;
    }

    .card-overlay4 {
        height: auto !important;
    }

    



    .content {
        padding-bottom: 60px
    }

    .socials {
        padding: 90px 0;
        display: flex;
        justify-content: space-evenly;
    }
}


@media (width < 560px) {
    .socialis-img img {
        width: 19pc;
        height: 10pc;
    }

    .socialize-img img {
        width: 19pc;
        height: 10pc;
    }

    .socialize, .socialis, .chatbot {
        margin: 35px 12px;
    }

    .title-skills h1 {
        font-size: 2rem;
    }

    header .image img {
        max-width: 300px;
    }
}

@media (width < 447px) {
    .title-skills {
        margin: 80px 30px;
    }

    .title-skills h1 {
        font-size: 1.4rem;
    }

    .socialis-img img {
        width: 17pc;
        height: 9pc;
    }

    .socialize-img img {
        width: 17pc;
        height: 9pc;
    }

    header .content h1 {
        content: "Hola, soy Estiguar";
    }
}