/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* VARIABLES */
:root {
  --primary: #22c55e;
  --dark: #020617;
  --glass: rgba(255, 255, 255, 0.08);
  --blur: blur(10px);
}

/* BODY */
body {
  background: linear-gradient(135deg, #020617, #022c22);
  color: white;
}

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

/* NAV */
.header {
  backdrop-filter: var(--blur);
  background: rgba(0,0,0,0.4);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  color: var(--primary);
  font-weight: 700;
}

.btn-back {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.btn-back:hover {
  color: var(--primary);
}

/* LAYOUT */
.info {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

/* MAIN CONTENT */
.main-content {
  flex: 2;
}

.main-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.main-content p {
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.6;
}

.main-img {
  width: 100%;
  border-radius: 20px;
  margin-top: 20px;
  transition: 0.3s;
}

.main-img:hover {
  transform: scale(1.02);
}

/* SIDEBAR */
.sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARDS */
.card {
  background: var(--glass);
  backdrop-filter: var(--blur);
  padding: 20px;
  border-radius: 20px;
  transition: 0.3s;
}

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

/* TEXT */
.card h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

.card p {
  opacity: 0.8;
}

.card ul {
  margin-top: 10px;
}

.card li {
  margin-bottom: 5px;
}

/* IMAGES */
.images {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.images img {
  width: 60px;
  border-radius: 10px;
  transition: 0.3s;
}

.images img:hover {
  transform: scale(1.1);
}

/* FOOTER */
.footer {
  margin-top: 80px;
  background: var(--dark);
  padding: 40px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer h3 {
  color: var(--primary);
}

.socials a {
  margin-right: 10px;
  color: white;
  transition: 0.3s;
}

.socials a:hover {
  color: var(--primary);
}

.copy {
  text-align: center;
  margin-top: 20px;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .info {
    flex-direction: column;
  }
}