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

    --color-main      : #03A60E;
    --color-secondary : #D9A404;
    --color-tertiary  : white;
}
[hidden] { display: none !important; }
* , *::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;
}

/* ── Scrollbar siempre reservada ────────────────────── */
html {
  overflow-y: scroll;
}

/* ── Estructura base ────────────────────────────────── */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  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;
}

.Somosfrush-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: white;
}

/* ── Header ─────────────────────────────────────────── */
.Header-container {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: white;
  color: var(--color-main);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.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;
}

.Header-social-li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 0.5rem;
  color: var(--color-main);
  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: var(--color-main);
}

.Header-nav-li a {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  transition: color 0.2s ease;
}

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

/* ── Global Section Styles ──────────────────────────── */
.Somosfrush-section-h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-main);
  margin-bottom: 1rem;
}

.Somosfrush-section-h2.light {
  color: white;
}

.Somosfrush-section-p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2rem;
}

.Somosfrush-section-p.light {
  color: rgba(255, 255, 255, 0.9);
}

/* ── Hero ───────────────────────────────────────────── */
.Somosfrush-hero {
  position: relative;
  width: 100%;
  min-height: 50vh;
  min-height: 50svh;
  padding: 6rem 2rem;
  background-color: var(--color-main);
  background-image: linear-gradient(135deg, var(--color-main) 0%, #02850b 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.Somosfrush-hero-div {
  max-width: 900px;
}

.Somosfrush-hero-label {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.Somosfrush-hero-h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
}

/* ── Misión + Visión ────────────────────────────────── */
.Somosfrush-mv {
  width: 100%;
  padding: 5rem 2rem;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  margin-top: -3rem; /* Solapamiento con el hero */
  position: relative;
  z-index: 10;
}

.Somosfrush-mv-div {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.Somosfrush-mv-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Somosfrush-mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.Somosfrush-mv-card-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(3, 166, 14, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.Somosfrush-mv-card-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--color-main);
}

.Somosfrush-mv-card-h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 1rem;
}

.Somosfrush-mv-card-p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

/* ── Sobre Nosotros ─────────────────────────────────── */
.Somosfrush-about {
  width: 100%;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
}

.Somosfrush-about-div {
  max-width: 800px;
  text-align: center;
}

/* ── Stats ──────────────────────────────────────────── */
.Somosfrush-stats {
  width: 100%;
  padding: 4rem 2rem;
  background-color: var(--color-secondary);
  color: white;
  display: flex;
  justify-content: center;
}

.Somosfrush-stats-div {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.Somosfrush-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.Somosfrush-stat-num {
  font-size: 3rem;
  font-weight: 800;
}

.Somosfrush-stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Infraestructura ─────────────────────────────────── */
.Somosfrush-infra {
  width: 100%;
  padding: 6rem 2rem;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
}

.Somosfrush-infra-div {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .Somosfrush-infra-div {
    grid-template-columns: 1fr;
  }
}

.Somosfrush-infra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.Somosfrush-infra-item {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.Somosfrush-infra-item svg {
  width: 40px;
  height: 40px;
  fill: var(--color-secondary);
}

.Somosfrush-infra-item p {
  font-weight: 600;
  color: #333;
}

/* ── Calidad y Sostenibilidad ───────────────────────── */
.Somosfrush-quality {
  width: 100%;
  padding: 6rem 2rem;
  background-color: var(--color-main);
  background-image: linear-gradient(135deg, #02850b 0%, var(--color-main) 100%);
  display: flex;
  justify-content: center;
  text-align: center;
}

.Somosfrush-quality-div {
  max-width: 900px;
}

.Somosfrush-quality-badges {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.Somosfrush-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  backdrop-filter: blur(5px);
}


/* ── Presencia y Mercado ────────────────────────────── */
.Somosfrush-presence {
  width: 100%;
  padding: 6rem 2rem;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
}

.Somosfrush-presence-div {
  max-width: 1100px;
  width: 100%;
}

.Somosfrush-presence-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.Somosfrush-presence-col {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.Somosfrush-presence-h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.Somosfrush-presence-ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.Somosfrush-presence-ul li {
  font-size: 1.05rem;
  color: #555;
  padding-left: 1.5rem;
  position: relative;
}

.Somosfrush-presence-ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

/* ── 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; }

/* ── Animaciones ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* 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: var(--color-main);
    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;
  }



  .Somosfrush-hero-h1 { font-size: 3rem; }
  .Somosfrush-section-h2 { font-size: 2rem; }
  .Somosfrush-infra-div { gap: 2rem; }
}

/* ── Responsive móvil ────────────────────────────────── */
@media (max-width: 768px) {
  /* Hero */
  .Somosfrush-hero {
    padding: 4rem 1.25rem;
    min-height: auto;
  }

  .Somosfrush-hero-h1 {
    font-size: 2.2rem;
  }

  /* MV */
  .Somosfrush-mv {
    padding: 3rem 1.25rem;
    margin-top: 0;
  }

  .Somosfrush-mv-card {
    padding: 2rem 1.5rem;
  }

  /* Stats → 2 columnas */
  .Somosfrush-stats-div {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .Somosfrush-stat-num {
    font-size: 2.2rem;
  }

  /* Infra */
  .Somosfrush-infra {
    padding: 3rem 1.25rem;
  }

  .Somosfrush-infra-div {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .Somosfrush-infra-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* Quality */
  .Somosfrush-quality {
    padding: 4rem 1.25rem;
  }

  .Somosfrush-section-h2 {
    font-size: 1.8rem;
  }

  /* Presencia */
  .Somosfrush-presence {
    padding: 3rem 1.25rem;
  }

  .Somosfrush-presence-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; }