/* ── Reset básico ───────────────────────────────────── */
:root {
  font-size : 100%;
  font-family : system-ui, sans-serif;
  scroll-behavior : smooth;

    --color-main      : #0f99d9;
    --color-secondary : #e1007d;
    --color-tertiary  : white;
}
* , *::before , *::after {
  margin : 0;
  padding : 0;
  border : 0;
  box-sizing : border-box;
  vertical-align : baseline;
}
*::before , *::after {
  display : block;
}
img , picture , video , iframe , figure , canvas {
  max-width : 100%;
  display : block;
  width : 100%;
  height : initial;
  object-fit : cover;
  object-position : center center;
}
a {
  display : block;
  text-decoration : none;
  color : inherit;
  font :  inherit;
}
p a {
  display : inline;
}
li , menu, summary {
  list-style-type : none;
}
ol {
  counter-reset : revert;
}
h1 , h2 , h3 , h4 , h5 , h6 , p , span , a , strong , blockquote , i , b , u , em , pre , code , mark , del {
  font :  inherit;
  line-height :  1em;
  text-decoration :  none;
  color : inherit;
  overflow-wrap : break-word;
  text-wrap : pretty;
}
mark {
  background-color : transparent;
}
blockquote::before , blockquote::after , q::before , q::after {
  content : none;
}
form , input , textarea , select , button , label {
  font :  inherit;
  hyphens : auto;
  background-color : transparent;
  color : inherit;
  display : block;
  appearance : none;
}
fieldset {
  border : none;
}
::placeholder {
  color : unset;
}
button , label {
  cursor : pointer;
}
table , tr , td , th , tbody , thead , tfoot {
  border-collapse : collapse;
  border-spacing : 0;
  font : inherit;
}
svg {
  width : 100%;
  height : initial;
  display : block;
  fill : currentColor;
}
body {
  /* line-height : 1.5em; */
  color : var(--color-tertiary);
  hyphens : auto;
  font-smooth : always;
  -webkit-font-smoothing : antialiased;
  -moz-osx-font-smoothing : grayscale;

  font-family: "Outfit", sans-serif;
  background-color: #ececec;

}


/* ── Header ─────────────────────────────────────────── */
.Header-container {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: #0f99d9;
  color: #444;
}

.Header-logo img {
  width: 200px;
  height: auto;
}

.Header-nav {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.Header-menu-toggle {
  display: none;
}

.Header-social-ul {
  display: flex;
  align-items: center;
  list-style-type: none;
}

.Header-social-li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 0.5rem;
}

.Header-social-li a {
  color: white;
  transition: color 0.2s ease;
}

.Header-social-li a:hover {
  color: var(--color-secondary);
}

.Header-social-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.Header-nav-ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
}

.Header-nav-li {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  color: white;
}

.Header-nav-li a {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
}

.Header-nav-li a:hover {
  color: var(--color-secondary);
}

/* ── Carousel ───────────────────────────────────────── */
.Carousel {
  position: relative;
  width: 100%;
  height: 80vh;
  height: 80svh;
  overflow: hidden;
}

.Carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.Carousel-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
}

.Carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  width: 100%;
}

.Carousel-h2 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
}

.Carousel-p {
  font-size: 1.1rem;
  font-weight: 400;
  color: white;
}

.Carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.2);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.Carousel-btn:hover {
  background-color: rgba(255,255,255,0.4);
}

.Carousel-btn--prev { left: 1.5rem; }
.Carousel-btn--next { right: 1.5rem; }

.Carousel-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.Carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.Carousel-dot.active {
  background-color: white;
}

/* ── Info ───────────────────────────────────────────── */
.Frushfresh-info {
  width: 100%;
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
}

.Frushfresh-info-div {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.Frushfresh-info-h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-main);
}

.Frushfresh-info-p {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #444;
}

/* ── Sabores ─────────────────────────────────────────── */
.Sabores-section {
  width: 100%;
  padding: 6rem 2rem;
  background-color: #1461cc;
  position: relative;
  overflow: hidden;
}

.Sabores-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(15,153,217,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.Sabores-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.Sabores-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-main);
  border: 1px solid rgba(15,153,217,0.4);
  padding: 0.35rem 1rem;
  border-radius: 30px;
}

.Sabores-h2 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
}

.Sabores-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  line-height: 1.7;
}

.Sabores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Card ── */
[hidden] { display: none !important; }

.Sabores-card {
  position: relative;
  border-radius: 20px;
  padding: 0 0 2rem;          /* sin padding-top: la imagen ocupa ese espacio */
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  cursor: default;
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1),
              box-shadow 0.35s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

/* Colores de fondo por sabor */
.Sabores-card--chichamorada { background: linear-gradient(145deg, #6a0dad, #3b006e); }
.Sabores-card--emoliente    { background: linear-gradient(145deg, #2d7a2d, #1a4d1a); }
.Sabores-card--maracuya     { background: linear-gradient(145deg, #e8a000, #b37200); }
.Sabores-card--lulo         { background: linear-gradient(145deg, #c0392b, #7b241c); }
.Sabores-card--tamarindo    { background: linear-gradient(145deg, #8b4513, #5c2d0a); }

/* ── Imagen superior de la card ── */
.Sabores-card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  flex-shrink: 0;
}

.Sabores-card-img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 1rem;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.Sabores-card:hover .Sabores-card-img {
  transform: scale(1.05);
}

/* Icono y cuerpo con padding lateral */
.Sabores-card-icon,
.Sabores-card-body {
  padding: 0 1.8rem;
}

.Sabores-card-icon {
  margin-top: 1.4rem;
}

.Sabores-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
}

/* Stripe decorativa inferior */
.Sabores-card-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0));
}

/* Brillo sutil en hover */
.Sabores-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.Sabores-card:hover::after {
  opacity: 1;
}

/* Contenido */
.Sabores-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}


.Sabores-card-h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
}

.Sabores-card-p {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

/* Tags pill */
.Sabores-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.Sabores-card-tags li {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* ── Footer ─────────────────────────────────────────── */
.footer-container {
  width: 100%;
  padding: 2rem 2rem 1.5rem;
  background-color: var(--color-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-container-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-container-div-p {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  transition: color 0.2s ease;
}
.footer-legal-links a:hover { color: white; }


/* Dropdown Menú */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dropdown-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform-origin: top center;
    margin-top: 10px;
    z-index: 100;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 0.8rem 1.5rem;
    display: block;
    color: #444;
    font-size: 1.05rem;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
}



.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.has-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Hover en desktop para el dropdown */
@media (min-width: 1401px) {
    .has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(5px);
    }
    .has-dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Colores de marca en el dropdown */
.dropdown-menu a[href="frushfresh.html"]:hover { background: rgba(15,153,217,0.08) !important; color: #0f99d9 !important; }
.dropdown-menu a[href="frushsoda.html"]:hover { background: rgba(143,0,0,0.08) !important; color: #8f0000 !important; }
.dropdown-menu a[href="frushsyrup.html"]:hover { background: rgba(78,35,20,0.08) !important; color: #4E2314 !important; }
.dropdown-menu a[href="frushpulp.html"]:hover { background: rgba(206,77,13,0.08) !important; color: #CE4D0D !important; }
.dropdown-menu a[href="frushtea.html"]:hover { background: rgba(59,114,2,0.08) !important; color: #3B7202 !important; }
.dropdown-menu a[href="frushicecream.html"]:hover { background: rgba(28,120,239,0.08) !important; color: #1C78EF !important; }


/* ── Responsive Tablet ───────────────────────────────── */
@media (max-width: 1400px) {
  

  /* Header */
  .Header-container {
    height: auto;
    padding: 0.75rem 1rem;
  }

  .Header-nav {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto auto;
  }

  .Header-logo {
    grid-column: 2;
    justify-self: center;
    display: flex;
  }

  .Header-logo img {
    width: 140px;
  }

  .Header-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    justify-self: end;
    background: none;
    border: none;
  }

  .Header-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    border-radius: 2px;
  }

  .Header-nav-ul {
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    width: 100%;
    align-items: flex-start;
  }

  .Header-nav-ul.open {
    max-height: 1000px;
    padding: 0.75rem 0;
  }

  .Header-nav-li {
    width: 100%;
    justify-content: flex-start;
  }

  .Header-nav-li a {
    font-size: 1.1rem;
    padding: 0.65rem 0;
    width: 100%;
  }

  .Header-social-ul {
    grid-column: 1 / -1;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
  }

  .Header-social-ul.open {
    max-height: 100px;
    opacity: 1;
    padding: 1.5rem 0 0.5rem;
  }

  /* Mobile Dropdown Override */
  .has-dropdown {
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    background: transparent;
    border-radius: 0;
    transition: max-height 0.4s ease;
  }
  
  .dropdown-menu li a {
    padding: 0.6rem 0 0.6rem 1.5rem;
    color: inherit;
    font-size: 1rem;
  }

  .has-dropdown.open .dropdown-menu {
    max-height: 350px;
    transform: none;
  }



  .Carousel-h2 { font-size: 3rem; }
  .Sabores-grid { grid-template-columns: repeat(3, 1fr); }
  .Sabores-h2 { font-size: 2.5rem; }
}

/* ── Responsive móvil ────────────────────────────────── */
@media (max-width: 768px) {
  /* Carousel */
  .Carousel {
    height: 450px;
  }

  .Carousel-h2 {
    font-size: 1.8rem;
  }

  .Carousel-p {
    font-size: 0.95rem;
  }

  .Carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  /* Info */
  .Frushfresh-info {
    padding: 3rem 1.25rem;
  }

  .Frushfresh-info-h2 {
    font-size: 1.6rem;
  }

  /* Sabores → 1 columna */
  .Sabores-section {
    padding: 4rem 1.25rem;
  }

  .Sabores-h2 {
    font-size: 2rem;
  }

  .Sabores-grid {
    grid-template-columns: 1fr;
  }
}

.dropdown-toggle:focus, .dropdown-toggle:active { outline: none !important; border: none !important; }
.has-dropdown:focus, .has-dropdown:active { outline: none !important; border: none !important; }

/* ── Franja distribución ─────────────────────────────── */
.Frushfresh-distrib {
  background-color: #f0f8ff;
  border-top: 2px solid #0f99d920;
  padding: 1.5rem 2rem;
  text-align: center;
}

.Frushfresh-distrib-div {
  max-width: 800px;
  margin: 0 auto;
}

.Frushfresh-distrib-p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.Frushfresh-distrib-p strong {
  color: #0f99d9;
}

.Frushfresh-distrib-p a {
  color: #0f99d9;
  text-decoration: underline;
  display: inline;
}

.Frushfresh-distrib-p a:hover {
  color: #0c7ab0;
}