:root {
  --color-primary: #C19A6B; /* Dorato Sicilus */
  --color-secondary: #8B5A2B;
  --color-bg: #FAFAFA;
  --color-text: #333333;
  --color-text-muted: #666666;
  --font-main: "Outfit", -apple-system, sans-serif;
  --font-heading: "Playfair Display", serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

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

header {
  background: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  text-decoration: none;
}
.logo span {
  color: var(--color-primary);
  font-style: italic;
}

.hero {
  padding: 80px 20px;
  background-color: var(--color-primary);
  background-image: linear-gradient(rgba(193, 154, 107, 0.85), rgba(17, 17, 17, 0.85)), url('hero_brioche.png');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.95;
}

.benefits {
  padding: 60px 0;
  text-align: center;
}
.benefits h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: white;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.benefit-card h3 {
  color: var(--color-primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.products {
  background: white;
  padding: 60px 0;
}
.products h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
}
.product-card {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}
.product-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.product-text {
  flex: 1;
}
.product-text h3 {
  font-size: 1.8rem;
  color: var(--color-secondary);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.cta-section {
  padding: 80px 20px;
  text-align: center;
  background: var(--color-bg);
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}
.btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #1da851;
}
.btn-download {
  background: var(--color-secondary);
  color: white;
}
.btn-download:hover {
  background: #6b4420;
}

footer {
  background: #111;
  color: #888;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
}
footer strong {
  color: white;
}

@media(max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 768px) {
  .hero { padding: 50px 15px; }
  .hero h1 { font-size: 2.3rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { text-align: center; }
  .product-card { flex-direction: column; text-align: center; gap: 20px; }
  .product-card img { width: 100% !important; max-width: 250px; height: auto !important; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .btn { width: 100%; box-sizing: border-box; }
}
