/*
 * Fira Sans Font:
 * Digitized data copyright (c) 2012-2015, The Mozilla Foundation and Telefonica S.A.
 * This Font Software is licensed under the SIL Open Font License, Version 1.1.
 * This license is copied below, and is also available with a FAQ at:
 * http://scripts.sil.org/OFL
 * SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
 */
@font-face {
  font-family: 'Fira Sans';
  src: url('../webfonts/FiraSans-Light.woff2') format('woff2'),
    url('../webfonts/FiraSans-Light.woff') format('woff');
  font-weight: 300;
}

@font-face {
  font-family: 'Fira Sans';
  src: url('../webfonts/FiraSans-Regular.woff2') format('woff2'),
    url('../webfonts/FiraSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Fira Sans';
  src: url('../webfonts/FiraSans-Bold.woff2') format('woff2'),
    url('../webfonts/FiraSans-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

:root {
  --dsr-blue: #19599C;
  --dsr-blue-dark: #005694;
  --dsr-bluehover: #1F6EBF;
  --dsr-yellow: #f1d90d;
  --dsr-success-normal-a: #EBF9DF;
  --dsr-success-normal-b: #CEEAB8;
  --dsr-success-hover-a: #F6FDEF;
  --dsr-success-hover-b: #D9EFC7;
  --dsr-success-active-a: #D6F3BD;
  --dsr-success-active-b: #B9E199;
  --dsr-navbarheight: 82px;
  --footer-height: 400px;
}

html {
  font-size: calc(16px * var(--a11y-font-scale, 1));
}


body,
div,
nav,
section,
main,
li,
p,
a,
button,
h1,
h2,
h3,
h4,
h5,
h6,
input,
select,
option,
label {
  font-family: 'Fira Sans', Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dsr-blue);
}

body {
  background-color: #fff;
  padding: 0;
  margin: 0;
  min-height: 100%;
}

.btn-primary {
  background: var(--dsr-blue);
  border-color: var(--dsr-blue-dark);
  color: #fff;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary:hover {
  background: var(--dsr-bluehover);
  color: var(--dsr-yellow);
  transform: translateY(-2px);
}

.btn-primary:active {
  background: linear-gradient(#19599C, #005694);
}

.btn-bold {
  font-weight: bold;
  text-shadow: 1px 1px 1px #000;
  padding-left: 20px;
  padding-right: 20px;
}

.btn-yellow {
  background-color: var(--dsr-yellow);
  color: var(--dsr-blue-dark);
  border: none;
}

.btn-yellow:hover {
  background-color: var(--dsr-bluehover);
  color: #fff;
  border: none;
}

.yellow-icon {
  color: var(--dsr-yellow);
}


/** scroll sections********/
#call-to-action,
#social-proof {
  scroll-margin-top: 150px;
}

#faq {
  scroll-margin-top: 100px;
}

#steps {
  scroll-margin-top: 200px;
}

#local-info {
  scroll-margin-bottom: 120px;
}

#informationen {
  scroll-margin-top: 80px;
}


/****** ACCIDENT DATA DISPLAY ******/
.info-card {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 12px rgba(25, 89, 156, 0.1);
}

.stat-box {
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(25, 89, 156, 0.15);
}

/****** SERVICE CARDS ENHANCEMENT ******/
.service-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(25, 89, 156, 0.15);
}

/****** STEP CARDS ******/
.step-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(25, 89, 156, 0.15);

}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dsr-blue), var(--dsr-bluehover));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto;
}

/****** TESTIMONIAL CARDS ******/
.testimonial-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-left: 4px solid var(--dsr-yellow);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-left-color: var(--dsr-blue);
}

/****** FORM CONTROLS ******/
.form-control-lg {
  border-radius: 8px;
  font-size: 16px;
  padding: 12px 20px;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--dsr-yellow);
  box-shadow: 0 0 0 0.2rem rgba(241, 217, 13, 0.25);
}

/****** SECTION SPACING ******/


.sect-local-info {
  padding: 5rem 0;
  background: #ffffff;
}

.sect-steps {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.sect-services {
  padding: 5rem 0;
  background: #ffffff;
}

.sect-social-proof {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}


.btnprimary-sect-action {
  background: var(--dsr-yellow);
  color: var(--dsr-blue-dark);
  border: 2px solid transparent;
  padding: 1rem 2.5rem;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btnprimary-sect-action:hover {
  background: var(--dsr-bluehover);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(241, 217, 13, 0.4);
}

.btnsec-sect-action {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: clamp(0.85rem, 1vw, 1rem);
  text-decoration: none;
  text-shadow: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.btnsec-sect-action:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--dsr-yellow);
  color: var(--dsr-yellow);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(241, 217, 13, 0.25);
}

.cta-icon {
  color: var(--dsr-yellow);
}

.sect-faq {
  padding: 5rem 0;
  background: #ffffff;
}

/****** TRUST SECTION ******/
.sect-trust {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 2.5rem 0 3.5rem;
}

.trust-strip-row {
  margin-bottom: 0.25rem;
}

.trust-item {
  width: 100%;
  min-height: 56px;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--dsr-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  line-height: 1.2;
  background: #fff;
  border: 1px solid #e7eef7;
  box-shadow: 0 6px 20px rgba(25, 89, 156, 0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.trust-item i {
  flex: 0 0 auto;
  font-size: 1.05rem;
  color: var(--dsr-yellow);
}

.trust-item span {
  display: inline-block;
  max-width: 26ch;
  white-space: normal;
}

@media (hover: hover) {
  .trust-item:hover {
    transform: translateY(-3px);
    border-color: rgba(241, 217, 13, 0.75);
    box-shadow: 0 12px 28px rgba(25, 89, 156, 0.1);
  }
}

/****** TRUST INTRO PANEL ******/
.trust-intro-panel {
  background: #ffffff;
  border: 1px solid #dfeaf7;
  box-shadow: 0 10px 30px rgba(25, 89, 156, 0.08);
  border-radius: 8px;
  padding: 1.75rem 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-intro-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(25, 89, 156, 0.12);
}

.trust-intro-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(25, 89, 156, 0.08);
  color: var(--dsr-blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-intro-kicker i {
  color: var(--dsr-yellow);
}

.trust-intro-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--dsr-blue);
}

.trust-intro-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #566574;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: #fff;
  border: 1px solid #e6eef8;
  border-radius: 8px;
  color: var(--dsr-blue);
  font-weight: 700;
  min-height: 0;
  box-shadow: 0 6px 18px rgba(25, 89, 156, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.trust-badge i {
  color: var(--dsr-yellow);
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.trust-badge:hover {
  transform: translateX(4px);
  border-color: rgba(241, 217, 13, 0.7);
}

/****** MOBILE ******/
@media (max-width: 991.98px) {
  .trust-intro-panel {
    padding: 1.4rem;
  }

  .trust-badges {
    margin-top: 0.25rem;
  }
}

@media (max-width: 575.98px) {
  .sect-trust {
    padding: 2rem 0 2.5rem;
  }

  .trust-item {
    justify-content: flex-start;
    text-align: left;
    min-height: 58px;
    padding: 0.85rem 0.9rem;
  }

  .trust-item span {
    max-width: none;
  }

  .trust-intro-panel {
    border-radius: 14px;
    padding: 1.2rem;
  }

  .trust-intro-title {
    font-size: 1.2rem;
  }

  .trust-intro-text {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .trust-badge {
    padding: 0.8rem 0.9rem;
    font-size: 0.92rem;
  }
}

/****** ACCORDION STYLING ******/
.accordion-item {
  background: #ffffff;
  border: 1px solid #e9ecef;
  margin-bottom: 12px;
}

.accordion-button {
  color: var(--dsr-blue);
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 8px 8px 0 0;
}

.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: var(--dsr-blue);
  box-shadow: none;
}

.accordion-button:focus {
  border-color: var(--dsr-yellow);
  box-shadow: 0 0 0 0.25rem rgba(241, 217, 13, 0.15);
}

.accordion-body {
  color: #555;
  padding: 1.5rem;
}

/****** INFO ROW STYLING ******/
.info-row {
  color: var(--dsr-blue);
}

.info-row span:last-child {
  color: var(--dsr-blue-dark);
  font-weight: 600;
}

/****************************************************/
/************ ACCESSIBILITY MENU SECTION ************/
/****************************************************/
#accessibility-toggle {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #333;
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-size: 20px;
  cursor: pointer;
  z-index: 10001;
  border-radius: 8px 0 0 8px;
  transition: opacity 0.3s ease;
}


#accessibility-menu {
  position: fixed;
  top: 50%;
  right: -190px;
  transform: translateY(-50%);
  background: #333;
  color: white;
  padding: 15px;
  width: 170px;
  border-radius: 8px 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: right 0.3s ease;
  z-index: 10000;
}

.menu-svg {
  width: 20px;
  height: 20px;

  fill: var(--dsr-blue);
  transition:
    transform 0.3s ease,
    fill 0.3s ease;
}

.menu-svg {
  transform: scale(1.1);
}


#accessibility-menu.open {
  right: 0;
}


#close-menu {
  background: #900;
  color: white;
  border: none;
  padding: 6px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  width: 20%;
}

#reset-btn {
  margin-left: auto;
}

.menu-actions {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}


#accessibility-menu button:not(#close-menu) {
  background: #555;
  color: white;
  border: none;
  padding: 8px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
}

#accessibility-menu button:not(#close-menu):hover {
  background: #777;
}

/****************************************/
/************ FILTERS *******************/
/****************************************/

#main-content {
  font-size: 1rem;
  /* base size */
}


#main-content.invert-colors {
  filter: invert(1) hue-rotate(180deg);
}

#main-content.bw {
  filter: grayscale(1);
}

#main-content.high-contrast,
#main-content.high-contrast * {
  background-color: black !important;
  color: yellow !important;
  border-color: yellow !important;
}

/* Remove overlays das seções com background */
#main-content.high-contrast .sectwelcome::before,
#main-content.high-contrast .sectreviews::before,
#main-content.high-contrast .sectaction::before {
  background-color: transparent !important;
}

/* Garante que o conteúdo fique acima das pseudo-camadas */
#main-content.high-contrast .sectwelcome *,
#main-content.high-contrast .sectreviews *,
#main-content.high-contrast .sectaction * {
  position: relative;
  z-index: 2;
}

/* Se necessário, remove imagens de fundo para máxima legibilidade */
#main-content.high-contrast .sectwelcome,
#main-content.high-contrast .sectreviews,
#main-content.high-contrast .sectaction {
  background-image: none !important;
}


#main-content.high-contrast a {
  color: #00ffff !important;
  /* links */
}

#main-content.high-contrast .btn {
  background-color: yellow !important;
  color: black !important;
}


#main-content {
  isolation: isolate;
}


/************ NAVBAR **********************/


/* ═══════════════════════════════
       HEADER
    ═══════════════════════════════ */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0f1f36;
    transition: background 0.3s;
    will-change: background-color;
}

header.scrolled {
    background: #fff;
}

/* Navbar text white by default */
header .nav-link {
    color: #fff;
}

header .nav-link.active {
    border-bottom-color: #fff;
}

header .nav-link:hover {
    color: rgba(255, 255, 255, 0.75);
}

header .portal-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

header .portal-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

header .hamburger span {
    background: #fff;
}

/* Navbar text dark when scrolled */
header.scrolled .nav-link {
    color: #323335;
}

header.scrolled .nav-link.active {
    border-bottom-color: #323335;
}

header.scrolled .nav-link:hover {
    color: #1a5fa8;
}

header.scrolled .portal-btn {
    background: transparent;
    border: 2px solid #323335;
    color: #323335;
}

header.scrolled .portal-btn:hover {
    background: rgba(50, 51, 53, 0.1);
}

header.scrolled .hamburger span {
    background: #323335;
}

/* 3-column grid: logo | nav | right-slot */
.nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 40px;
}

/* ═══════════════════════════════
       LOGO  (column 1 — left)
    ═══════════════════════════════ */
.logo-wrap {
    grid-column: 1;
    justify-self: start;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-wrap img {
    width: 193px;
    max-width: 100%;
    height: auto;
    display: block;
    padding: 22.4px 0;
    object-fit: contain;
    transition: padding 0.35s ease, width 0.35s ease;
}

header.scrolled .logo-wrap img {
    padding: 12px 0;
    width: 155px;
}

/* ═══════════════════════════════
       NAV LINKS  (column 2 — centre)
    ═══════════════════════════════ */
.desktop-nav {
    grid-column: 2;
    display: flex;
    align-items: center;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-family: var(--copyFontFamily), sans-serif;
    font-size: 18px;
    font-weight: var(--copyNormalFontWeight);
    color: #323335;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    line-height: 1.4;
}

.nav-link:hover {
    color: #1a5fa8;
}

.nav-link.active {
    border-bottom-color: #323335;
    font-weight: var(--copyBoldFontWeight);
}

.chevron {
    display: inline-flex;
    align-items: center;
    transition: transform 0.22s ease;
}

.nav-item:hover .chevron {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    background: #fff;
    border: 1px solid #dde3ea;
    border-top: 2px solid #1a5fa8;
    min-width: 210px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-5px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 200;
}

.nav-item:hover .dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 10px 18px;
    font-family: var(--copyFontFamily), sans-serif;
    font-size: 14px;
    font-weight: var(--copyNormalFontWeight);
    color: #333;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.dropdown a:hover {
    background: #f0f5fb;
    color: #1a5fa8;
}

/* ═══════════════════════════════
       RIGHT SLOT  (column 3 — right)
       holds Portal btn OR hamburger
    ═══════════════════════════════ */
.nav-right {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
}

.portal-btn {
    padding: 10px 24px;
    background: #1a5fa8;
    color: #fff;
    font-family: var(--copyFontFamily), sans-serif;
    font-size: 18px;
    font-weight: var(--copyBoldFontWeight);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.portal-btn:hover {
    background: #154d8a;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: transform 0.28s, opacity 0.28s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════
       MOBILE MENU
    ═══════════════════════════════ */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #e8e8e8;
    padding: 8px 0 16px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu>a,
.m-parent {
    padding: 12px 28px;
    font-family: var(--copyFontFamily), sans-serif;
    font-size: 15px;
    font-weight: var(--copyNormalFontWeight);
    color: #222;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    transition: color 0.15s;
}

.mobile-menu>a:hover,
.m-parent:hover {
    color: #1a5fa8;
}

.mobile-menu>a.active {
    font-weight: var(--copyBoldFontWeight);
}

.m-chevron {
    transition: transform 0.22s;
}

.m-parent.open .m-chevron {
    transform: rotate(180deg);
}

.m-sub {
    display: none;
    flex-direction: column;
    background: #f7f9fc;
}

.m-sub.open {
    display: flex;
}

.m-sub a {
    padding: 10px 44px;
    font-family: var(--copyFontFamily), sans-serif;
    font-size: 14px;
    font-weight: var(--copyNormalFontWeight);
    color: #444;
    text-decoration: none;
    transition: color 0.15s;
}

.m-sub a:hover {
    color: #1a5fa8;
}

.mobile-portal {
    margin: 12px 28px 0;
}

.mobile-portal a {
    display: block;
    text-align: center;
    padding: 11px;
    background: #1a5fa8;
    color: #fff;
    font-family: var(--copyFontFamily), sans-serif;
    font-weight: var(--copyBoldFontWeight);
    border-radius: 3px;
    font-size: 15px;
    text-decoration: none;
}

.mobile-menu .m-parent {
  padding: 0;
}

.mobile-menu .m-parent > a {
  flex: 1;
  padding: 12px 28px;
  color: #222;
  text-decoration: none;
}

.mobile-menu .m-toggle {
  width: 52px;
  align-self: stretch;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu .m-toggle.open .m-chevron {
  transform: rotate(180deg);
}

/* ═══════════════════════════════
       RESPONSIVE
    ═══════════════════════════════ */
@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .portal-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}


/* NAVBAR FIXES */
#mainHeader .nav-inner {
  min-height: 82px;
}

#mainHeader .desktop-nav ul {
  margin: 0;
  padding: 0;
}

#mainHeader .nav-link {
  align-items: center;
  line-height: 1;
}

#mainHeader .logo-wrap img {
  width: 155px;
  padding: 0;
}

#mainHeader.scrolled .logo-wrap img {
  width: 130px;
  padding: 0;
}

#mainHeader.scrolled .nav-inner {
  min-height: 64px;
}

#mainHeader,
#mainHeader .nav-inner,
#mainHeader .logo-wrap img {
  transition: all 0.3s ease;
}


/************ LANGUAGE SWITCHER ************/
.lang-btn {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.lang-btn.active {
  background-color: var(--dsr-yellow);
  border-color: var(--dsr-yellow);
  color: var(--dsr-blue);
  font-weight: bold;
}

.lang-btn.active:hover {
  background-color: var(--dsr-yellow);
  border-color: var(--dsr-yellow);
  color: var(--dsr-blue);
}

/****************************************/
/************ WELCOME SECTION ************/
/****************************************/

section.sectwelcome {
  margin: 0;
  padding: var(--dsr-navbarheight) 1rem 3rem 1rem;
  background-color: var(--dsr-blue);
  background-image: url('/in/assets/img/unfall.avif');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  min-height: 80vh;
  position: relative;
  overflow: visible;
}



.hero-sign {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  animation: slideInSign 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-sign-container {
  background: linear-gradient(135deg, #19599C 0%, #005694 100%);
  border: 3px solid #fff;
  border-radius: 8px;
  padding: 1.5rem 2.5rem;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.3) inset;
  position: relative;
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  min-width: 200px;
  text-align: center;
}

.hero-sign:hover .hero-sign-container {
  transform: perspective(1000px) rotateY(-8deg) translateZ(10px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 0 30px rgba(241, 217, 13, 0.3);
}

.hero-sign-text {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #fff;
  text-align: center;
  line-height: 1.2;
  word-break: break-word;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.hero-sign-pole {
  width: 8px;
  height: clamp(60px, 12vh, 120px);
  background: linear-gradient(90deg, #2a2a2a 0%, #1a1a1a 50%, #2a2a2a 100%);
  border-radius: 4px 4px 0 0;
  box-shadow:
    inset -2px 0 4px rgba(255, 255, 255, 0.2),
    0 4px 8px rgba(0, 0, 0, 0.5);
  animation: poleSway 3s ease-in-out infinite;
}

#br-in-header {
    display: block;
}

@media (max-width: 991px) {
    #br-in-header {
        display: none;
    }
}

@keyframes poleSway {

  0%,
  100% {
    transform: rotateZ(-0.5deg);
  }

  50% {
    transform: rotateZ(0.5deg);
  }
}

section.sectwelcome::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(25, 89, 156, 0.35) 40%,
      rgba(0, 0, 0, 0.35) 70%,
      rgba(0, 0, 0, 0.45) 100%);
  backdrop-filter: blur(0.5px);
}

section.sectwelcome>* {
  position: relative;
  z-index: 2;
}
.hero-content {
  text-align: center;
  animation: slideInContent 1s ease-out 0.2s both;
  padding: 0 1.5rem;
  flex: 0 1 100%;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  width: 100%;
  max-width: 1000px;
}

/* Primary button - Yellow */
.hero-buttons .btn-primary {
  background: linear-gradient(135deg, var(--dsr-yellow) 0%, #f9d84a 100%);
  color: var(--dsr-blue-dark);
  border: 2px solid transparent;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.05rem);
  text-decoration: none;
  text-shadow: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(241, 217, 13, 0.3);
  position: relative;
  overflow: hidden;
  flex: 1 1 auto;
  min-width: 200px;
  max-width: 280px;
}


.hero-buttons .btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-buttons .btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.hero-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #19599C 0%, #005694 100%);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(241, 217, 13, 0.4);
  color: var(--dsr-yellow);
}

.hero-buttons .btn-primary:active {
  transform: translateY(-1px);
}

/* Secondary button - Transparent */
.hero-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 1rem 2.2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  text-decoration: none;
  text-shadow: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  flex: 1 1 auto;
  min-width: 200px;
  max-width: 280px;
}


.hero-buttons .btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(241, 217, 13, 0.25) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hero-buttons .btn-secondary:hover::before {
  opacity: 1;
}

.hero-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--dsr-yellow);
  color: var(--dsr-yellow);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(241, 217, 13, 0.25);
}

.hero-buttons .btn-secondary:active {
  transform: translateY(-1px);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  transition: all 0.3s ease;
}

.hero-buttons a:hover .btn-icon {
  animation: bounceIcon 0.4s ease;
}

section.sectwelcome h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: clamp(2.5rem, 6.5vw, 4.3rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  margin: 1rem 0 1rem 0;
  letter-spacing: -1px;
  word-spacing: 0.1em;
}

section.sectwelcome h1 span {
  font-size: clamp(2.1rem, 5.2vw, 3.8rem);
  background: linear-gradient(135deg, var(--dsr-yellow) 0%, #f9d84a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  display: inline-block;
}

section.sectwelcome p {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  margin: 0.5rem 0;
  line-height: 1.8;
  max-width: 700px;
  letter-spacing: 0.3px;
}

/* Animations */
@keyframes slideInContent {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInSign {
  from {
    opacity: 0;
    transform: translateX(50px) translateY(50px) scale(0.8) rotateZ(-10deg);
  }

  to {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1) rotateZ(0deg);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes bounceIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes pulse-float {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(241, 217, 13, 0.5);
  color: var(--dsr-yellow);
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  font-weight: 600;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(10px);
  animation: slideInContent 1s ease-out both;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.hero-badge i {
  font-size: 1.1em;
}

/* Decorative Elements */
/* REMOVED - Decorative elements disabled */

@media (max-width: 1199.98px) {

  section.sectwelcome {
    flex-direction: column;
    padding: var(--dsr-navbarheight) 2rem 3rem 2rem;
    text-align: center;
    overflow: hidden;
  }

  .hero-sign {
    position: absolute;
    bottom: 5%;
    right: 3%;
    z-index: 3;
  }

  .hero-sign-container {
    padding: 1.2rem 2rem;
  }

  .hero-sign-text {
    font-size: clamp(1rem, 2.2vw, 1.5rem);
    letter-spacing: 1px;
  }

  .hero-sign-pole {
    height: clamp(60px, 10vh, 100px);
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    animation: slideInContent 1s ease-out 0.2s both;
  }

  section.sectwelcome h1 {
    font-size: 1.8rem;
    line-height: 2.2rem;
    margin-top: 1rem;
  }

  .hero-buttons {
    justify-content: center;
    gap: 1rem;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    padding: 0.75rem 1.8rem;
    font-size: 0.85rem;
  }

  section.sectwelcome h1 span {
    font-size: 1.95rem;
  }

  section.sectwelcome p {
    font-size: 1.05rem;
    margin: 0 0 1.5rem 0;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  section.sectwelcome {
    min-height: 70vh;
    padding: var(--dsr-navbarheight) 1rem 2.5rem 1rem;
  }

  .hero-content {
    padding: 0 1.25rem;
    max-width: 100%;
  }

  .hero-buttons {
    gap: 1rem;
    margin-top: 1.75rem;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    padding: 0.95rem 2rem;
    font-size: clamp(0.88rem, 1.8vw, 1rem);
    flex: 1 1 calc(50% - 0.5rem);
  }

  section.sectwelcome h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
  }

  section.sectwelcome p {
    font-size: clamp(0.92rem, 2vw, 1.05rem);
  }

  .hero-sign {
    position: absolute;
    bottom: 3%;
    right: 3%;
    z-index: 4;
  }

  .hero-sign-container {
    padding: 1rem 1.5rem;
    border-radius: 6px;
    border-width: 2px;
  }

  .hero-sign-text {
    font-size: clamp(0.8rem, 4.5vw, 1.15rem);
    letter-spacing: 0.8px;
  }

  .hero-sign-pole {
    height: clamp(50px, 8vh, 80px);
    width: 6px;
  }
}

@media (max-width: 576px) {
  .hero-sign {
    bottom: 3%;
    right: 3%;
  }

  .hero-sign-container {
    padding: 0.8rem 1.2rem;
    min-width: 160px;
  }

  .hero-sign-text {
    font-size: clamp(0.8rem, 4.5vw, 1.1rem);
    letter-spacing: 0.6px;
  }

  .hero-sign-pole {
    height: clamp(45px, 7vh, 70px);
    width: 5px;
  }

  section.sectwelcome {
    min-height: 90vh;
    padding: var(--dsr-navbarheight) 0.75rem 2.5rem 0.75rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-buttons {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    padding: 0.9rem 1.8rem;
    min-width: 160px;
    max-width: 100%;
    flex: 1 1 calc(50% - 0.4rem);
    font-size: clamp(0.85rem, 2vw, 1rem);
  }

  section.sectwelcome h1 {
    margin: 0.75rem 0 0.75rem 0;
  }

  section.sectwelcome p {
    margin: 0.5rem 0;
    font-size: clamp(0.9rem, 2vw, 1rem);
  }
}

/****************************************/
/******* LOCAL INFO SECTION STYLES *****/
/****************************************/

.sect-local-info {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4f9 100%);
}

.sect-local-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--dsr-blue);
}

.sect-local-info .lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  font-weight: 500;
}

.sect-local-info p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

/* INFO CARD STYLES */
.info-card {
  background: #fff;
  border: 1px solid #e8f0f9;
  box-shadow: 0 10px 40px rgba(25, 89, 156, 0.08);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.info-card:hover {
  box-shadow: 0 20px 60px rgba(25, 89, 156, 0.15);
  transform: translateY(-4px);
}

.info-card h3 {
  color: var(--dsr-blue);
  font-weight: 800;
  font-size: 1.5rem;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-row {
  transition: all 0.3s ease;
  padding: 0.9rem 0 !important;
}

.info-row span:last-child {
  color: var(--dsr-blue);
  font-weight: 700;
}

.info-row:hover {
  background: rgba(25, 89, 156, 0.03);
  padding-left: 0.5rem !important;
}

.badge {
  font-size: 0.85rem;
  padding: 0.5rem 1rem !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 20px !important;
}

/* WEATHER WIDGET STYLES */
.weather-widget {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border: 2px solid #e0eefb;
  box-shadow: 0 8px 30px rgba(25, 89, 156, 0.1);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.weather-widget:hover {
  box-shadow: 0 12px 40px rgba(25, 89, 156, 0.15);
  transform: translateY(-2px);
  border-color: var(--dsr-yellow);
}

.weather-widget h5 {
  color: var(--dsr-blue);
  font-size: 1.15rem;
}

.weather-icon-container {
  flex-shrink: 0;
}

.weather-icon {
  width: 80px;
  height: 80px;
  animation: float 3s ease-in-out infinite;
}

.weather-info .temperature {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.temp-value {
  color: var(--dsr-blue);
  font-size: 2.5rem;
}

.temp-unit {
  color: var(--dsr-blue);
  font-size: 1.2rem;
  font-weight: 600;
}

.weather-status {
  font-size: 1.05rem;
  color: #666;
  font-weight: 500;
}

.weather-location {
  color: #999;
}

#weatherTimestamp {
  display: block;
  margin-top: 1rem;
  font-style: italic;
}

/* DYNAMIC TEXT SECTIONS - Clear Placeholders */
.text-placeholder {
  background: rgba(25, 89, 156, 0.05);
  border-left: 4px solid var(--dsr-yellow);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  font-style: italic;
  color: #666;
}

.text-placeholder::before {
  content: '📝 Placeholder: ';
  font-weight: 700;
  color: var(--dsr-blue);
}

.placeholder-section {
  padding: 1.5rem;
  border-left: 4px solid var(--dsr-yellow);
  background: rgba(25, 89, 156, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.placeholder-section:hover {
  background: rgba(25, 89, 156, 0.08);
  border-left-color: var(--dsr-blue);
}

.placeholder-section p {
  margin-bottom: 0.5rem;
  color: #333;
}

.placeholder-section code {
  background: #f0f4f9;
  color: var(--dsr-blue);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  font-weight: 600;
}

/* RESPONSIVE DESIGN - Mobile & Tablet */
@media (max-width: 1199.98px) {
  .sect-local-info {
    padding: 3rem 0;
  }

  .sect-local-info h2 {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .info-card,
  .weather-widget {
    margin-top: 2rem;
  }

  .weather-content {
    flex-direction: column;
    text-align: center;
  }

  .weather-icon-container {
    flex-shrink: auto;
  }

  .weather-icon {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .sect-local-info {
    padding: 2rem 0;
  }

  .sect-local-info h2 {
    font-size: 1.7rem;
  }

  .sect-local-info .lead {
    font-size: 1rem;
  }

  .placeholder-section {
    padding: 1rem;
    margin: 1rem 0;
  }

  .info-card {
    margin-bottom: 1.5rem;
  }

  .info-card p-4 {
    padding: 1.5rem !important;
  }

  .weather-widget {
    padding: 1.5rem !important;
  }

  .temp-value {
    font-size: 2rem;
  }

  .weather-status {
    font-size: 0.95rem;
  }

  .btn-lg {
    font-size: 1rem;
    padding: 0.6rem 1.2rem !important;
  }

  /* CTA Section Mobile */
  .sect-cta {
    padding: 3rem 1.5rem;
  }

  .sect-cta .cta-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .sect-cta .cta-description {
    font-size: 1rem;
  }

  .sect-cta .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .sect-cta .btn-primary,
  .sect-cta .btn-outline-primary {
    width: 100%;
    padding: 0.9rem 1.5rem !important;
    font-size: 1rem;
  }

  .sect-cta .cta-support {
    margin-top: 2rem;
  }
}

/****************************************/
/************ ABOUT SECTION ************/
/****************************************/
#about {
  scroll-margin-top: 80px;
}

section {
  padding: 80px 0;
  overflow: visible;
}

.btn.btn-yellow {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn.btn-yellow:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  background-color: var(--dsr-bluehover);
}

.btn.btn-yellow:active {
  transform: translateY(-2px);
}


/****************************************
/************ BRands SECTION ************/
/****************************************/

.brands-viewport {
  overflow: hidden;
  width: 100%;
}

.brands-track {
  display: flex;
  gap: 3rem;
  transition: transform 0.6s ease;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  height: 80px;
  opacity: 0.85;
}

/* dots */
.slider-dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #777;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: var(--dsr-yellow);
  transform: scale(1.2);
}


@media (max-width: 767px) {
  .slider-area h2 {
    font-size: 32px;
  }

  .slide {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .slide img {
    height: 60px;
  }
}


/****************************************/
/************ SERVICES SECTION ************/
/****************************************/

#services {
  scroll-margin-top: 80px;
}


section.sectservices {
  padding: 60px 0;
  overflow: visible;
}

section.sectservices h1 {
  font-size: 3.75rem;
  line-height: 4rem;
  font-weight: bold;
  color: var(--dsr-blue);
  margin: 0 0 2rem 0;
}

section.sectservices h1 span {
  font-size: 3.95rem;
  color: var(--dsr-yellow);
}

.section-title {
  display: inline-block;
}

.aux {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.aux-line {
  flex: 1;
  height: 5px;
  background-color: var(--dsr-yellow);
}


.sectservices .service-box {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 30px;
  height: 100%;
  border-radius: 8px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.sectservices .service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--dsr-yellow);
  /* or any accent color */
  cursor: pointer;
}

.sectservices .service-box a {
  text-decoration: none;
  color: inherit;
}

/* OR, since <a> is wrapping the div, target it directly */
.sectservices a {
  text-decoration: none;
  color: inherit;
}


.service-icon {
  margin-bottom: 18px;
}

.service-svg {
  width: 56px;
  height: 56px;

  fill: var(--dsr-blue);
  transition:
    transform 0.3s ease,
    fill 0.3s ease;
}

.service-box:hover .service-svg {
  transform: scale(1.1);
}


.sectservices h5 {
  font-weight: 700;
  margin-bottom: 12px;
}




/****************************************/
/************ Action SECTION ************/
/****************************************/
.sectaction {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dsr-blue) 0%, var(--dsr-blue-dark) 50%, #003d6b 100%);
  z-index: 0;
}

.cta-gradient-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(241, 217, 13, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(31, 110, 191, 0.2) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.cta-icon {
  animation: iconFloat 3s ease-in-out infinite;
}

.cta-icon i {
  color: var(--dsr-yellow);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

.btn-cta {
  background: var(--dsr-yellow);
  color: var(--dsr-blue-dark);
  font-weight: bold;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta:hover {
  background: #ffd700;
  color: var(--dsr-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(241, 217, 13, 0.4) !important;
}

.btn-cta:active {
  transform: translateY(-1px);
}

.btn-cta i {
  transition: transform 0.3s ease;
}

.btn-cta:hover i {
  transform: translateX(5px);
}

/* Formas decorativas animadas */
.cta-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 8%;
  background: rgba(241, 217, 13, 0.1);
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: 10%;
  animation-delay: 5s;
  background: rgba(255, 255, 255, 0.05);
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: -75px;
  animation-delay: 10s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .cta-icon i {
    font-size: 3rem !important;
  }

  .sectaction .display-4 {
    font-size: 2.5rem;
  }

  .btn-cta {
    padding: 0.75rem 2rem !important;
  }
}

/****************************************/
/************ Reviews SECTION ************/
/****************************************/

#reviews {
  scroll-margin-top: 300px;
}


.sectreviews .background-review {
  background-color: rgba(25, 89, 156, 0.4);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

section.sectreviews h1 {
  font-size: 3.75rem;
  line-height: 4rem;
  font-weight: bold;
  color: var(--dsr-blue);
  margin: 0 0 2rem 0;
}

section.sectreviews h1 span {
  font-size: 3.95rem;
  color: var(--dsr-yellow);
}


section.sectreviews p {
  color: white;
}

.container-review {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.carousel-inner {
  width: 100%;
}

.img-area {
  width: 250px;
  height: 250px;
  margin: 20% auto;
  border-radius: 8%;
  overflow: hidden;
  border: 10px ridge var(--dsr-yellow);
}

.img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review {
  font-size: 20px;
  font-weight: 600;
  padding: 30px 0;
}

.person {
  font-size: 18px;
  color: white;
  margin: 0;
}

.designation {
  color: white;
  font-size: 14px;
}

.carousel-indicators {
  bottom: -40px;
  right: 0;
  margin: 0;
}

.carousel-indicators [data-bs-target] {
  height: 15px;
  border: 2px solid #fff;
  width: 15px;
  background-color: inherit;
  border-radius: 50%;
}

.carousel-indicators .active {
  border: 2px solid transparent;
  background-color: #fff;
}

.left {
  color: white;
  font-weight: 900;
}

.right {
  color: white;
  font-weight: 900;
}

.carousel-control-next,
.carousel-control-prev {
  position: relative;
  color: white;

}

@media (max-width:560px) {
  .img-area {
    margin: 5% auto 0;
  }

  .img-text {
    text-align: center;
  }

  .review {
    font-size: 14px;
    font-weight: 600;
    margin: 5px 0;
  }

  .person {
    font-size: 13px;
  }

  .designation {
    font-size: 10px;
  }

  .right {
    font-size: 12px;
  }

  .left {
    font-size: 12px;
  }

  .carousel-indicators [data-bs-target] {
    height: 8px;
    border: 1px solid #fff;
    width: 8px;
    background-color: inherit;
    border-radius: 50%;
  }

  .carousel-indicators .active {
    border: 1px solid transparent;
    background-color: #fff;
  }
}


/****************************************/
/********* VIDEO PLAYER SECTION **********/
/****************************************/

/* Video Player Thumbnail */
.video-thumbnail {
  position: relative;
  cursor: pointer;
}

.video-thumbnail img {
  transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
  transform: scale(1.02);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.video-thumbnail:hover .video-overlay {
  background: rgba(0, 0, 0, 0.15);
}

.video-play-btn {
  width: 70px;
  height: 70px;
  background: var(--dsr-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 2;
  border: 4px solid rgba(255, 255, 255, 0.8);
}

.video-play-btn i {
  font-size: 1.5rem;
  margin-left: 4px;
}

.video-play-btn:hover {
  background: var(--dsr-bluehover);
  transform: translate(-50%, -50%) scale(1.15);
  border-color: #fff;
}


/****************************************/
/************ TEAM SECTION **************/
/****************************************/

#team {
  scroll-margin-top: 120px;
}

.sectteam {
  background: #f8f9fa;
}

.team-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid #eee;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(25, 89, 156, 0.15);
  border-color: var(--dsr-blue);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(25, 89, 156, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-img::after {
  opacity: 1;
}

.team-info {
  padding: 20px;
  text-align: center;
  border-top: 3px solid var(--dsr-yellow);
}

.team-info h5 {
  transition: color 0.3s ease;
}

.team-card:hover .team-info h5 {
  color: var(--dsr-bluehover) !important;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.team-card:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}

.team-social a {
  width: 35px;
  height: 35px;
  background: var(--dsr-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--dsr-yellow);
  color: var(--dsr-blue);
  transform: translateY(-3px);
}

/****************************************/
/******** QUICK ACCESS ICONS SECTION ****/
/****************************************/

#news-and-jobs,
#quick-access {
  scroll-margin-top: 100px;
}


.sectquickaccess {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.quick-access-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.quick-access-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dsr-blue) 0%, var(--dsr-bluehover) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.quick-access-card:hover::before {
  opacity: 1;
}

.quick-access-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(25, 89, 156, 0.2);
}

.quick-icon-wrapper {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dsr-blue) 0%, var(--dsr-bluehover) 100%);
  border-radius: 50%;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(25, 89, 156, 0.25);
}

.quick-access-card:hover .quick-icon-wrapper {
  background: var(--dsr-yellow);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(241, 217, 13, 0.4);
}

.quick-icon {
  width: 45px;
  height: 45px;
  color: white;
  transition: all 0.3s ease;
}

.quick-access-card:hover .quick-icon {
  color: var(--dsr-blue);
  transform: scale(1.05);
}

.quick-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dsr-blue);
  margin: 0;
  text-align: center;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

.quick-access-card:hover .quick-title {
  color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .quick-access-card {
    min-height: 160px;
    padding: 1.5rem 0.75rem;
  }

  .quick-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .quick-icon {
    width: 35px;
    height: 35px;
  }

  .quick-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .quick-access-card {
    min-height: 140px;
    padding: 1.25rem 0.5rem;
  }

  .quick-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 0.75rem;
  }

  .quick-icon {
    width: 30px;
    height: 30px;
  }

  .quick-title {
    font-size: 0.85rem;
  }
}


/****************************************/
/************ CONTACT SECTION ***********/
/****************************************/

#contact {
  scroll-margin-top: 150px;
}

.sectcontact .aux-line {
  width: 5vw;
  height: 5px;
  background-color: var(--dsr-yellow);
}

.sectcontact .map {
  border: 1px solid red;
  border-radius: 8px;
}

.contact-svg {
  width: 45px;
  height: 45px;

  fill: var(--dsr-blue);
  transition:
    transform 0.3s ease,
    fill 0.3s ease;
}


/*********************************************/
/******* INTERNAL LINKS SECTION **************/
/*********************************************/

.sect-internal-links {
  background: linear-gradient(135deg, #f0f4f8, #e8eef5);
  border-top: 1px solid rgba(25, 89, 156, 0.1);
}

.internal-links-box {
  background: #fff;
  border: 1px solid rgba(25, 89, 156, 0.12);
  box-shadow: 0 2px 12px rgba(25, 89, 156, 0.06);
}

.internal-links-box h5 {
  color: var(--dsr-blue);
}

.internal-links-box p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.7;
}

.internal-links-box p a {
  color: var(--dsr-blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.internal-links-box p a:hover {
  border-bottom-color: var(--dsr-blue);
}

.internal-links-icon {
  color: var(--dsr-yellow);
  background: var(--dsr-blue);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.btn-standorte {
  display: inline-block;
  background: var(--dsr-blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid var(--dsr-blue);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-standorte:hover {
  background: var(--dsr-bluehover);
  border-color: var(--dsr-bluehover);
  color: var(--dsr-yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 89, 156, 0.3);
  text-decoration: none;
}

.btn-standorte i {
  margin-right: 0.3rem;
}

/*********************************************/
/******* SITEMAP / STANDORTE PAGE ************/
/*********************************************/

.sitemap-main {
  margin-bottom: 60px;
  padding-top: 2.5rem;
}

.sitemap-hero {
  background: linear-gradient(135deg, var(--dsr-blue) 0%, var(--dsr-blue-dark) 100%);
  color: #fff;
  padding: calc(var(--dsr-navbarheight) + 3rem) 0 2.5rem;
}

.sitemap-hero h1 {
  color: #fff;
  font-weight: 700;
}

.sitemap-hero p {
  color: rgba(255, 255, 255, 0.85);
}

.sitemap-hero .badge-count {
  background: var(--dsr-yellow);
  color: var(--dsr-blue-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4em 1em;
  border-radius: 20px;
}

.sitemap-state-card {
  background: #fff;
  border: 1px solid rgba(25, 89, 156, 0.08);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.sitemap-state-card:hover {
  box-shadow: 0 4px 20px rgba(25, 89, 156, 0.1);
}

.sitemap-state-header {
  background: linear-gradient(135deg, var(--dsr-blue), var(--dsr-blue-dark));
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.sitemap-state-header i {
  color: var(--dsr-yellow);
}

.sitemap-type-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dsr-blue);
  padding: 0.8rem 1.5rem 0.3rem;
  margin: 0;
  border-top: 1px solid rgba(25, 89, 156, 0.06);
}

.sitemap-type-label:first-of-type {
  border-top: none;
}

.sitemap-place-list {
  list-style: none;
  padding: 0 1.5rem 0.8rem;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.sitemap-place-list li {
  width: 50%;
  padding: 0.25rem 0;
}

.sitemap-place-list a {
  color: #4a5568;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.sitemap-place-list a i {
  color: var(--dsr-yellow);
  font-size: 0.7rem;
  margin-right: 0.4rem;
}

.sitemap-place-list a:hover {
  color: var(--dsr-blue);
}

@media (max-width: 768px) {
  .sitemap-place-list li {
    width: 100%;
  }
}


/****************************************/
/************ FOOTER SECTION ************/
/****************************************/

/* ═══════════════════════════════
       FOOTER
    ═══════════════════════════════ */
.site-footer {
    background: #0f1f36;
    padding: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 60px 80px;
    max-width: 1300px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
    width: 140px;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    color: #7a95ad;
    line-height: 1.7;
}

.footer-col-title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #4a6880;
    margin-bottom: 16px;
}

.footer-contact-col,
.footer-social-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-title {
    grid-column: 1 / -1;
}

.footer-nav-col {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    column-gap: 40px;
    row-gap: 10px;
    align-content: start;
}

.footer-nav-col a,
.footer-contact-col a {
    font-size: 14px;
    color: #8ca4bc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav-col a:hover,
.footer-contact-col a:hover {
    color: #fff;
}

.footer-contact-col p {
    font-size: 13px;
    color: #4a6880;
    line-height: 1.5;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    color: #5a7d98;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.social-link:hover {
    color: #fff;
}

.footer-bottom {
    padding: 20px 80px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #354f65;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 40px 50px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .footer-nav-col {
        grid-template-columns: 1fr;
    }

    .footer-col-title {
        grid-column: auto;
    }

    .footer-bottom {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        gap: 20px;
        padding: 20px 15px;
    }

    .footer-social-icons {
        gap: 12px;
    }

    .footer-bottom {
        padding: 10px 15px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/****************************************/
/********** Video Modal Styles **********/
/****************************************/
#videoModal .modal-content {
  background: rgba(0, 0, 0, 0.95);
}

#videoModal .btn-close {
  background: var(--dsr-yellow);
  border-radius: 50%;
  padding: 0.75rem;
  opacity: 1;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#videoModal .btn-close:hover {
  background: #ffd700;
  transform: scale(1.1) rotate(90deg);
}

#videoModal .btn-close:focus {
  box-shadow: 0 0 0 0.25rem rgba(241, 217, 13, 0.5);
}

/* Permite clicar fora do modal para fechar */
#videoModal .modal-dialog {
  pointer-events: none;
}

#videoModal .modal-content {
  pointer-events: all;
}

/* Efeito ao abrir o modal */
#videoModal.show .modal-dialog {
  animation: modalZoomIn 0.3s ease;
}

@keyframes modalZoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Estilo para o backdrop mais escuro */
#videoModal .modal-backdrop {
  background-color: rgba(0, 0, 0, 0.9);
}

/* ========================================
   CLICKABLE REVIEWS STYLES
   ======================================== */

/* Review card link - subtle hover effect */
.review-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.review-card-link:hover {
  color: inherit;
  text-decoration: none;
}

.review-card-link:hover .img-area {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.review-card-link .img-area {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  overflow: hidden;
  max-width: 70%;
  margin: 30px auto;
  aspect-ratio: 1/1;
  border: 4px solid white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.review-card-link .img-area img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Read more indicator - elegant and subtle */
.read-more-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 28px;
  background: var(--dsr-blue);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--dsr-blue);
  width: fit-content;
  box-shadow: 0 4px 12px rgba(25, 89, 156, 0.25);
}

.read-more-indicator i {
  font-size: 0.95rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card-link:hover .read-more-indicator {
  background: var(--dsr-yellow);
  color: var(--dsr-blue-dark);
  border-color: var(--dsr-bluehover);
  box-shadow: 0 6px 20px rgba(25, 89, 156, 0.4);
  transform: translateX(6px) translateY(-2px);
}

.review-card-link:hover .read-more-indicator i {
  transform: translateX(4px);
}

/* Reviews section title */
.sectreviews .aux {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.sectreviews .aux-text {
  color: var(--dsr-blue);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.sectreviews .aux-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffc107 0%, #ff9800 100%);
  border-radius: 2px;
}

.sectreviews h2 {
  color: var(--dsr-blue);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}


/****************************************/
/************ subpages header ***********/
/****************************************/

/* Header Section */
.subpage-header {
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 2px solid #dee2e6;
  position: relative;
}

.subpage-header .hashtag {
  color: var(--dsr-yellow);
  font-weight: 800;
}

.subpage-header h1 {
  color: var(--dsr-blue);
  margin-bottom: 1rem;
}

.subpage-main {
  padding-top: 80px;
  min-height: calc(100vh - var(--dsr-footerheight) - var(--dsr-navbarheight));
  flex: 1 0 auto;
  /* preenche todo o espaço restante */

}

#footer {
  flex-shrink: 0;
  /* garante que o footer fique no final */
}

/* ========================================
   HEADER WITH BACK BUTTON
   ======================================== */


.back-link {
  color: var(--dsr-blue);
  text-decoration: none;
  font-weight: 600;
  background: white;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
}

.back-link:hover {
  background: var(--dsr-yellow);
  color: var(--dsr-blue-dark);
  transform: translateX(-5px);
  box-shadow: 0 4px 12px rgba(25, 89, 156, 0.3);
}


/****************************************
   Search And Category
***********************************/
/* Search Container */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 20px;
  color: var(--dsr-blue);
  font-size: 1.2rem;
  z-index: 2;
}

.search-input {
  padding: 15px 50px 15px 55px;
  font-size: 1.1rem;
  border: 1px solid var(--dsr-blue);
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
}

.search-input:focus {
  outline: none;
  border-color: var(--dsr-bluehover);
  box-shadow: 0 0 0 0.2rem rgba(25, 89, 156, 0.15);
}

.clear-search-btn {
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  color: #999;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
  display: none;
  z-index: 2;
}

.clear-search-btn:hover {
  color: var(--dsr-blue);
}

.clear-search-btn.active {
  display: block;
}

/* Category Filters */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.btn-category {
  padding: 6px 16px;
  border: 1px solid #e0e0e0;
  background-color: white;
  color: var(--dsr-blue);
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-category:hover {
  background-color: var(--dsr-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-category.active {
  background-color: var(--dsr-blue);
  color: white;
  box-shadow: 0 4px 12px rgba(25, 89, 156, 0.3);
}

.a-text {
  display: inline-block;
  text-decoration: none;
  color: var(--dsr-yellow);
  font-weight: bold;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s ease;
}

.a-text:hover {
  color: var(--dsr-bluehover);
  text-decoration: underline;
  transform: translateX(4px);
}


.sect-about-page {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid #e9ecef;
}

.about-page-card {
  background: #ffffff;
  border: 1px solid #e0eefb;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(25, 89, 156, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.about-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(25, 89, 156, 0.15);
  border-color: var(--dsr-yellow);
}

.about-page-header {
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
  border-bottom: 1px solid #e9ecef;
}

.about-page-title {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--dsr-blue);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-page-title i {
  color: var(--dsr-yellow);
  font-size: 1.5rem;
}

.about-page-content {
  padding: 2rem;
}

.about-page-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.about-page-highlights {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}


.highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(25, 89, 156, 0.05);
  border-radius: 8px;
  font-weight: 600;
  color: var(--dsr-blue);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.highlight:hover {
  background: rgba(25, 89, 156, 0.1);
  transform: translateX(4px);
}

.highlight i {
  color: var(--dsr-yellow);
  font-size: 1.2rem;
}

/* ABOUT PAGE - Responsive */
@media (max-width: 768px) {
  .sect-about-page {
    padding: 2rem 1.5rem;
  }

  .about-page-card {
    border-radius: 8px;
  }

  .about-page-header {
    padding: 1.5rem;
  }

  .about-page-title {
    font-size: clamp(1rem, 2vw, 1.3rem);
  }

  .about-page-title i {
    font-size: 1.2rem;
  }

  .about-page-content {
    padding: 1.5rem;
  }

  .about-page-description {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .about-page-highlights {
    gap: 1rem;
  }

  .highlight {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .highlight i {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .sect-about-page {
    padding: 1.5rem 1rem;
  }

  .about-page-header {
    padding: 1.25rem;
  }

  .about-page-title {
    font-size: 1.1rem;
    gap: 0.5rem;
  }

  .about-page-title i {
    font-size: 1rem;
  }

  .about-page-content {
    padding: 1.25rem;
  }

  .about-page-description {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .about-page-highlights {
    gap: 0.75rem;
    flex-direction: column;
  }

  .highlight {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .highlight i {
    font-size: 0.95rem;
  }
}

.sect-local-info {
  padding: 5rem 1rem;
  background: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}

.sect-steps {
  padding: 5rem 1rem;
  overflow: hidden;
  box-sizing: border-box;
}

.sect-services {
  padding: 5rem 1rem;
  background: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .sect-services .col-lg-4 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}

@media (max-width: 576px) {
  .sect-services .col-md-6 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}

.sect-social-proof {
  padding: 5rem 1rem;
  overflow: hidden;
  box-sizing: border-box;
}

.sect-cta {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, var(--dsr-blue) 0%, var(--dsr-blue-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.sect-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(241, 217, 13, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(241, 217, 13, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.sect-cta .cta-content {
  position: relative;
  z-index: 1;
}

.sect-cta .cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sect-cta .cta-title i {
  color: var(--dsr-yellow);
  display: inline-block;
  margin-right: 0.5rem;
}

.sect-cta .cta-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto;
}

.sect-cta .cta-buttons {
  margin-top: 2.5rem;
}

.sect-cta .btn-primary {
  background: var(--dsr-yellow);
  color: var(--dsr-blue-dark);
  border: 2px solid transparent;
  padding: 1rem 2.5rem;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 30px rgba(241, 217, 13, 0.3);
}

.sect-cta .btn-primary:hover {
  background: #fff;
  color: var(--dsr-blue);
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(241, 217, 13, 0.4);
}

.sect-cta .btn-outline-primary {
  color: var(--dsr-yellow);
  border: 2px solid var(--dsr-yellow);
  padding: 1rem 2.5rem;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.sect-cta .btn-outline-primary:hover {
  background: var(--dsr-yellow);
  color: var(--dsr-blue-dark);
  border-color: var(--dsr-yellow);
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(241, 217, 13, 0.4);
}

.sect-cta .cta-support {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.sect-cta .cta-support i {
  color: var(--dsr-yellow);
  margin-right: 0.5rem;
}

section.sectaction div.cta-support p.small a {
  color:#fff;
}
section.sectaction div.cta-support p.small a:hover {
  color: var(--dsr-yellow);
}

.sect-faq {
  padding: 5rem 1rem;
  background: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}

/* MOBILE RESPONSIVE - ALL SECTIONS */
@media (max-width: 768px) {

  .sect-local-info,
  .sect-steps,
  .sect-services,
  .sect-social-proof,
  .sect-cta,
  .sect-faq {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sect-local-info {
    padding: 3rem 1rem;
  }

  .sect-steps,
  .sect-services,
  .sect-social-proof,
  .sect-faq {
    padding: 3rem 1rem;
  }

  .sect-cta {
    padding: 2.5rem 1rem;
  }

  .sect-cta .cta-title {
    font-size: clamp(1.3rem, 3vw, 2rem);
    margin-bottom: 1rem;
  }

  .sect-cta .cta-description {
    font-size: 1rem;
    max-width: 100%;
  }

  .sect-cta .cta-buttons {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .sect-cta .btn-primary,
  .sect-cta .btn-outline-primary {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {

  .sect-local-info,
  .sect-steps,
  .sect-services,
  .sect-social-proof,
  .sect-faq {
    padding: 2rem 0.75rem;
  }

  .sect-cta {
    padding: 2rem 0.75rem;
  }

  .sect-cta .cta-title {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    margin-bottom: 0.75rem;
  }

  .sect-cta .cta-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .sect-cta .cta-buttons {
    margin-top: 1rem;
  }

  .sect-cta .btn-primary,
  .sect-cta .btn-outline-primary {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }

  .sect-cta .cta-support {
    font-size: 0.85rem;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {

  .sect-local-info,
  .sect-steps,
  .sect-services,
  .sect-social-proof,
  .sect-faq {
    padding: 1.5rem 0.5rem;
  }

  .sect-cta {
    padding: 1.5rem 0.5rem;
  }

  .sect-cta .cta-title {
    font-size: clamp(1rem, 2.2vw, 1.4rem);
  }

  .sect-cta .cta-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .sect-cta .btn-primary,
  .sect-cta .btn-outline-primary {
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
  }
}

/****** CITY SIGN ******/
.city-sign-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(220, 53, 69, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.city-sign-img {
  max-height: 350px;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
  transition: transform 0.3s ease;
}

.city-sign-caption {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.city-sign-caption p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.sectaction .container {
  position: relative;
  z-index: 2;
}