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

body {
  background-color: #212121;
  color: white;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  background-color: #212121;
  z-index: 100;
  border-bottom: 1px solid rgba(233, 74, 136, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.5px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  font-size: 14px;
  color: #999;
}

nav a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: white;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.avatar {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 40px;
  box-shadow: 0 0 30px rgba(233, 74, 136, 0.3);
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero h1 .pink {
  color: #4a8fe9;
}

.hero p {
  max-width: 600px;
  color: #999;
  font-size: 16px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.btn {
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
}

.btn-white {
  background-color: white;
  color: black;
}

.btn-white:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 1px solid #555;
}

.btn-outline:hover {
  background-color: #333;
  transform: translateY(-3px);
}

/* SKILLS SECTION */
.skills {
  text-align: center;
  padding: 60px 20px;
}

.section-label {
  font-size: 12px;
  color: #666;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-weight: 600;
}

.skills-icons {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.skill-icon {
  font-size: 40px;
  color: white;
  transition: transform 0.3s ease;
}
.odoo_logo {
  width: 80px;
  object-fit: contain;
  margin-left: -30px;
  transition: transform 0.3s ease;
}
.skill-icon:hover {
  transform: scale(1.15);
}

/* PROJECTS SECTION */
.projects {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.title-underline {
  width: 60px;
  height: 3px;
  background-color: #e94a88;
  margin: 15px auto 40px;
}

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

.project-card {
  background-color: #2c2c2c;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: #4a8fe9;
  box-shadow: 0 20px 40px rgba(74, 146, 233, 0.2);
}

.project-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.project-info {
  padding: 20px;
}

.project-label {
  font-size: 10px;
  color: #666;
  margin-bottom: 10px;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-title {
  font-size: 16px;
  font-weight: 600;
}

.project-arrow {
  font-size: 18px;
  color: #666;
  transition: all 0.3s ease;
}

.project-card:hover .project-arrow {
  color: white;
  transform: translate(5px, -5px);
}

/* EXPERIENCE SECTION */
.experience {
  padding: 80px 20px;
  background-color: #1a1a1a;
}

.underline-blue {
  width: 60px;
  height: 3px;
  background-color: #4a8fe9;
  margin: 15px auto 40px;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #e94a88, #4a8fe9);
}

@media (max-width: 768px) {
  .timeline::before {
    left: 15px;
  }
}

.exp-item {
  margin-bottom: 50px;
  padding-left: 100px;
  position: relative;
}

.exp-dot {
  position: absolute;
  left: 16px;
  top: 5px;
  width: 28px;
  height: 28px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.exp-icon {
  font-size: 16px;
  color: #212121;
}

.exp-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  gap: 10px;
}

.exp-title {
  font-size: 18px;
  font-weight: 600;
}

.exp-period {
  font-size: 12px;
  color: #666;
}

.exp-description {
  color: #999;
  font-size: 14px;
  line-height: 1.8;
}

/* CONTACT SECTION */
.contact {
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid rgba(233, 74, 136, 0.1);
}

.contact h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #999;
  font-size: 14px;
  line-height: 1.8;
}

.contact-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #999;
  margin: 20px 0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.contact-email:hover {
  color: #ffff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.social-icon {
  color: #666;
  font-size: 18px;
  transition: color 0.3s ease;
  cursor: pointer;
}

.social-icon:hover {
  color: white;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  color: #666;
  font-size: 12px;
  border-top: 1px solid rgba(233, 74, 135, 0);
}

#redes {
    position: fixed;
    z-index: 1000000000;
    top: 300px;
    left: 0;
}
#facebook a {
    font-size: 30px;
    color: white;
    background: blue;
    text-decoration: none;
    padding: 10px 15px;
    transition: 0.5s ease-out;
}
#facebook a:hover {
    padding: 10px 20px;
    background: black;
    transition: 0.5s ease-out;
}
#youtube a {
    font-size: 30px;
    color: white;
    background: red;
    text-decoration: none;
    padding: 10px 15px;
    transition: 0.5s ease-out;
}
#youtube a:hover {
    padding: 10px 20px;
    background: black;
    transition: 0.5s ease-out;
}
#instagram a {
    font-size: 30px;
    color: white;
    background: deeppink;
    text-decoration: none;
    padding: 10px 15px;
    transition: 0.5s ease-out;
}
#instagram a:hover {
    padding: 10px 20px;
    background: black;
    transition: 0.5s ease-out;
}
#Twitter a {
    font-size: 30px;
    color: white;
    background: rgb(0, 93, 169);
    text-decoration: none;
    padding: 10px 15px;
    transition: 0.5s ease-out;
}
#Twitter a:hover {
    padding: 10px 20px;
    background: black;
    transition: 0.5s ease-out;
}
#github a {
    font-size: 28px;
    color: white;
    background: rgb(19, 30, 38);
    text-decoration: none;
    padding: 10px 15px;
    transition: 0.5s ease-out;
}
#github a:hover {
    padding: 10px 20px;
    background: black;
    transition: 0.5s ease-out;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    min-height: auto;
  }

  .avatar {
    width: 300px;
    height: 300px;
    object-fit: cover;
    margin-bottom: 30px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
  }

  .skills-icons {
    gap: 30px;
  }

  .projects,
  .experience,
  .contact {
    padding: 60px 20px;
  }

  .exp-item {
    padding-left: 80px;
  }

  .timeline::before {
    left: 15px;
  }

  .exp-dot {
    left: 2px;
  }
}
