* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background-color: #bd4d65;
  color: white;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  background-color: #d67eb9;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #e0cacb;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #d6b8ba;
}

/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 5rem 3rem;
  min-height: 90vh;
}

.hero-image .circle {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #d3cece, #000000);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-text h1 span {
  color: #fff1f2;
}

.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-text .highlight {
  color: #000000;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ffffff;
}

.social-icons a img {
  width: 80px;
  margin-right: 1rem;
  filter: brightness(0) invert(1);
  transition: 0.3s;
  height: 50%;
  
}

.social-icons a:hover img {
  filter: brightness(0) invert(0.6);
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.6rem;
  background-color: #c73d8d;
  color: rgb(20, 16, 16);
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
  border-color: #000000;
}
footer {
  background: var(--primario);
  
  text-align: center;
  padding: 20px;
}
