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

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1e2a3a;
  line-height: 1.5;
}

/* ==================== CORES ==================== */
:root {
  --bg: #ffffff;
  --text: #1e2a3a;
  --text-light: #6b7280;
  --accent: #e07a5f; /* terracota - destaque */
  --accent-dark: #c76e54;
  --navy: #2c3e66; /* azul-marinho para variar */
  --border: #f3f4f6;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* ==================== TIPOGRAFIA ==================== */
h1,
h2,
h3,
.logo,
.hero h1,
.shop-look h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* ==================== LAYOUT ==================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
header {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent);
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--accent);
}

/* HERO */
.hero {
  padding: 64px 0 48px;
  text-align: center;
  background: #fefaf5;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 16px auto 0;
}

/* GRID DO CATÁLOGO */
.catalog {
  padding: 64px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 48px 24px;
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

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

.product-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f9f9f9;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}

.product-card:hover .product-image {
  box-shadow: var(--shadow-hover);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.02);
}

.product-info {
  padding: 0 4px;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.product-price {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.product-description {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* SHOP THE LOOK */
.shop-look {
  background: #fefaf5;
  padding: 64px 0;
  margin: 32px 0;
}

.look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.look-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.look-image img {
  width: 100%;
  height: auto;
  display: block;
}

.look-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.look-info p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.look-items {
  list-style: none;
  margin-bottom: 2rem;
}

.look-items li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

.look-items li span:last-child {
  color: var(--accent);
}

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
}

/* FOOTER */
footer {
  background: #f9f9f9;
  padding: 48px 0 24px;
  margin-top: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
}

/* ========== BOTÃO WHATSAPP FLUTUANTE ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, background 0.2s;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background-color: #128c7e;
  color: white;
}

/* ==================== RESPONSIVIDADE ==================== */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  .look-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .look-info h3 {
    font-size: 1.6rem;
  }

  .products-grid {
    gap: 32px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }

  nav {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .product-name {
    font-size: 1rem;
  }
}
