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

/* Cores principais */
:root {
  --primary: #8af3ff;
  --secondary: #f7f0f0;
  --tertiary: #fffbfa;
  --dark: #222;
  --gray: #555;
}

/* Navbar */
.header {
  background: #0d1b2a;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-menu {
  display: flex;
  gap: 2rem;
}
.nav-menu a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: #8af3ff;
}
.nav-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.2rem;
}
.cart-icon {
  position: relative;
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #ff4757;
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 50%;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

/* Page Header */
.page-header {
  background: var(--secondary);
  padding: 3rem 1rem;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--dark);
}

.page-header p {
  margin-top: 0.5rem;
  color: var(--gray);
}

/* Content Sections */
.page-content {
  max-width: 1200px;
  margin: auto;
  padding: 3rem 1rem;
}

.about-intro {
  margin-bottom: 2rem;
}

.about-intro h2 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.about-intro p {
  margin-bottom: 1rem;
  color: var(--gray);
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.about-card {
  background: var(--tertiary);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.about-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

/* Team Section */
.team-section {
  margin: 3rem 0;
}

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

.team-member {
  text-align: center;
  background: var(--tertiary);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.team-member img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  background: var(--secondary);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.stat-item {
  background: var(--tertiary);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
}

/* Footer */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 3rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
}

.footer-section a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}

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

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
}

.social-icons i {
  margin-right: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.social-icons i:hover {
  color: var(--primary);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
}

.close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsividade */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: var(--tertiary);
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
