/*
Theme Name: Magnetizze Men
Theme URI: https://magnetizze.com.br
Author: Magnetizze
Author URI: https://magnetizze.com.br
Description: Tema premium para landing page de perfume masculino com feromônios
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: magnetizze
Tags: ecommerce, landing-page, perfume, one-page
*/

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: hsl(0, 0%, 4%);
  --foreground: hsl(45, 20%, 95%);
  --primary: hsl(45, 90%, 55%);
  --primary-foreground: hsl(0, 0%, 8%);
  --secondary: hsl(0, 0%, 12%);
  --secondary-foreground: hsl(45, 20%, 95%);
  --muted: hsl(0, 0%, 15%);
  --muted-foreground: hsl(45, 10%, 65%);
  --gold: hsl(45, 90%, 55%);
  --gold-dark: hsl(45, 85%, 45%);
  --gold-light: hsl(45, 95%, 65%);
  --black-deep: hsl(0, 0%, 4%);
  --black-light: hsl(0, 0%, 12%);
  --border: hsl(0, 0%, 18%);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(0, 0%, 4%, 0.95), hsla(45, 90%, 55%, 0.15));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

.hero-logo {
  max-width: 200px;
  margin: 0 auto 30px;
  filter: drop-shadow(0 10px 40px hsla(45, 90%, 55%, 0.4));
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 40px;
  color: var(--muted-foreground);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn {
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-foreground);
  box-shadow: 0 10px 40px -10px hsla(45, 90%, 55%, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px hsla(45, 90%, 55%, 0.25);
}

.btn-secondary {
  background: hsla(255, 255%, 255%, 0.1);
  color: var(--foreground);
  border: 2px solid hsla(255, 255%, 255%, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: hsla(255, 255%, 255%, 0.2);
  border-color: var(--gold);
}

.trust-indicators {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Product Section */
.product-section {
  padding: 100px 20px;
  background: var(--secondary);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.product-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px -10px hsla(0, 0%, 0%, 0.6);
  transition: transform 0.4s ease;
}

.product-image:hover {
  transform: scale(1.05);
}

.product-content h2 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.product-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 15px;
}

/* Science Section */
.science-section {
  padding: 100px 20px;
  background: var(--background);
}

.science-title {
  text-align: center;
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 60px;
}

.science-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.science-card {
  background: var(--secondary);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.science-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px -10px hsla(45, 90%, 55%, 0.4);
}

.science-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.science-card h3 {
  font-size: 1.4rem;
  color: var(--foreground);
  margin-bottom: 15px;
}

.science-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 20px;
  background: var(--secondary);
}

.testimonials-title {
  text-align: center;
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--background);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.testimonial-rating {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.testimonial-text {
  color: var(--foreground);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  color: var(--muted-foreground);
  font-weight: 600;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 20px;
  background: var(--background);
}

.pricing-title {
  text-align: center;
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--secondary);
  padding: 40px;
  border-radius: 16px;
  border: 2px solid var(--border);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px -10px hsla(0, 0%, 0%, 0.6);
}

.pricing-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-foreground);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}

.pricing-card h3 {
  font-size: 1.8rem;
  color: var(--foreground);
  margin-bottom: 15px;
}

.pricing-price {
  font-size: 3rem;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 10px;
}

.pricing-installments {
  color: var(--muted-foreground);
  margin-bottom: 20px;
}

.pricing-savings {
  background: hsla(120, 100%, 35%, 0.2);
  color: hsl(120, 100%, 70%);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  color: var(--muted-foreground);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* FAQ Section */
.faq-section {
  padding: 100px 20px;
  background: var(--secondary);
}

.faq-title {
  text-align: center;
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 60px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-question {
  padding: 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-answer {
  padding: 0 25px 25px;
  color: var(--muted-foreground);
  line-height: 1.8;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Final CTA Section */
.final-cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--background), var(--secondary));
  text-align: center;
}

.final-cta-title {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.final-cta-subtitle {
  font-size: 1.3rem;
  color: var(--muted-foreground);
  margin-bottom: 40px;
}

.final-cta-urgency {
  color: hsl(0, 72%, 51%);
  font-weight: 600;
  margin-top: 30px;
  font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .product-images {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}
