/* --- RESET & NORMALIZE --- */
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;
}

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F6F4EE;
  color: #23242B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { max-width: 100%; vertical-align: middle; border: 0; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; cursor: pointer; transition: color .2s; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #3C4251;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.3rem; line-height: 1.13; margin-bottom: 18px; }
h2 { font-size: 1.5rem; line-height: 1.23; margin-bottom: 14px; }
h3 { font-size: 1.18rem; margin-bottom: 12px; }
p, blockquote, li, span { font-size: 1rem; }
strong { font-weight: 700; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* -----------------
   HEADER, NAV & LOGO
------------------- */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 16px rgba(60,66,81,.07);
  transition: box-shadow .2s;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 24px;
}
header img {
  max-height: 46px;
  margin-right: 12px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 16px;
  border-radius: 22px;
  color: #3C4251;
  transition: background 0.20s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: #B5935A;
  color: #fff;
}
.cta-primary {
  display: inline-block;
  background: #B5935A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 10px 27px;
  border: none;
  border-radius: 25px;
  box-shadow: 0 3px 22px rgba(181,147,90,0.22), 0 1.5px 5px rgba(181,147,90,0.11);
  margin-left: 16px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.24s, transform 0.16s, box-shadow 0.24s;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: #94702F;
  transform: translateY(-2px) scale(1.04) rotate(-1.5deg);
  box-shadow: 0 5px 32px rgba(181,147,90,0.33), 0 2px 6px rgba(181,147,90,0.14);
}
.cta-secondary {
  display: inline-block;
  background: #fff;
  color: #B5935A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  padding: 9px 22px;
  border-radius: 24px;
  border: 2px solid #B5935A;
  margin-top: 14px;
  transition: background .2s, color .19s, box-shadow .2s;
  box-shadow: 0 3px 12px rgba(181,147,90,0.08);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #B5935A;
  color: #fff;
  box-shadow: 0 6px 24px rgba(181,147,90,0.18);
}

/* Burger Menu Button */
.mobile-menu-toggle {
  display: none;
  font-size: 2.15rem;
  background: transparent;
  border: none;
  line-height: 1;
  color: #3C4251;
  margin-left: 16px;
  border-radius: 11px;
  transition: background .15s;
  cursor: pointer;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F6F4EE;
  outline: none;
}

/* -----------------
   HERO SECTIONS
------------------- */
.hero-section {
  background: #fffbb6;
  background: linear-gradient(120deg, #ffeea3 50%, #fff 120%);
  padding: 60px 0 44px 0;
  margin-bottom: 60px;
}
.hero-section .container {
  justify-content: center;
  align-items: stretch;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin: 0 auto;
  animation: hero-enter 0.9s cubic-bezier(.6,-0.01,.3,1.13);
  will-change: transform;
  max-width: 600px;
}
@keyframes hero-enter {
  0% { opacity: 0; transform: translateY(30px) scale(.97) skewY(2deg); }
  100% { opacity: 1; transform: none; }
}

/* -----------------
   SECTION, SPACING & LAYOUT
------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 18px rgba(60,66,81,0.08);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section {
  gap: 18px;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 10px rgba(60,66,81,.08);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s, transform .16s;
}
.card:hover {
  box-shadow: 0 4px 32px rgba(181,147,90,0.13), 0 2px 8px rgba(60,66,81,0.13);
  transform: scale(1.02) rotate(-1deg);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(60,66,81,0.11);
  border-left: 7px solid #B5935A;
  position: relative;
  transition: transform .13s, box-shadow .19s;
  color: #23242B; /* dark text for contrast */
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  font-size: 1.06rem;
  color: #3C4251;
  background: rgba(255, 251, 182, 0.25);
  padding: 16px 12px;
  border-radius: 9px;
  margin-right: 12px;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: #94702F;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.testimonial-card:hover {
  transform: scale(1.01) rotate(-0.6deg);
  box-shadow: 0 7px 32px rgba(181,147,90,0.16), 0 4px 13px rgba(60,66,81,0.11);
}

/* Section Titles */
.section > .container > h2 {
  font-size: 1.6rem;
  margin-bottom: 22px;
  position: relative;
  display: block;
  width: 100%;
}

/* List Styling */
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 8px;
}
ul li, ol li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 0.18em;
  font-size: 1rem;
  line-height: 1.65;
}
ul li::before {
  content: '\2022';
  color: #B5935A;
  font-size: 1.25em;
  position: absolute;
  left: -1.2em;
  top: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
ol li::marker {
  color: #B5935A;
  font-weight: bold;
}

/* --- Price tag (Oferta) --- */
.price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #3C4251;
  background: #f9eac6;
  display: inline-block;
  padding: 2px 10px;
  margin-left: 6px;
  border-radius: 12px;
  font-size: .99rem;
}

/* -----------------
   FOOTER
------------------- */
footer {
  background: #3C4251;
  color: #fff;
  padding: 38px 0 24px 0;
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.footer-menu {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 16px;
}
.footer-menu a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  opacity: 0.82;
  transition: color .22s, opacity .16s;
  padding: 0 8px;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #ffe07a;
  opacity: 1;
}
.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-brand img {
  width: 38px;
  height: 38px;
}
.footer-brand span {
  font-size: .97rem;
  opacity: 0.85;
}

/* -----------------
   MOBILE MENU OVERLAY
------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 80px 0 rgba(60,66,81,0.10);
  z-index: 300;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.70,.25,.32,1.29);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px 28px 16px 24px;
  gap: 28px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  box-shadow: 0 0 80px 0 rgba(60,66,81,0.17);
  transition: transform .28s cubic-bezier(.70,.25,.32,1.29), opacity .15s;
}
.mobile-menu-close {
  background: #fff3c1;
  color: #3C4251;
  border: none;
  outline: none;
  font-size: 2.3rem;
  align-self: flex-end;
  border-radius: 50%;
  width: 46px; height: 46px;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 1.5px 7px rgba(60,66,81,0.12);
  margin-bottom: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: background .19s, color .19s;
}
.mobile-menu-close:hover,.mobile-menu-close:focus {
  background: #ffe07a;
  color: #94702F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #3C4251;
  background: #FFFBEB;
  padding: 12px 24px;
  border-radius: 20px;
  width: 100%;
  margin-bottom: 4px;
  transition: background 0.18s, color 0.18s, transform .12s;
  box-shadow: 0 2px 7px rgba(181,147,90,0.08);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B5935A;
  color: #fff;
  transform: scale(1.04);
}

/* -----------------
   COOKIE CONSENT BANNER & MODAL
------------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  z-index: 9000;
  background: #fffbb6;
  border-top: 2px solid #B5935A;
  box-shadow: 0 -2px 20px rgba(60,66,81,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 20px 26px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: cookie-slideup .7s cubic-bezier(.70,.25,.32,1.2);
}
@keyframes cookie-slideup {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-left: auto;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .99rem;
  font-weight: 700;
  cursor: pointer;
  padding: 7px 19px;
  border-radius: 18px;
  border: none;
  transition: background .19s, color .15s, transform .15s;
}
.cookie-banner .accept {
  background: #B5935A; color: #fff; box-shadow: 0 1.5px 7px rgba(181,147,90,0.13);
}
.cookie-banner .accept:hover,.cookie-banner .accept:focus {
  background: #94702F;
  transform: scale(1.04);
}
.cookie-banner .reject {
  background: #fff; color: #B5935A; border: 2px solid #B5935A;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #ffe07a; color: #3C4251;
}
.cookie-banner .settings {
  background: transparent; color: #94702F; border: 2px solid #B5935A;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #fffbb6; color: #3C4251;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  z-index: 9100;
  background: rgba(60,66,81,0.37);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  animation: modal-fade-in .36s;
}
@keyframes modal-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 9px 64px rgba(60,66,81,0.19);
  padding: 36px 28px 26px 28px;
  min-width: 310px;
  max-width: 98vw;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modal-pop-in .4s cubic-bezier(.65,-0.08,.21,1.17);
}
@keyframes modal-pop-in {
  0% { transform: scale(0.8) translateY(60px); }
  100% { transform: none; }
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: transparent; color: #3C4251;
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 36px; height: 36px;
  transition: background .22s;
  cursor: pointer;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: #fffbb6; color: #94702F;
}
.cookie-modal h2 {
  margin-bottom: 10px;
  color: #3C4251;
  font-size: 1.25rem;
}
.cookie-modal ul {
  list-style: none;
  margin: 0; padding: 0;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #F6F4EE;
  padding: 10px 0;
}
.cookie-modal .cookie-category input[type='checkbox'] {
  width: 21px; height: 21px;
  accent-color: #B5935A;
}
.cookie-modal .cookie-category .essential {
  color: #B5935A;
  font-weight: bold;
  font-size: .96rem;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .cookie-modal-actions button {
  padding: 7px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .99rem;
  border-radius: 16px;
}
.cookie-modal .accept {
  background: #B5935A; color: #fff;
}
.cookie-modal .accept:hover, .cookie-modal .accept:focus {
  background: #94702F;
}
.cookie-modal .close {
  background: #fff3c1; color: #94702F;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  background: #ffe07a; color: #3C4251;
}


/* -----------------
   ANIMATIONS / MICRO-INTERACTIONS
------------------- */
a, button, .cta-primary, .cta-secondary, .mobile-nav a, .footer-menu a {
  transition: color .17s, background .21s, box-shadow .18s, transform .18s;
}

.section, .content-wrapper, .card, .testimonial-card {
  animation: fade-up-in .85s cubic-bezier(.47,.35,.29,1.12);
}
@keyframes fade-up-in {
  0% { opacity: 0; transform: translateY(20px) scale(.97); }
  100% { opacity: 1; transform: none; }
}

/* Fun pinch-wiggle for CTA */
.cta-primary {
  position: relative;
  animation: cta-wiggle 3.7s infinite cubic-bezier(.36,0,.64,1.2) alternate;
}
@keyframes cta-wiggle {
  0%, 92% { transform: none; }
  93% { transform: scale(1.03) rotate(-2deg); }
  97% { transform: scale(.99) rotate(.6deg); }
  100% { transform: none; }
}

/* --- Responsive & Playful Elements --- */
@media (max-width: 1025px) {
  .container { max-width: 98vw; }
  header .container { gap: 12px; }
  header nav { gap: 10px; }
}

@media (max-width: 900px) {
  .hero-section { padding: 42px 0 32px 0; }
  .section { padding: 32px 8px; }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 8px;
    min-height: 60px;
  }
  header nav {
    display: none;
  }
  .cta-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
    z-index: 500;
  }
  .mobile-menu { padding-top: 18px; }
  .container { padding: 0 6px; }
  .section { padding: 24px 1px; margin-bottom: 34px; border-radius: 19px; }
  .footer-menu { gap: 10px; flex-wrap: wrap; font-size: .98rem; }
}

@media (max-width: 600px) {
  h1 { font-size: 1.41rem; }
  h2 { font-size: 1.07rem; }
  .hero-section { padding: 26px 0 18px 0; }
  .section { padding: 12px 1px; }
  .testimonial-card { padding: 13px 8px; gap: 10px; border-left: 5px solid #B5935A; }
  .card { padding: 14px 9px; border-radius: 13px; }
  .footer-brand img { width: 28px; height: 28px; }
  .footer-menu { flex-direction: column; align-items: flex-start; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 14px 7px; }
  .cookie-banner .cookie-btns { margin-left: 0; gap: 10px; }
  .cookie-modal .cookie-modal-content { padding: 18px 8px 12px 8px; border-radius: 17px; }
}
@media (max-width: 440px) {
  .footer-brand span { font-size: .87rem; }
}

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;600&family=Open+Sans:wght@400;600;700&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: -0.01em;
}

/* -----------------
   PLAYFUL/DYNAMIC VISUALS
------------------- */
.hero-section, .section, .testimonial-card, .card {
  box-shadow: 0 2px 18px rgba(181,147,90,0.07);
  border-radius: 20px;
}
.hero-section {
  border-radius: 0 0 30px 30px;
  box-shadow: 0 8px 53px rgba(255,238,163,0.15);
}
.cta-primary, .cta-secondary, .mobile-menu-close {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* --- Misc Utility --- */
::-webkit-input-placeholder { color: #8D8E98; }
::-moz-placeholder { color: #8D8E98; }
:-ms-input-placeholder { color: #8D8E98; }
::placeholder { color: #8D8E98; }

/* Remove unwanted tap highlight */
html { -webkit-tap-highlight-color: rgba(0,0,0,0); }

/* --- Accessibility --- */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus, .mobile-nav a:focus {
  outline: 2px dashed #94702F;
  outline-offset: 2px;
  background: #fffbb6;
}

/* --- Ensure no overlapping & gaps --- */
.section, .card, .testimonial-card, .content-grid, .card-container, .text-image-section, .feature-item {
  margin-bottom: 20px;
}
.card-container, .content-grid, .text-image-section, .feature-item {
  gap: 20px;
}

/* --- For dynamic flair: playful floating dots (decorative only) --- */
.decor-dot {
  position: absolute;
  border-radius: 50%;
  background: #ffe07a;
  width: 24px; height: 24px;
  top: -12px; left: -12px;
  z-index: 0;
  opacity: 0.18;
  animation: float-dot 7s infinite alternate linear;
}
@keyframes float-dot {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(12px) scale(1.13); }
}

/* --- End of Style --- */
