/* ==========================================
   MANDYJU - Estilos personalizados
   Autor: Jesus Peralta
   ========================================== */

/* ===== Colores base ===== */
:root {
  --naranja-oro: #E4B553;   /* Verde institucional */
  --oro-metalico: #D4AF37;
  --oro-suave: #F6E4BF;       /* Fondo claro tipo pastel */
  --gris-chumbo: #3A3A3B;
  --gris-chumbo-claro: #a29e9e;
  --gris-claro: #F5F5F5;
  --blanco: #FFFFFF;
  --negro: #000000;
  --beige: #C6AF93;
  --beige-crema: #F6E4BF;
}


/* ===== Esta fuente no se utilizara   ===== */
@font-face {
  font-family: 'Tan Pearl';
    src: url('/assets/mandyju/fonts/TanPearl.woff2') format('woff2'),
       url('/assets/mandyju/fonts/TanPearl.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
/* ===== Configuración global ===== */
body {
  background-color: var(--blanco);
  color: var(--gris-chumbo);
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  scroll-behavior: smooth;
}


h1, h2, h3 {
  
  font-weight: 700;
}

p {
  font-weight: 100;
  color: var(--gris-chumbo);
}
.gris-claro {
  background-color: var(--gris-claro);
}

.gris-chumbo {
  color: var(--gris-chumbo);
}

.naranja-oro {
  color: var(--naranja-oro);
}

.oro-metalico {
  color: var(--oro-metalico);
}

.oro-suave {
  color: var(--oro-suave);
}

.beige {
  color: var(--beige);
}

.beige-crema {
  color: var(--beige-crema);
}

.barlow-thin {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-extralight {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-light {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-regular {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-medium {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-semibold {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-bold {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-extrabold {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-black {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-thin-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-extralight-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-light-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-regular-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-medium-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-semibold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-bold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-extrabold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-black-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: italic;
}


/* ===== Navbar ===== */
header {
  border-bottom: 2px solid var(--oro-suave);
  transition: all 0.3s ease;

}

 header a,  header ul li a, header button {
  font-weight: 200 !important;
  text-decoration: none !important;
}

header.scrolled {
  background-color: var(--blanco);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

footer a, footer p {
  font-weight: 200 !important;
  text-decoration: none !important;
  color: var(--gris-chumbo-claro) !important;
}

footer h4 {
  color: var(--gris-chumbo) !important;
  font-weight: 300 !important;
}

footer a:hover {
  text-decoration: underline !important;
}
nav a {
  position: relative;
  color: var(--gris-chumbo);
  text-decoration: none;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--naranja-oro);
}

/* ===== Submenús ===== */
nav ul li ul {
  border-top: 3px solid var(--verde-claro);
}

/* ===== Botones ===== */
.btn-primary {
  background-color: var(--naranja-oro);
  color: var(--blanco);
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--verde-claro);
  transform: translateY(-2px);
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(
    rgba(0, 127, 61, 0.35),
    rgba(0, 127, 61, 0.35)
  ), center/cover no-repeat;
  color: var(--blanco);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ===== Tarjetas de productos ===== */
.card {
  border: 1px solid var(--oro-suave);
  transition: all 0.3s ease;
  background-color: var(--blanco);
}

.card:hover {
  box-shadow: 0 6px 12px rgba(0, 127, 61, 0.15);
  transform: translateY(-4px);
}

.card h3 {
  color: var(--naranja-oro);
  font-weight: 600;
}

/* ===== Sección CTA ===== */
.cta {
  background: linear-gradient(90deg, var(--naranja-oro), var(--verde-claro));
  color: var(--blanco);
}

.cta a {
  background-color: var(--blanco);
  color: var(--naranja-oro);
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.cta a:hover {
  background-color: var(--oro-suave);
}

/* ===== Carrusel ===== */
.carousel {
  scrollbar-width: thin;
  scrollbar-color: var(--verde-claro) var(--oro-suave);
}

.carousel::-webkit-scrollbar {
  height: 8px;
}

.carousel::-webkit-scrollbar-thumb {
  background: var(--verde-claro);
  border-radius: 4px;
}



/* ===== Footer ===== */

.footer {
  background-color: #f3f0eb;
  color: var(--gris-chumbo);
}

footer a {
  color: var(--gris-chumbo);
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--naranja-oro);
}

.footer h4 {
  color: var(--gris-chumbo);
  font-weight: 600;
}

.footer p, .footer li {
  font-size: 0.95rem;
}

/* ===== Animaciones ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== Responsividad adicional ===== */
@media (max-width: 768px) {
  header img {
    height: 50px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}



/* Carousel */
/* Color normal */
.swiper-pagination-bullet {
  background-color: var(--oro-suave) !important; 
  opacity: 0.6;
}

/* Color activo */
.swiper-pagination-bullet-active {
  background-color: var(--naranja-oro) !important; 
  opacity: 1;
}