/* Variables de color */
:root {
  --primary-color: #d55a89;
  --auxiliar-color: #ffafce;
  /*e66294*/

  --secondary-color: #d4af37;
  /* dorado */
  --dark-color: #333333;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --white-color: #ffffff;
  --black-color: #000000;
}

/* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  text-align: center;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--primary-color);
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  text-align: center;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.btn-auxiliary {
  display: inline-block;
  background-color: transparent;
  color: var(--primary-color);
  padding: 12px 60px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  text-align: center;
}

.btn-auxiliary:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}


.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-color);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--auxiliar-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: var(--auxiliar-color)
    /*rgba(255, 255, 255, 0.95)*/
  ;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo img {
  transition: all 0.3s ease;
}

.nav ul {
  display: flex;
}

.nav ul li {
  margin-left: 30px;
}

.nav ul li a {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.555);
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav ul li a:hover::after {
  width: 100%;
}

.nav ul li a:hover {
  color: var(--primary-color);
}

.social-header .whatsapp-btn {
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.social-header .whatsapp-btn i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.social-header .whatsapp-btn:hover {
  background-color: #128C7E;
}

/* Contenedor del Toggle */
.menu-toggle {
  display: none;
  /* Se activa en el media query */
  background: none;
  border: none;
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.menu-toggle .material-symbols-outlined {
  position: absolute;
  font-size: 32px;
  /* Tamaño del icono */
  color: var(--primary-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

/* Estado inicial: Menu visible, Close oculto y rotado */
.menu-toggle .icon-close {
  opacity: 0;
  transform: rotate(-180deg) scale(0.5);
}

.menu-toggle .icon-menu {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* ESTADO ACTIVO: Cuando el JS añade la clase .active */
.menu-toggle.active .icon-menu {
  opacity: 0;
  transform: rotate(180deg) scale(0.5);
}

.menu-toggle.active .icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  background: url(../img/Hero.png) no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white-color);
  text-align: center;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  border-radius: 500px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.08);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.signature {
  margin-top: 30px;
}

/* Stock Section */
.stock {
  background-color: var(--light-gray);
}

.stock-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.stock-item {
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stock-item:hover {
  transform: translateY(-10px);
}

.stock-image {
  position: relative;
  height: 400px;
}

.stock-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stock-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 5px 15px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}

.stock-info {
  padding: 20px;
}

.stock-info h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stock-info p {
  margin-bottom: 20px;
  color: var(--gray-color);
}

.btn-stock {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-stock:hover {
  background-color: var(--secondary-color);
}

/* Making Section */
.container-guide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container-guide>p {
  color: var(--dark-color);
  margin: -20px 0 20px 0;
}

.product-categories {
  margin-top: 40px;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 10px 25px;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.tab-btn.active {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.category-item {
  display: none;
}

.category-item.active {
  display: block;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(213, 90, 137, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.btn-overlay {
  background-color: var(--white-color);
  color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-overlay:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.product-info p {
  color: var(--gray-color);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.price {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.cta-section {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background-color: var(--light-gray);
  border-radius: 10px;
}

.cta-section h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.cta-section p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* Shipping Section */
.shipping {
  background-color: var(--light-gray);
}

.shipping-info {
  text-align: center;
  margin-top: 50px;
}

.shipping-info h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.shipping-logos {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
}

.shipping-logos img {
  max-height: 200px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.shipping-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Contact Section */
.contact-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px;
  margin: 0 13%;
  align-items: center;
  justify-content: safe;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  min-width: 45%;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 20px;
  margin-top: 5px;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.contact-item a {
  color: var(--dark-color);
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.contact-social {

  min-width: 45%;
}

.contact-social h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white-color);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.contact-form {
  flex: 1;
  background-color: var(--white-color);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.2);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 60px 0 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 20px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  margin-bottom: 20px;
}

.footer-logo p {
  opacity: 0.8;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--white-color);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--white-color);
}

.footer-contact ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact ul li i {
  margin-right: 10px;
  color: var(--secondary-color);
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  padding-bottom: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 0.9rem;
  text-align: center;
  width: 100%;
}

.footer-payments {
  display: flex;
  gap: 15px;
}

.footer-payments img {
  height: 25px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-payments img:hover {
  opacity: 1;
}


/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .contact-content {
    flex-direction: column;
  }

  .nav ul {
    display: none;
  }

  .nav.active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .nav.active ul li {
    margin: 0;
    text-align: center;
    padding: 10px 0;
  }

  .menu-toggle {
    display: flex;
  }

}



@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .stock-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 600px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary .btn-auxiliary {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .testimonial {
    padding: 30px 20px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }
}