:root {
  --rosa-chiclete: #ec5490;
  --rosa-claro: 	#EE82EE;
  --fundo-claro: #fff0f5;
  --cinza-claro: #f9f9f9;
  --texto: #333;
}

/* Remover o header dos mobiles */

@media (max-width: 768px) {
  .header {
    display: none;
  }
}

/* Remover o header dos mobiles */

/* Header Styles */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.menu-btn {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.menu-btn:hover {
  background: var(--secondary);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  margin-right: auto;
  /* Empurra a logo para a esquerda */
  padding-left: 20px;
  /* Espaçamento da borda */
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  animation: glow 2s ease-in-out infinite alternate;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.nav {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  font-size: 1.1rem;
  font-family: 'Oswald';
  margin: 0 15px;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: #000000;
  /* ou sua cor desejada */
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #ff4eb5;
  /* Rosa */
  transform: scaleX(0);
}


.nav-link:hover::after {
  transform: scaleX(1);
}


.nav-link:hover {
  color: #ff4eb5;
  /* opcional, muda a cor do texto também */
}

/* Header */

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: var(--fundo-claro);
  color: var(--texto);
  background-color:		#E6E6FA;
}

.product-detail-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 1rem;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.product-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(236, 84, 144, 0.2);
  transition: transform 0.3s ease;
}

.product-image img:hover {
  transform: scale(1.05);
}

.product-info {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-info h1 {
  font-size: 2rem;
  color: var(--rosa-chiclete);
  padding-bottom: 0.5rem;
}

.product-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555; /* tom de cinza suave para boa leitura */
  padding: none;
  border-radius: 12px;
  box-shadow: none;
  font-style: italic;
  font-weight: bold;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--rosa-chiclete);
}

.buy-button {
  background: linear-gradient(135deg, var(--rosa-claro), var(--rosa-chiclete));
  border: none;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(236, 84, 144, 0.3);
  font-weight: bold;
  letter-spacing: 1px;
}

.buy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(236, 84, 144, 0.4);
}

/* Rodapé */

.footer {
  background-color: #000000;
  padding: 30px 0 20px 0;
  font-size: 0.9rem;
  color: #ffffff;
  border-top: 1px solid #333333;
  width: 100%;
  margin: 0;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 20px;
}

/* Brand Section */
.footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 200px;
  min-width: 200px;
}

.footer .footer-brand h3 {
  font-size: 1.3rem;
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  color: #ffffff;
}

.footer .logo-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Description */
.footer .footer-description {
  flex: 2 1 250px;
  margin: 0;
  font-size: 0.85rem;
  color: #cccccc;
  line-height: 1.5;
  max-width: 300px;
}

/* Links Section */
.footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 200px;
  min-width: 200px;
}

.footer .footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer .footer-link {
  color: #dddddd;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  padding: 2px 0;
}

.footer .footer-link:hover {
  color: #ff69b4;
  text-decoration: underline;
}

/* Social Icons */
.footer .social-icons {
  display: flex;
  gap: 20px;
  flex: 1 1 250px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer .social-icons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.2s ease-in-out;
}

.footer .social-icons img:hover {
  transform: scale(1.1);
}

/* Footer Bottom */
.footer .footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: #aaaaaa;
  padding-top: 20px;
  border-top: 1px solid #333333;
  margin-top: 20px;
}

.footer .feito-por {
  text-align: center;
  font-size: 0.7rem;
  color: #888888;
  margin-top: 8px;
  font-style: italic;
}

/* Tablets */
@media (max-width: 1024px) {
  .footer .footer-content {
    gap: 25px;
  }
  
  .footer .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .footer .social-icons {
    justify-content: center;
    gap: 25px;
  }
}

/* Mobile Large (768px) */
@media (max-width: 768px) {
  .footer {
    padding: 25px 0 15px 0;
  }
  
  .footer .container {
    padding: 0 15px;
  }
  
  .footer .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }
  
  .footer .footer-brand {
    justify-content: center;
    flex: none;
    width: 100%;
  }
  
  .footer .footer-description {
    flex: none;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .footer .footer-links {
    flex: none;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer .footer-link-group {
    flex-direction: row;
    gap: 20px;
  }
  
  .footer .social-icons {
    flex: none;
    width: 100%;
    justify-content: center;
    gap: 25px;
  }
}

/* Mobile Medium (480px) */
@media (max-width: 480px) {
  .footer {
    padding: 20px 0 15px 0;
    font-size: 0.85rem;
  }
  
  .footer .container {
    padding: 0 12px;
  }
  
  .footer .footer-content {
    gap: 20px;
  }
  
  .footer .footer-brand h3 {
    font-size: 1.1rem;
  }
  
  .footer .logo-icon img {
    width: 45px;
    height: 45px;
  }
  
  .footer .footer-description {
    font-size: 0.8rem;
    padding: 0 10px;
  }
  
  .footer .footer-links {
    gap: 15px;
  }
  
  .footer .footer-link-group {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .footer .footer-link {
    font-size: 0.8rem;
  }
  
  .footer .social-icons {
    gap: 20px;
  }
  
  .footer .social-icons img {
    width: 35px;
    height: 35px;
  }
  
  .footer .footer-bottom {
    font-size: 0.7rem;
    padding-top: 15px;
  }
  
  .footer .feito-por {
    font-size: 0.65rem;
  }
}

/* Mobile Small (320px) */
@media (max-width: 360px) {
  .footer .container {
    padding: 0 10px;
  }
  
  .footer .footer-content {
    gap: 18px;
  }
  
  .footer .footer-brand h3 {
    font-size: 1rem;
  }
  
  .footer .logo-icon img {
    width: 40px;
    height: 40px;
  }
  
  .footer .footer-description {
    font-size: 0.75rem;
  }
  
  .footer .footer-link {
    font-size: 0.75rem;
  }
  
  .footer .social-icons {
    gap: 15px;
  }
  
  .footer .social-icons img {
    width: 32px;
    height: 32px;
  }
}
