/* =============================================================
   Scandinavian Clean CSS for Radev Chara Cultura
   Author: Senior CSS Developer & UI Designer
   ============================================================= */

/* 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;
  box-sizing: border-box;
  vertical-align: baseline;
}
html {
  font-size: 16px;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background: #F7F5F2;
  color: #22313A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}
a {
  color: #17425A;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #E4A000;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong { font-weight: 700; }

/* TYPOGRAPHY ---------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #17425A;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.3rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 1.6rem; line-height: 1.2; margin-bottom: 16px; }
h3 { font-size: 1.2rem; line-height: 1.3; margin-bottom: 8px; }

p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #22313A;
}

/* BUTTONS & CTAS ------------------------------------------ */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #17425A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 28px;
  padding: 12px 36px;
  margin-top: 18px;
  box-shadow: 0 3px 10px rgba(23,66,90,0.09);
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .18s;
  text-decoration: none;
  letter-spacing: .03em;
}
.cta-primary:hover, .cta-primary:focus {
  background: #E4A000;
  color: #17425A;
  box-shadow: 0 5px 14px rgba(23,66,90,0.13);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

/* LAYOUT WRAPPERS ----------------------------------------- */
.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section, main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.text-section {
  max-width: 650px;
}

.hero {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(23,66,90,0.03), 0 1.5px 5px rgba(23,66,90,0.03);
  margin-bottom: 40px;
}
.hero h1,
.hero p {
  color: #17425A;
}

/* SPECIFIC LAYOUT FLEX PATTERNS --------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 16px rgba(23,66,90,0.05);
  padding: 28px 24px;
  flex: 1 1 289px;
  min-width: 230px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .2s, transform .14s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 28px rgba(23,66,90,0.10);
  transform: translateY(-2px) scale(1.02);
  z-index: 2;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 28px 22px 24px;
  background: #fff;
  color: #17425A;
  font-size: 1.06rem;
  line-height: 1.7;
  box-shadow: 0 2.5px 12px rgba(23,66,90,0.06);
  border-radius: 16px;
  margin-bottom: 22px;
  border-left: 5px solid #E4A000;
  max-width: 650px;
  transition: box-shadow .23s;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #22313A;
}
.testimonial-card span {
  opacity: 0.65;
  font-size: 0.98rem;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 8px 24px rgba(23,66,90,0.13);
}

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

/* ICONS & BADGES ------------------------------------------ */
ul li img, .contact-footer img, .filters img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 0;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
}

/* FILTERS BAR --------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin: 18px 0 18px 0;
}
.filters span {
  background: #FAF8F3;
  color: #17425A;
  border-radius: 15px;
  padding: 5px 15px;
  font-size: 0.98rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

/* NAVIGATION ---------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2.5px 16px rgba(23,66,90,0.04);
  position: sticky;
  top: 0;
  z-index: 210;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0px;
  max-width: 1152px;
  margin: 0 auto;
  position: relative;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
nav li {
  display: flex;
  align-items: center;
}
nav li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 5px 8px;
  font-size: 1rem;
  border-radius: 7px;
  transition: background .18s, color .18s;
}
nav li a:hover, nav li a:focus {
  background: #E4A00011;
  color: #E4A000;
  outline: none;
}
.logo-link img {
  width: 60px;
  height: auto;
  margin-right: 12px;
  border-radius: 0;
}

/* MOBILE NAVIGATION --------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #F7F5F2;
  border: none;
  border-radius: 6px;
  font-size: 2.4rem;
  color: #17425A;
  padding: 8px 16px;
  cursor: pointer;
  margin-left: 20px;
  transition: background .2s, color .2s;
  z-index: 320;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E4A00033;
  color: #E4A000;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: -6px 2px 26px rgba(23,66,90,0.10);
  z-index: 2999;
  display: flex;
  flex-direction: column;
  padding: 34px 26px 26px 32px;
  transition: transform .36s cubic-bezier(.37,.16,.085,1.09);
  transform: translateX(0%);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  left: 0;
  pointer-events: auto;
  opacity: 1;
  transform: translateX(-100%);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #17425A;
  font-size: 2.2rem;
  align-self: flex-end;
  margin-bottom: 22px;
  cursor: pointer;
  z-index: 3999;
  transition: color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E4A000;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: flex-start;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #17425A;
  background: #F7F5F2;
  padding: 13px 14px;
  border-radius: 8px;
  width: 100%;
  transition: background .18s, color .18s;
  min-width: 200px;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #E4A00011;
  color: #E4A000;
  outline: none;
}

/* FOOTER -------------------------------------------------- */
footer {
  background: #fff;
  border-top: 1px solid #EDEBE6;
  box-shadow: 0 -2px 14px rgba(23,66,90,0.04);
  padding: 40px 0 20px 0;
  margin-top: 40px;
  font-size: 0.97rem;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
footer ul {
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
footer ul a {
  color: #17425A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  transition: color .17s;
}
footer ul a:hover, footer ul a:focus {
  color: #E4A000;
  outline: none;
}
.contact-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  opacity: 0.84;
}
.contact-footer span {
  display: flex;
  align-items: center;
  gap: 7px;
}

/* COMMON LISTS -------------------------------------------- */
ul {
  margin-bottom: 8px;
  font-size: 1rem;
}
ul li, ol li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', Arial, sans-serif;
  padding-bottom: 10px;
  color: #22313A;
}
ul li:last-child {
  padding-bottom: 0;
}

section ul {
  flex-direction: column;
  gap: 9px;
}

/* RESPONSIVE CONTENT AND DESIGN --------------------------- */
@media (max-width: 1024px) {
  nav {
    flex-wrap: wrap;
    padding-left: 12px;
    padding-right: 12px;
  }
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding-left: 6px;
    padding-right: 6px;
  }
  nav ul {
    gap: 13px;
    font-size: 0.97rem;
  }
}

@media (max-width: 768px) {
  nav ul,
  nav .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    z-index: 3300;
  }
  .container {
    padding: 0 2vw 0 2vw;
  }
  .section, main section {
    padding: 18px 6px;
    margin-bottom: 34px;
  }
  .hero {
    padding: 8px 0 20px 0;
    border-radius: 8px;
  }
  .testimonial-card {
    padding: 17px 13px 18px 13px;
    border-radius: 12px;
    margin-bottom: 15px;
  }
  .content-wrapper, .card-container, .content-grid {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .footer .container, .contact-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  h1 {
    font-size: 1.55rem;
    margin-bottom: 13px;
  }
  h2 {
    font-size: 1.11rem;
    margin-bottom: 11px;
  }
  .card {
    margin-bottom: 14px;
    padding: 14px 12px;
    border-radius: 8px;
    min-width: 160px;
    max-width: 100%;
  }
  .card-container, .content-grid {
    gap: 10px;
  }
}

@media (max-width: 530px) {
  .logo-link img {
    width: 120px;
  }
  .section, main section {
    padding: 7px 2px;
    margin-bottom: 16px;
  }
  .hero {
    margin-bottom: 20px;
  }
}

/* SCROLLBARS & ACCESSIBILITY ------------------------------ */
::-webkit-scrollbar {
  width: 10px;
  background: #FAF7F1;
}
::-webkit-scrollbar-thumb {
  background: #E4A00077;
  border-radius: 7px;
}

/* MICROINTERACTIONS & TRANSITIONS ------------------------- */
section, .card, .testimonial-card, .cta-primary, .mobile-menu, .mobile-menu-toggle {
  transition: box-shadow .22s, background .17s, transform .15s, color .17s;
}
h1, h2, h3, h4, h5, h6, p, a, li {
  transition: color .18s, background .18s, letter-spacing .14s;
}

/* COOKIE CONSENT BANNER (FIXED BOTTOM) ------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5010;
  background: #17425A;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 16px 30px;
  box-shadow: 0 -6px 28px rgba(23,66,90,0.13);
  border-radius: 16px 16px 0 0;
  opacity: 1;
  transition: transform .42s, opacity .19s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(140%);
  pointer-events: none;
}
.cookie-banner__text {
  max-width: 480px;
  font-size: 1.02rem;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-btn {
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  border-radius: 22px;
  padding: 8px 22px;
  cursor: pointer;
  transition: background .19s, color .16s, transform .14s;
  margin-left: 3px;
  margin-right: 3px;
}
.cookie-btn.accept {
  background: #E4A000;
  color: #17425A;
  font-weight: 700;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff3c3;
  color: #17425A;
}
.cookie-btn.reject {
  background: #fff;
  color: #17425A;
  border: 1px solid #edeae1;
  font-weight: 500;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #E4A00022;
  color: #E4A000;
}
.cookie-btn.settings {
  background: #F7F5F2;
  color: #17425A;
  font-weight: 500;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E4A00033;
  color: #E4A000;
}

/* COOKIE MODAL -------------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23,66,90, 0.18);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #17425A;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(23,66,90,0.13);
  max-width: 430px;
  width: 95%;
  padding: 32px 8vw 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  transform: translateY(-60px) scale(.96);
  opacity: 1;
  transition: opacity .23s, transform .28s;
}
.cookie-modal h2 {
  margin-bottom: 6px;
  font-size: 1.2rem;
  color: #17425A;
}
.cookie-modal .cookie-modal-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 0 4px 0;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 7px;
}
.cookie-toggle-row label {
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}
.cookie-toggle-switch {
  width: 40px;
  height: 22px;
  background: #F7F5F2;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background .18s;
}
.cookie-toggle-switch[aria-checked="true"] {
  background: #E4A000;
}
.cookie-toggle-switch::before {
  content: '';
  position: absolute;
  top: 2.8px;
  left: 3.5px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 1px 2px rgba(100,100,100,0.09);
  transition: transform .19s cubic-bezier(.24,.92,.36,1.04), background .17s;
}
.cookie-toggle-switch[aria-checked="true"]::before {
  transform: translateX(17px);
  background: #17425A;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 14px;
  background: none;
  border: none;
  color: #17425A;
  font-size: 1.7rem;
  cursor: pointer;
  z-index: 10;
  transition: color .12s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: #E4A000;
  outline: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 17px;
  margin-top: 13px;
  justify-content: flex-end;
}

@media (max-width: 560px) {
  .cookie-banner {
    flex-direction: column;
    gap: 17px;
    padding: 12px 8px;
    border-radius: 10px 10px 0 0;
    font-size: 0.99rem;
  }
  .cookie-modal {
    padding: 22px 4vw 16px 12px;
    font-size: 0.98rem;
  }
}

/* ANIMATIONS ---------------------------------------------- */
@keyframes menuSlideIn {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0); }
}
@keyframes menuSlideOut {
  0% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}
@keyframes cookieShow {
  from { opacity: 0; transform: translateY(60%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cookieHide {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(100%); }
}


/* END OF STYLE -------------------------------------------- */
