/*
Theme Name: ÉON Cosmetics
Theme URI: https://eoncosmeticos.com.br
Author: ÉON
Author URI: https://eoncosmeticos.com.br
Description: Tema clean e sofisticado para a marca de cosméticos ÉON
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eon
*/

/* ===========================
   DESIGN SYSTEM - CORES HSL
   =========================== */
:root {
  --background: 0, 0%, 100%;
  --foreground: 0, 0%, 10%;
  --gold: 39, 60%, 50%;
  --gold-light: 40, 55%, 65%;
  --beige: 0, 0%, 98%;
  --graphite: 0, 0%, 10%;
  --border: 0, 0%, 90%;
  
  --shadow-soft: 0 2px 8px hsla(0, 0%, 0%, 0.06);
  --shadow-medium: 0 4px 16px hsla(0, 0%, 0%, 0.08);
}

/* ===========================
   RESET E BASE
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ===========================
   CONTAINER
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===========================
   BOTÕES
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2.5rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-hero {
  background-color: hsl(var(--gold));
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-hero:hover {
  background-color: hsl(var(--gold-light));
  box-shadow: var(--shadow-medium);
  transform: scale(1.05);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid hsla(var(--gold), 0.3);
  color: hsl(var(--graphite));
}

.btn-outline:hover {
  background-color: hsla(var(--gold), 0.1);
  border-color: hsl(var(--gold));
}

.btn-lg {
  padding: 1rem 3rem;
  font-size: 1.125rem;
}

/* ===========================
   SEÇÕES
   =========================== */
.section {
  padding: 6rem 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: hsl(var(--graphite));
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: hsla(var(--graphite), 0.8);
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1rem;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--graphite));
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: hsla(var(--graphite), 0.8);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   PRODUCT SECTION
   =========================== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.product-image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-soft);
}

.product-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background-color: hsla(var(--background), 0.5);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background-color: hsl(var(--background));
  box-shadow: var(--shadow-soft);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: hsla(var(--gold), 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===========================
   SCIENCE SECTION
   =========================== */
.science-section {
  background-color: hsla(var(--beige), 0.3);
  border-top: 1px solid hsl(var(--border));
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.ingredient-card {
  background-color: hsla(var(--background), 0.8);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.ingredient-card:hover {
  box-shadow: var(--shadow-medium);
}

.ingredient-card h3 {
  color: hsl(var(--gold));
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: hsl(var(--background));
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid hsl(var(--border));
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: hsla(var(--graphite), 0.8);
}

.testimonial-author {
  font-weight: 600;
  color: hsl(var(--graphite));
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background-color: hsl(var(--background));
  border-top: 1px solid hsl(var(--border));
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--gold));
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a:hover {
  color: hsl(var(--gold));
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  color: hsla(var(--graphite), 0.6);
  font-size: 0.875rem;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .product-grid,
  .ingredients-grid,
  .testimonials-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* ===========================
   ANIMAÇÕES
   =========================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}
