* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f6f7fb;
  color: #1e1e1e;
}

.container {
  width: 95%;
  max-width: 1400px;
  margin: auto;
}

/* HEADER */

.main-header {
  background: #ffffff;
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo-img {
  height: 55px;
}

.header-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #25D366; /* verde whatsapp */
}

.header-contact:hover {
  opacity: 0.8;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-text {
    display: none;
  }

  .header-contact {
    font-size: 14px;
  }
}



.contact-phone {
  font-weight: 600;
  text-decoration: none;
  color: #25d366;
  font-size: 18px;
}

.contact-phone i {
  margin-right: 8px;
}

.btn-login {
  background: #2f4f2f;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* HERO */

.hero {
  height: 500px;
  background-image: url('../img/food-pattern.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: relative;
  color: #ffffff;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #ffffff;
  color: #2f4f2f;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.btn-outline {
  border: 2px solid #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

/* PROMOCIONES */

.section-promos {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 700;
}

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

.promo-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s;
  position: relative;
}

.promo-card:hover {
  transform: translateY(-6px);
}

.promo-discount {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff3b3b;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 700;
}

.promo-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.old-price {
  text-decoration: line-through;
  color: #999999;
  font-size: 14px;
}

.new-price {
  font-size: 22px;
  font-weight: 800;
  color: #2f4f2f;
}

/* WHATSAPP FLOTANTE */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 999;
  text-decoration: none;
}


.section-empresa {
  padding: 60px 0;
  background: #f8f9fa;
}

.empresa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.empresa-box h3 {
  margin-bottom: 15px;
}

.lista-diferenciales {
  list-style: none;
  padding: 0;
}

.lista-diferenciales li {
  margin-bottom: 10px;
}

.lista-diferenciales i {
  margin-right: 8px;
  color: #198754;
}

.mini-step {
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .empresa-grid {
    grid-template-columns: 1fr;
  }
}


.btn-tienda {
  display: block;
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  text-align: center;
  background-color: #198754;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-tienda:hover {
  background-color: #146c43;
}

.user-menu{
    position:relative;
}

.user-btn{
    background:#111827;
    color:white;
    border:none;
    padding:10px 16px;
    border-radius:10px;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:600;
}

.dropdown{
    position:absolute;
    right:0;
    top:50px;
    background:white;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    min-width:200px;
    overflow:hidden;
    display:none;
    z-index:999;
}

.dropdown.show{
    display:block;
}

.dropdown a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 16px;
    text-decoration:none;
    color:#111827;
    font-size:14px;
}

.dropdown a:hover{
    background:#f3f4f6;
}
