/* =========================
   Sabores Expandidos CSS RESET
   ========================= */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #191C1F; /* fallback */
  color: #E8F4EA;
}
ahref, a:visited {
  color: inherit;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
:root {
  --color-primary: #2B423A;
  --color-secondary: #9EB384;
  --color-accent: #FFE9C8;
  --color-bg: #191C1F;
  --color-bg-soft: #233425;
  --color-bg-elevated: #222925;
  --color-text: #E8F4EA;
  --color-headline: #FFE9C8;
  --color-neon: #C3FFE7; /* neon accent green */
  --color-neon-alt: #00DCC3; /* neon teal */
  --color-dark: #15181A;
}

/* =========================
   TYPOGRAPHY
   ========================= */
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: var(--color-headline);
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; line-height: 1.1; }
h2 { font-size: 2rem; margin-bottom: 14px; line-height: 1.15; }
h3 { font-size: 1.25rem; margin-bottom: 10px; line-height: 1.22; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; line-height: 1.22; }
p, ul, ol {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 10px;
}
strong, b {
  color: var(--color-accent);
  font-weight: 700;
}
a {
  color: var(--color-neon-alt);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--color-accent);
  text-shadow: 0 0 6px var(--color-neon);
}
.subheadline {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 26px;
  color: var(--color-secondary);
  text-shadow: 0 0 6px var(--color-neon);
}

/* =========================
   LAYOUT CONTAINERS
   ========================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-elevated);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(23,40,34,0.25), 0 0 1.5px 1.5px var(--color-neon) inset;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  padding: 28px 22px;
  background: var(--color-bg-soft);
  border-radius: 16px;
  box-shadow: 0 2px 24px 2px rgba(23,45,34,0.16), 0 0 8px 1px var(--color-neon-alt) inset;
  transition: box-shadow 0.25s, transform 0.22s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover {
  box-shadow: 0 2px 36px 6px rgba(38,231,181,0.11), 0 0 16px 4px var(--color-neon);
  transform: translateY(-3px) scale(1.015);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section,
  .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.features-grid > div {
  flex: 1 1 210px;
  background: var(--color-bg-soft);
  border-radius: 13px;
  box-shadow: 0 0 9px 1px var(--color-neon) inset,0 2px 16px 0 rgba(23,231,131,0.12);
  padding: 28px 18px 28px 18px;
  transition: box-shadow 0.2s, transform 0.15s;
  min-width: 0;
  max-width: 320px;
}
.features-grid > div:hover {
  box-shadow: 0 1px 22px 4px var(--color-secondary),0 0 16px 4px var(--color-neon-alt); 
  transform: translateY(-4px) scale(1.03);
}
@media (max-width: 900px) {
  .features-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* =========================
   HERO & CTA
   ========================= */
.hero {
  background: linear-gradient(103deg, #223A32 60%, #232A22 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 64px 0 32px 0;
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  max-width: 660px;
}
.hero h1 {
  color: var(--color-accent);
  font-size: 2.8rem;
  line-height: 1.08;
  text-shadow: 0 0 16px var(--color-neon);
}
.hero .btn-primary {
  margin-top: 10px;
}
.cta {
  background: linear-gradient(103deg, #233425 80%, #2B423A 100%);
  box-shadow: 0 4px 36px 0 rgba(0,255,212,0.10), 0 0 4px 1px var(--color-accent) inset;
  text-align: left;
}
.cta .content-wrapper {
  align-items: flex-start;
}

@media (max-width: 700px) {
  .hero {
    padding: 42px 0 22px 0;
    min-height: 180px;
  }
}

/* =========================
   HEADER / NAVIGATION
   ========================= */
header {
  width: 100%;
  background: var(--color-bg-elevated);
  box-shadow: 0 2px 12px 0 rgba(23,40,34,0.10);
  position: relative;
  z-index: 50;
  padding: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
}
header img {
  max-height: 42px;
  display: block;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
}
header nav a {
  color: var(--color-accent);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s, box-shadow .1s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 0 8px 2px var(--color-neon-alt);
}
header .btn-primary {
  margin-left: 18px;
}

/* =========================
   BUTTONS & MICROINTERACTIONS
   ========================= */
.btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 18px;
  padding: 12px 34px;
  font-size: 1.1rem;
  margin-top: 6px;
  box-shadow: 0 1.5px 6px 1.5px var(--color-neon) inset, 0 2px 18px 1px var(--color-bg);
  letter-spacing: 0.04em;
  text-shadow: 0 0 3px var(--color-accent);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow .2s, transform .18s;
}
.btn-primary {
  background: var(--color-neon-alt);
  color: var(--color-primary);
  text-shadow: 0 0 6px #fff, 0 0 2px var(--color-neon-alt);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 0 16px 2px var(--color-neon-alt),0 6px 28px 4px var(--color-primary);
  transform: scale(1.03);
}
.btn-secondary {
  background: #222925;
  color: var(--color-neon-alt);
  border: 1.5px solid var(--color-neon-alt);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-neon-alt);
  color: #233425;
  box-shadow: 0 0 18px 3px var(--color-accent),0 0 8px 2px var(--color-neon);
  transform: translateY(-1px) scale(1.025);
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFE9C8ee;
  color: #21272C;
  border-radius: 14px;
  box-shadow: 0 4px 20px 0 rgba(255,233,200,0.21),0 0 12px 2px var(--color-neon) inset;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .15s;
  position: relative;
}
.testimonial-card blockquote {
  color: #171717;
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 8px 0;
}
.testimonial-card strong {
  color: var(--color-primary);
}
.testimonial-card:hover {
  box-shadow: 0 2px 32px 4px var(--color-secondary),0 0 14px 3px #C3FFE7;
  transform: translateY(-2px) scale(1.02);
  z-index: 2;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: var(--color-bg-elevated);
  padding: 36px 0 36px 0;
  width: 100%;
  border-top: 2.5px solid var(--color-primary);
  box-shadow: 0 -3px 26px 0 rgba(23,45,34,0.13);
}
footer .container {
  width: 100%;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  padding: 0;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.98rem;
}
footer nav a {
  color: var(--color-accent);
  border-radius: 4px;
  padding: 3.5px 7.5px;
  transition: background 0.13s, color 0.13s;
  font-family: 'Montserrat', Arial, sans-serif;
}
footer nav a:hover {
  color: var(--color-primary);
  background: var(--color-secondary);
}
footer img {
  max-height: 40px;
}
footer .contact-brief {
  font-size: 0.98rem;
  color: var(--color-text);
  line-height: 1.45;
  font-family: 'Open Sans', Arial, sans-serif;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  footer nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* =========================
   MOBILE NAV STYLES & BURGER
   ========================= */
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 201;
  font-size: 2.1rem;
  color: var(--color-accent);
  background: none;
  border: none;
  padding: 7px 16px 7px 8px;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 0 4px 1px var(--color-neon) inset;
  transition: background .15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,44,40,0.98);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.6,.1,.35,1);
  box-shadow: 0 0 52px 2px var(--color-secondary) inset;
  padding: 22px 0 0 13px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.26rem;
  color: var(--color-accent);
  background: none;
  border: none;
  align-self: flex-end;
  margin-right: 26px;
  margin-bottom: 14px;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 12px;
  transition: background .13s;
}
.mobile-menu-close:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
  margin-left: 10px;
}
.mobile-nav a {
  color: var(--color-neon-alt);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.34rem;
  font-weight: 700;
  text-shadow: 0 0 6px #C3FFE7;
  padding: 7px 6px;
  border-radius: 7px;
  transition: background .15s, color 0.17s;
}
.mobile-nav a:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}
@media (max-width: 900px) {
  header nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline;
  }
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: #222925ef;
  box-shadow: 0 -7px 30px 0 #15181a99, 0 0 16px 3px var(--color-neon-alt) inset;
  color: var(--color-text);
  padding: 28px 18px 20px 18px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  font-size: 1.02rem;
  border-radius: 13px 13px 0 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .35s, transform .45s cubic-bezier(.68,0,.3,1);
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-consent-banner .btn-cookie {
  padding: 8px 22px;
  border-radius: 11px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  border: none;
  margin-left: 3px;
  margin-right: 2px;
  box-shadow: 0 1.5px 6px 1.5px var(--color-neon) inset;
  cursor: pointer;
  transition: background .16s, color .16s, box-shadow .16s;
}
.cookie-consent-banner .btn-cookie-accept {
  background: var(--color-neon-alt);
  color: var(--color-primary);
}
.cookie-consent-banner .btn-cookie-accept:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-consent-banner .btn-cookie-reject {
  background: #1d2120;
  color: var(--color-neon-alt);
  border: 1.5px solid var(--color-neon-alt);
}
.cookie-consent-banner .btn-cookie-reject:hover {
  background: var(--color-neon-alt);
  color: #243625;
}
.cookie-consent-banner .btn-cookie-settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-consent-banner .btn-cookie-settings:hover {
  background: var(--color-neon-alt);
  color: var(--color-primary);
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 13px;
    font-size: 0.95rem;
    align-items: flex-start;
    padding: 20px 8px 12px 8px;
  }
  .cookie-consent-banner .cookie-actions {
    gap: 8px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  background: #222925f0;
  color: var(--color-text);
  transform: translate(-50%, -50%) scale(1);
  z-index: 400;
  min-width: 320px;
  max-width: 94vw;
  padding: 38px 28px 29px 28px;
  border-radius: 14px;
  box-shadow: 0 9px 56px 0 #171f1b44, 0 0 18px 5px var(--color-neon-alt) inset;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
  pointer-events: all;
  transition: opacity .33s, transform .32s;
}
.cookie-modal.hide {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95);
  pointer-events: none;
}
.cookie-modal h3 {
  color: var(--color-accent);
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-modal .cookie-switch {
  appearance: none;
  width: 46px;
  height: 24px;
  border-radius: 24px;
  background: #334a3a;
  border: 2px solid var(--color-neon-alt);
  position: relative;
  outline: none;
  transition: background .16s;
  cursor: pointer;
}
.cookie-modal .cookie-switch:checked {
  background: var(--color-neon-alt);
}
.cookie-modal .cookie-switch:before {
  content: '';
  display: block;
  position: absolute;
  left: 4px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left .19s;
}
.cookie-modal .cookie-switch:checked:before {
  left: 24px;
  background: var(--color-primary);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 23px;
  font-size: 1.6rem;
  color: var(--color-accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 7px;
  transition: background .14s;
}
.cookie-modal .cookie-modal-close:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
@media (max-width: 480px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 20px 6vw 15px 6vw;
  }
}

/* =========================
   ADDITIONAL: SPACING, CARDS, ETC
   ========================= */
ul, ol {
  padding-left: 20px;
  margin-bottom: 18px;
  color: var(--color-text);
}
ul li, ol li {
  margin-bottom: 6px;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media (max-width: 700px) {
  .card-container, .card-grid, .features-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}
/* =========================
   ANIMATIONS & MICROINTERACTIONS
   ========================= */
.btn-primary, .btn-secondary, .card, .testimonial-card, .features-grid > div, .mobile-nav a, .cookie-consent-banner, .cookie-modal {
  transition-timing-function: cubic-bezier(.18, .7, .36, 1.02);
}

/* =========================
   BRAND ACCENT DECORATIONS
   ========================= */
.hero::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  box-shadow: 0 0 100px 22px var(--color-neon) inset, 0 0 80px 22px #232A22;
}
.hero .container, .cta .container {
  position: relative;
  z-index: 2;
}

/* =========================
   RESPONSIVE: SECTIONS & TYPOGRAPHY
   ========================= */
@media (max-width: 700px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .section {
    padding: 24px 8px;
  }
  .footer .container {
    padding: 0 8px;
  }
}

/* Ensuring min spacing between all content cards/sections */
section, .section {
  margin-bottom: 60px;
}
@media (max-width:600px){
  section, .section { margin-bottom: 38px; }
}
.card, .testimonial-card, .features-grid > div {
  margin-bottom: 20px;
}

/* Prevent absolute positioning overlap (except decorative elements) */
/* All layout packagings use only flex + gap. */

/* =========================
   UTILITY CLASSES
   ========================= */
.text-center { text-align: center; }
.align-center { align-items: center; justify-content: center !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-20 { margin-top: 20px !important; }

/* =========================
   SCROLLBAR (NEON SCROLL)
   ========================= */
::-webkit-scrollbar {
  width: 9px;
  background: #222925;
}
::-webkit-scrollbar-thumb {
  background: var(--color-neon-alt);
  border-radius: 12px;
}

/* =========================
   FORM FIELDS (Optional for contacto)
   ========================= */
input, textarea, select {
  padding: 10px 14px;
  border-radius: 7px;
  background: #222925;
  border: 1.4px solid var(--color-neon-alt);
  color: var(--color-text);
  margin-bottom: 13px;
  font-size: 1rem;
  outline: none;
  transition: border .18s, box-shadow .16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.7px solid var(--color-accent);
  box-shadow: 0 0 8px 1px var(--color-neon);
}

/* END OF FILE */
