/* Base styles and resets */
:root {
  --primary: #001C41;
  --primary-dark: #001C41;
  --primary-light: #C8E6C9;
  --secondary: #2196F3;
  --secondary-dark: #1976D2;
  --accent: #FF9800;
  --dark: #212121;
  --light: #FAFAFA;
  --gray: #757575;
  --light-gray: #EEEEEE;
  --red: #860d0d;
}
.header-promo {
  background-color: var(--accent);
  color: white;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 5px;
  padding: 0.5rem 0;
  top: 100%;
  left: 0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: var(--dark);
  padding: 0.7rem 1.5rem;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-content a:hover {
  background-color: var(--light-gray);
  color: var(--primary);
}

.dropdown-indicator {
  margin-left: 0.5rem;
}

.marquee {
  display: inline-block;
  animation: marquee 25s linear infinite;
  font-weight: 500;
}

@keyframes marquee {
  0% { transform: translateX(10%); }
  100% { transform: translateX(-100%); }
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.logo img {
    height: 50px;  /* Ajusta el tamaño según necesites */
    width: auto;
}

.my-float{
	margin-top:16px;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section-title {
  font-size: 2rem;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent);
}

/* Header styles */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo h1 {
  color: var(--primary);
  font-size: 1.8rem;
  margin: 0;
}

.logo p {
  color: var(--gray);
  font-size: 0.8rem;
  margin: 0;
}

.nav-menu {
  display: flex;
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu a {
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary);
}

.cart-icon {
  position: relative;
  font-size: 1.3rem;
}

.cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--accent);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Banner */
.hero-banner {
    background: url('Banner.png') no-repeat center center/cover;
    height: 800px; /* Ajusta la altura según necesites */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.banner-content {
  max-width: 800px;
  padding: 0 2rem;
}

.banner-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background-color: transparent;
  color: white;
  border-color: white;
}

/* About Us Section */
.about-us {
  padding: 5rem 0;
  background-color: var(--light);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.about-text ul {
  margin-left: 1.5rem;
}

.about-text li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.about-text li:before {
  content: '✓';
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

/* Featured Products Section */
.featured-products {
  padding: 5rem 0;
  background-color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: white;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 550px;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.product-description {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-price {
  margin-bottom: 1.5rem;
}

.price {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary-dark);
}
.priceoff{
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--red);
}
.priceoff2{
  font-size: 2rem;
  font-weight: bold;
  color: var(--red);
}

.btn-add-cart {
  width: 100%;
  padding: 0.8rem;
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-add-cart:hover {
  background-color: var(--secondary-dark);
}

.view-all {
  text-align: center;
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--secondary);
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid var(--secondary);
  transition: all 0.3s;
}

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

/* Special Offers Section */
.special-offers {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.offers-slider {
  max-width: 800px;
  margin: 0 auto;
}

.offer-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.offer-banner {
  background-color: var(--accent);
  color: white;
  padding: 1rem;
  text-align: center;
}

.offer-banner h3 {
  font-size: 1.5rem;
  margin: 0;
}

.offer-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.offer-content {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
}

.offer-image {
  flex: 1;
  min-width: 250px;
}

.offer-info {
  flex: 1;
  min-width: 250px;
  padding: 0 2rem;
}

.offer-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.offer-info p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.offer-prices {
  margin-bottom: 1.5rem;
}

.original-price {
  font-size: 1.1rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-right: 1rem;
}

.discount-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-dark);
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: white;
}

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial {
  background-color: var(--light);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-width: 500px;
}

.testimonial-rating {
  color: #FFD700;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.author-info h4 {
  margin: 0;
  font-size: 1.1rem;
}

.author-info p {
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

/* Footer Styles */
footer {
  background-color: var(--dark);
  color: white;
  padding-top: 4rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 2rem;
}

.footer-column h3 {
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-column p {
  color: #CCC;
  font-size: 0.9rem;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: #CCC;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--primary-light);
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-info li i {
  margin-right: 0.8rem;
  color: var(--primary-light);
}

.social-links {
  display: flex;
}

.social-links a {
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  transition: background-color 0.3s;
}

.social-links a:hover {
  background-color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.footer-bottom p {
  color: #CCC;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .menu-toggle {
    display: block;
  }
  
  .banner-content h2 {
    font-size: 2.5rem;
  }
  
  .banner-content p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }
  
  .hero-banner {
    height: 60vh;
  }
  
  .banner-content h2 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .about-content, .offer-content {
    flex-direction: column;
  }
  
  .about-image {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .offer-info {
    padding: 2rem 0 0 0;
  }
}

@media (max-width: 576px) {
  .banner-content h2 {
    font-size: 1.8rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-column {
    flex: 100%;
  }
}

