/* CSS 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, 
main, 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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #F9FAFB;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2B3540;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: #1A365D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFD600;
  outline: none;
}
ul, ol {
  list-style: none;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
th, td {
  text-align: left;
  padding: 0.75em 1em;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}


/* BASE TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.75rem;
  letter-spacing: -1px;
  font-weight: 700;
  color: #1A365D;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1A365D;
  margin-bottom: 20px;
  line-height: 1.18;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1A365D;
  margin-bottom: 14px;
  line-height: 1.22;
}
h4, .h4 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1A365D;
  margin-bottom: 10px;
}
p, .subheadline {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #2B3540;
}
.subheadline {
  font-size: 1.125rem;
  color: #656F7A;
  font-weight: 400;
}
blockquote {
  font-style: italic;
  color: #1A365D;
  margin: 0 0 10px 0;
  font-size: 1.1rem;
  line-height: 1.6;
  quotes: "\201C" "\201D" "\2018" "\2019";
}
blockquote:before { content: open-quote; color: #FFD600; font-size: 2.5rem; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
blockquote:after { content: close-quote; display: none; }
strong { font-weight: 600; color: #1A365D; }


/* LAYOUT CONTAINERS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(42,55,71,0.07);
}

/* Section gap override for last section */
main > section:last-child, footer > section:last-child {
  margin-bottom: 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(42,55,71,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(26,54,93,0.10);
}

.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: 20px;
  padding: 20px;
  background: #F3F5F7;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(26,54,93,0.04);
  border-left: 5px solid #FFD600;
  max-width: 520px;
}
.testimonial-info {
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  color: #1A365D;
  opacity: 0.82;
}

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


/* FLEX GRID VARIANTS (BRAND PAGES) */
.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.feature-grid li, .feature-list li {
  background: #F3F5F7;
  border-radius: 14px;
  padding: 24px 20px;
  flex: 1 1 220px;
  max-width: 300px;
  min-width: 215px;
  box-shadow: 0 1px 6px rgba(26,54,93,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.feature-grid img, .feature-list img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}

/**| SERVICES GRID |
-------------------------*/
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  width: 100%;
}
.services-grid > div {
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 280px;
  padding: 22px 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(26,54,93,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
  margin-bottom: 20px;
}
.services-grid > div:hover {
  box-shadow: 0 4px 18px rgba(26,54,93,0.10);
}
.services-grid h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  color: #1A365D;
  font-weight: 600;
}
.services-grid .price {
  margin-top: 20px;
  color: #FFD600;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Highlight badges (Frota) */
.highlight-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.highlight-badges span {
  background: #fff;
  color: #1A365D;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  padding: 6px 18px;
  box-shadow: 0 2px 8px rgba(26,54,93,0.06);
  margin-right: 6px;
}

/* FAQ LIST & ACCORDION */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-list > div {
  flex: 1 1 250px;
  background: #F3F5F7;
  border-radius: 10px;
  padding: 20px 18px;
  box-shadow: 0 1px 5px rgba(42,55,71,0.04);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: #F3F5F7;
  border-radius: 10px;
  padding: 20px 18px;
  box-shadow: 0 1px 5px rgba(42,55,71,0.04);
}

/* ADDRESS & CONTACT BLOCKS */
.address-block, .email-block, .working-hours, .contact-details {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #1A365D;
  background: #F6F8F9;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(26,54,93,0.03);
}

.contact-info-summary > div {
  margin-bottom: 5px;
}

/* Map location stub */
.map-location {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* TEXT SECTION */
.text-section {
  margin-bottom: 20px;
}
.text-section ul {
  margin-bottom: 18px;
  padding-left: 24px;
  list-style-type: disc;
}
.text-section li {
  margin-bottom: 7px;
  color: #42505F;
  font-size: 1rem;
}
.text-section .tagline {
  font-size: 1.1rem;
  color: #FFD600;
  font-weight: 500;
  margin-top: 8px;
}

/* ORDERED/LIST STYLES */
ol {
  list-style-type: decimal;
  margin: 0 0 18px 20px;
  color: #42505F;
}
li strong {
  color: #1A365D;
  font-weight: 600;
}

/* TABLE STYLES */
table {
  width: 100%;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 10px rgba(26,54,93,0.04);
}
thead {
  background: #F3F5F7;
}
th {
  color: #1A365D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
}
td {
  color: #2B3540;
  font-size: 1rem;
}
tr:not(:last-child) {
  border-bottom: 1px solid #E7EAED;
}

/* BUTTONS */
.button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 24px;
  padding: 12px 34px;
  background: #1A365D;
  color: #fff;
  font-size: 1.08rem;
  border: none;
  outline: none;
  box-shadow: 0 2px 10px rgba(26,54,93,0.07);
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, color 0.24s, box-shadow 0.18s;
}
.button.primary {
  background: #1A365D;
  color: #fff;
}
.button.primary:hover, .button.primary:focus {
  background: #FFD600;
  color: #1A365D;
  box-shadow: 0 3px 16px rgba(26,54,93,0.12);
}
.button.secondary {
  background: #FFD600;
  color: #1A365D;
}
.button.secondary:hover, .button.secondary:focus {
  background: #1A365D;
  color: #FFD600;
}
.button.outline {
  background: transparent;
  color: #1A365D;
  border: 2px solid #1A365D;
}
.button.outline:hover, .button.outline:focus {
  background: #1A365D;
  color: #fff;
}

/* BADGE (for optional/accent) */
.badge {
  display: inline-block;
  background: #FFD600;
  color: #1A365D;
  font-size: 1rem;
  border-radius: 14px;
  padding: 4px 14px;
  font-weight: 600;
  margin-left: 8px;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(42,55,71,0.05);
  position: relative;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px 16px 20px;
}
.main-nav > a img {
  height: 42px;
  width: auto;
  margin-right: 20px;
}
.main-nav ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #1A365D;
  font-weight: 500;
  padding: 9px 12px;
  border-radius: 8px;
  transition: background 0.16s, color 0.17s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #F3F5F7;
  color: #FFD600;
}
.main-nav .button.primary {
  margin-left: 18px;
  font-size: 1.05rem;
  padding: 10px 28px;
}

/* Footer styles */
footer {
  background: #F9FAFB;
  color: #1A365D;
  padding-top: 20px;
  padding-bottom: 0;
  margin-top: 50px;
  border-top: 1px solid #E7EAED;
}
footer .container {
  padding-top: 20px;
  padding-bottom: 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #1A365D;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  opacity: 0.85;
  transition: color 0.16s, opacity 0.12s;
}
footer nav a:hover {
  color: #FFD600;
  opacity: 1;
}
footer .contact-info-summary {
  min-width: 210px;
  font-size: 0.97rem;
  color: #42505F;
  margin-top: 6px;
}
footer > section {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
footer .logo-mark {
  margin-bottom: 16px;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #1A365D;
  background: #F6F8F9;
  border-radius: 8px;
  border: none;
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 103;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFD600;
  color: #1A365D;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(242,244,247,0.98);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.65,0,0.35,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 38px;
  padding-left: 30px;
  padding-right: 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 2rem;
  color: #1A365D;
  background: #F6F8F9;
  width: 44px;
  height: 44px;
  border-radius: 100px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFD600;
  background: #eaeaea;
}
.mobile-nav {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: #1A365D;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 18px 0;
  border-bottom: 1px solid #E7EAED;
  border-radius: 0;
  transition: color 0.16s, background 0.15s;
  width: 100%;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFD600;
  background: #fffde6;
}

@media (max-width: 1024px) {
  .main-nav ul {
    gap: 13px;
  }
  .section {
    padding: 32px 9px;
  }
  .feature-list li, .feature-grid li {
    min-width: 170px;
    max-width: 220px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    flex-wrap: wrap;
    gap: 18px;
    padding: 14px 10px;
  }
  .container {
    padding: 0 7px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .main-nav ul { display: none; }
  .main-nav .button.primary { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
  .content-wrapper {
    gap: 18px;
  }
  .feature-grid, .feature-list, .services-grid, .card-container, .content-grid, .faq-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li, .feature-list li, .services-grid > div, .faq-list > div {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 15px 12px;
  }
  .section {
    padding: 26px 5px;
    margin-bottom: 33px;
    border-radius: 12px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
  .map-location { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  h1 { font-size: 2rem; }
  .section { padding: 14px 1px; }
}


/* HOVER EFFECTS & MICRO-INTERACTIONS */
.card, .feature-list li, .feature-grid li, .services-grid > div, .faq-list > div {
  transition: box-shadow 0.17s, transform 0.18s;
}
.card:hover, .feature-list li:hover, .feature-grid li:hover, .services-grid > div:hover, .faq-list > div:hover {
  box-shadow: 0 6px 20px rgba(26,54,93,0.12);
  transform: translateY(-3px) scale(1.01);
}
.button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
}

/* FOCUS STATES */
.button:focus, .main-nav a:focus, .mobile-nav a:focus, a:focus {
  outline: 2px solid #FFD600;
  outline-offset: 2px;
  background: #fffde6;
}

/* DISABLED STATES */
.button[disabled], .button.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  color: #1A365D;
  border-top: 1px solid #E7EAED;
  box-shadow: 0 -2px 16px rgba(45, 54, 63, 0.09);
  z-index: 3000;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 26px 16px;
  font-size: 1rem;
  animation: cookieBannerin 0.5s ease;
}
@keyframes cookieBannerin {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 200px;
  min-width: 160px;
  max-width: 520px;
  color: #2B3540;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-banner .button {
  min-width: 120px;
  padding: 10px 14px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 4px 12px 4px;
  }
  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
    gap: 9px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(45,54,63,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s cubic-bezier(.4,0,.2,1), visibility 0.01s linear 0.25s;
}
.cookie-modal-overlay.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.28s cubic-bezier(.4,0,.2,1), visibility 0s;
}
.cookie-modal {
  background: #fff;
  color: #1A365D;
  max-width: 370px;
  width: 92vw;
  padding: 34px 24px 24px 24px;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(26,54,93,0.18);
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: cookiesModalIn 0.4s;
}
@keyframes cookiesModalIn {
  from { transform: translateY(70px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F6F8F9;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 8px;
  font-size: 1rem;
}
.cookie-modal .cookie-category label {
  font-weight: 500;
  color: #1A365D;
}
.cookie-modal .cookie-toggle {
  display: inline-block;
  vertical-align: middle;
}
.cookie-modal .button {
  margin-top: 12px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 16px;
  top: 11px;
  background: none;
  font-size: 1.5rem;
  color: #1A365D;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.cookie-modal .close-modal:hover {
  background: #FFD600;
}

/* COOKIE TOGGLE SWITCH */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #B5B5B5;
  border-radius: 18px;
  transition: background 0.23s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #FFD600;
}
.cookie-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.24s;
  box-shadow: 0 1px 3px rgba(60,60,60,0.07);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}

/* OTHER UTILITY CLASSES */
.hide-mobile { display: block; }
@media (max-width: 768px) { .hide-mobile { display: none !important; } }

.show-mobile { display: none; }
@media (max-width: 768px) { .show-mobile { display: block !important; } }

.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-8 { margin-top: 8px !important; }
.mt-24 { margin-top: 24px !important; }
.pt-16 { padding-top: 16px !important; }
.pt-28 { padding-top: 28px !important; }
.pb-12 { padding-bottom: 12px !important; }

/* Brand accent underline */
.underline-accent {
  background: none;
  border-bottom: 2px solid #FFD600;
  display: inline-block;
  padding-bottom: 1px;
}

/* ---- END OF STYLE.CSS ---- */
