/* ================= RESET ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= GLOBAL ================= */

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #fdfdfb;
  color: #2b2b2b;
  line-height: 1.6;
}

/* ================= HEADER ================= */

header {
  background: #ffffff;
  padding: 25px;
  text-align: center;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  width: 100px;
  margin-bottom: 10px;
}

header h1 {
  font-weight: 600;
  letter-spacing: 1px;
}

nav {
  margin-top: 10px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #c8a44d;
}

/* ================= HERO ================= */

.hero {
  background:
    linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0.75)),
    url("images/bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 90vh;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 20px;
}

.hero-box {
  background: rgba(255,255,255,0.85);
  padding: 50px;
  border-radius: 20px;
  max-width: 750px;
  animation: fadeIn 1.5s ease;
}

.hero h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  color: #555;
}

/* ================= BUTTONS ================= */

.btn, button {
  background: linear-gradient(135deg, #d4af37, #f3d27a);
  color: white;
  padding: 12px 26px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  display: inline-block;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* ================= HIGHLIGHTS ================= */

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 70px 40px;
  background: #f9f8f5;
}

.highlight-card {
  background: linear-gradient(145deg, #ffffff, #f8f6ef);
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.4s ease;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.highlight-card h3 {
  margin-bottom: 10px;
  color: #333;
}

/* ================= ABOUT ================= */

.about {
  padding: 80px 20px;
  text-align: center;
  background: #ffffff;
}

.about p {
  max-width: 900px;
  margin: 15px auto;
  color: #555;
  font-weight: bold;
  font-style: italic;
  font-family: Georgia, serif;
}

/* ================= PRODUCTS GRID ================= */

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 70px 40px;
  background: #f9f8f5;
}

.product {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

.product img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}

.product h3 {
  margin: 10px 0;
}

/* ================= CONTACT ================= */

.contact {
  padding: 80px 20px;
  text-align: center;
  background: #ffffff;
}

.contact p {
  margin: 10px 0;
}

/* ================= SOCIAL ================= */

.social {
  padding: 70px 20px;
  text-align: center;
  background: #ffffff;
}

.social-btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  color: white;
}

.insta { background: #E1306C; }
.email { background: #444; }

/* ================= FOOTER ================= */

footer {
  background: #f3f1ec;
  color: #666;
  text-align: center;
  padding: 25px;
  font-size: 14px;
  border-top: 1px solid #e5e2db;
}

/* ================= FLOAT BUTTONS ================= */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.insta-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #E1306C;
  color: white;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* ================= ANIMATION ================= */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .hero {
    height: 70vh;
  }

  .hero h2 {
    font-size: 26px;
  }

  nav a {
    display: block;
    margin: 8px 0;
  }

  .products {
    padding: 40px 20px;
  }

}
.catalog-hero{
padding:60px 20px;
text-align:center;
background:#f9f8f5;
}

.catalog{
padding:60px 40px;
}

.catalog-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-bottom:60px;
}

.product-card{
background:white;
padding:20px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.product-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 35px rgba(0,0,0,0.15);
}

.gallery{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:8px;
margin-bottom:10px;
}

.gallery img,
.img-placeholder{
width:100%;
height:120px;
background:#eee;
border-radius:10px;
object-fit:cover;
display:flex;
align-items:center;
justify-content:center;
font-size:12px;
color:#999;
}
.about-hero{
padding:80px 20px;
text-align:center;
background:#f9f8f5;
}

.about-hero h2{
font-size:38px;
margin-bottom:10px;
}

.about-section{
padding:70px 40px;
max-width:900px;
margin:auto;
text-align:center;
}

.about-section p{
margin:15px 0;
font-size:18px;
color:#555;
}

.leaders{
padding:80px 20px;
background:#ffffff;
text-align:center;
}

.leader-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:40px;
max-width:1100px;
margin:auto;
}

.leader-card{
background:#f9f8f5;
padding:30px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.leader-img{
width:180px;
height:180px;
object-fit:cover;
border-radius:50%;
margin-bottom:15px;
}
.contact-hero{
padding:70px 20px;
text-align:center;
background:#f9f8f5;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
padding:60px 40px;
}

.contact-card{
padding:35px;
border-radius:18px;
text-align:center;
color:white;
text-decoration:none;
font-weight:bold;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:0.3s;
}

.contact-card:hover{
transform:translateY(-6px);
}

.whatsapp{ background:#25D366; }
.call{ background:#333; }
.email{ background:#555; }
.insta{ background:#E1306C; }

.contact-info{
text-align:center;
padding:60px 20px;
}

.map{
margin:20px 0;
}
.slider{
width:100%;
height:160px;
overflow:hidden;
border-radius:12px;
margin-bottom:10px;
}

.slider img{
width:100%;
height:100%;
object-fit:cover;
transition:opacity 0.5s;
}
