/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f8f8f8;
  color: #222;
  line-height: 1.5;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.site-header {
  background: #ffffff;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 6px;
}

.brand-text .brand-title {
  font-size: 20px;
}

.muted {
  font-size: 14px;
  color: #666;
}

/* NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: #222;
  font-size: 15px;
  font-weight: bold;
}

.main-nav a:hover {
  color: #0073e6;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropbtn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  top: 25px;
  right: 0;
  min-width: 200px;
  border: 1px solid #ddd;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  z-index: 10;
}

.dropdown-content a {
  padding: 10px;
  display: block;
  text-decoration: none;
  color: #222;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* HERO SECTION */
.hero {
  padding: 60px 0;
  background: white;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.hero-text {
  width: 50%;
}

.hero-text h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero-text .lead {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

.hero-media img {
  width: 450px;
  height: auto;
  border-radius: 8px;
}

/* BUTTONS */
.btn {
  padding: 10px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
}

.btn.primary {
  background: #0073e6;
  color: white;
}

.btn.primary:hover {
  background: #005bb5;
}

.btn.ghost {
  border: 2px solid #0073e6;
  color: #0073e6;
}

.btn.ghost:hover {
  background: #0073e6;
  color: white;
}

/* SECTIONS */
.section {
  padding: 60px 0;
}

/* GRID */
.grid {
  display: grid;
  gap: 25px;
}

.products-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* CARD */
.card {
  background: white;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* SLIDER — FIXED */
.slider {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
}

.slides {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SLIDER BUTTONS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 4px;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

/* DOTS */
.dots {
  text-align: center;
  margin-top: 8px;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 4px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dots .active {
  background: #0073e6;
}

/* CONTACT */
.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #bbb;
  border-radius: 5px;
}

/* FOOTER */
.site-footer {
  padding: 20px 0;
  text-align: center;
  background: white;
  border-top: 1px solid #ddd;
}

/* WHATSAPP FLOATING BUTTON */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 14px;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-text, 
  .hero-media {
    width: 100%;
  }

  .hero-media img {
    width: 100%;
  }
}
