:root {
  font-size : 100%;
  font-family : system-ui, sans-serif;
  scroll-behavior : smooth;

    --color-main      : #03A60E;
    --color-secondary : #D9A404;
    --color-tertiary  : black;
}
[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;
}
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-container {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: white;
  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;
}

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

.Header-social-li a {
  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
}

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


/* ── Hero ───────────────────────────────────────────── */
.Contacto-hero {
  width: 100%;
  padding: 5rem 2rem;
  background-color: var(--color-main);
  display: flex;
  justify-content: center;
  align-items: center;
}

.Contacto-hero-text {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.Contacto-hero-h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
}

.Contacto-hero-p {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* ── Sección principal ──────────────────────────────── */
.Contacto-container {
  width: 100%;
  padding: 6rem 2rem;
  background-color: white;
}

.Contacto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

/* ── Info panel ─────────────────────────────────────── */
.Contacto-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.Contacto-info-p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #555;
}

.Contacto-info-ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.Contacto-info-li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: #333;
}

.Contacto-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  fill: var(--color-main);
}


/* ── Google Maps ──────────────────────────────────── */
.Contacto-map-wrap {
  width: 100%;
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.Contacto-map {
  width: 100%;
  height: 280px;
  display: block;
  border: 0;
}

/* ── Form ───────────────────────────────────────────── */
.Contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.Contacto-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.Contacto-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.Contacto-input,
.Contacto-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  background-color: #fafafa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: none;
}

.Contacto-input:focus,
.Contacto-textarea:focus {
  outline: none;
  border-color: var(--color-main);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(3,166,14,0.12);
}

.Contacto-input.error,
.Contacto-textarea.error {
  border-color: #e53e3e;
}

.Contacto-error {
  font-size: 0.8rem;
  color: #e53e3e;
  min-height: 1rem;
}

.Contacto-btn {
  width: fit-content;
  padding: 0.9rem 2.5rem;
  background-color: var(--color-main);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.Contacto-btn:hover { background-color: #028a0c; }
.Contacto-btn:active { transform: scale(0.97); }
.Contacto-btn:disabled { background-color: #aaa; cursor: not-allowed; }

.Contacto-success {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-main);
  display: none;
}

.Contacto-success.visible { display: block; }

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



  .Contacto-hero-h1 { font-size: 2.8rem; }
  .Contacto-inner { gap: 3rem; }
}

/* ── Responsive móvil ────────────────────────────────── */
@media (max-width: 768px) {
  /* Hero */
  .Contacto-hero {
    padding: 3.5rem 1.25rem;
  }

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

  .Contacto-hero-p {
    font-size: 1rem;
  }

  /* Formulario */
  .Contacto-container {
    padding: 3rem 1.25rem;
  }

  .Contacto-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .Contacto-info-h2 {
    font-size: 1.8rem;
  }

  .Contacto-btn {
    width: 100%;
    text-align: center;
  }
}

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

/* ── Botón WhatsApp (sección info) ───────────────────── */
.Contacto-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #25D366;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  width: fit-content;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}

.Contacto-whatsapp-btn svg {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px;
  fill: white;
}

.Contacto-whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
}

.Contacto-whatsapp-btn:active {
  transform: translateY(0);
}

/* ── Botón flotante WhatsApp ─────────────────────────── */
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.Whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.5);
  animation: wa-pulse 2.2s infinite;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.Whatsapp-float svg {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px;
  fill: white;
}

.Whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
  animation: none;
}

.Whatsapp-float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background-color: #1a1a1a;
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.Whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1a1a1a;
}

.Whatsapp-float:hover .Whatsapp-float-tooltip {
  opacity: 1;
}

@media (max-width: 768px) {
  .Whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }
  .Whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}