* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 60px 20px 30px;
  background: #fff;
}

.logo {
  font-size: 3rem;
  letter-spacing: 4px;
  font-weight: 300;
}

.tagline {
  color: #777;
  margin-top: 10px;
  font-size: 0.9rem;
}

nav {
  margin-top: 30px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

nav a {
  margin: 0 20px;
  text-decoration: none;
  color: #333;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.container {
  max-width: 1100px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  padding: 0 20px;
}

article time {
  font-size: 0.8rem;
  color: #999;
  letter-spacing: 2px;
}

article h1 {
  margin: 15px 0 20px;
  font-weight: 400;
}

article img {
  width: 70%;
  margin: 30px 0;
}

article p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #555;
}

aside {
  text-align: start;
  color: #666;
}

aside h3 {
    font-weight: 100;
    font-size: 0.85rem;
}

.profile-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 20px;
}

.welcome-text {
  font-size: 0.85rem;
  font-weight: 100;
  color: #666;
  margin-bottom: 20px;
}






.social-links {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  color: #fff;
}

.instagram:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.whatsapp {
  background: #25D366;
  color: #fff;
}

.whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}






.contact-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  margin-top: 60px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  margin: 10px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

footer {
  text-align: center;
  padding: 40px 20px;
  background: #111;
  color: #fff;
  margin-top: 60px;
}

footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-size: 0.8rem;
  letter-spacing: 2px;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}


/* Telas grandes (1920px+) */
@media (min-width: 1920px) {

  body {
    font-size: 18px;
    margin-top: 30px;
  }

  nav a {
    font-size: 1.3rem;
  }

  .logo {
    font-size: 4.3rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

  .container {
    max-width: 1600px;
  }

  .container article p {
    font-size: 1.4rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  p {
    font-size: 1.4rem;
  }

  aside {
    font-size: 1.1rem;
  }

}


@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 490px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }

    .container {
        margin-top: 0;
    }

    article img {
      width: 100%;
    }
}
