:root {
  --primary-blue: #192a9a;
  --dark-blue: #141b4d;
  --footer-blue: #1a2eb3;
  --hover-blue: #002a90;
  --text-gray: #555;
  --bg-gray: #edeffc;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: var(--white);
  color: var(--text-gray);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-loading-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  z-index: 9999;
  overflow: hidden;
}

.loading-progress {
  width: 0%;
  height: 100%;
  background: var(--primary-blue);
  animation: loadBar 1.5s ease-in-out forwards;
}

@keyframes loadBar {
  0% {
    width: 0%;
  }

  50% {
    width: 70%;
  }

  100% {
    width: 100%;
  }
}

.header {
  background-color: var(--bg-gray);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 75px;
  display: flex;
  align-items: center;
}

.header.search-active .header-content {
  display: none;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo img {
  height: 32px;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.desktop-nav a {
  font-weight: 500;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-arrow {
  width: 10px;
  height: 6px;
  margin-top: 2px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-box {
  position: relative;
  border-radius: 20px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  width: 220px;
  height: 40px;
  background-color: white;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-gray);
  display: flex;
  align-items: center;
}

.btn-cliente {
  background-color: var(--primary-blue);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-cliente.active {
  background-color: var(--primary-blue);
  color: white;
}

.mobile-icons {
  display: none;
}

.mobile-search-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1500;
  align-items: center;
  padding: 0 15px;
}

.mobile-search-overlay.active {
  display: flex;
}

.mobile-search-container {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 15px;
}

.mobile-search-back {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 5px;
}

.mobile-search-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 30px;
}

.mobile-search-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px 40px 10px 35px;
  background-color: transparent;
  color: #333;
}

.search-icon-input {
  position: absolute;
  left: 5px;
  pointer-events: none;
  color: #666;
  width: 18px;
}

.mobile-search-clear {
  position: absolute;
  right: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.client-desktop-dropdown {
  display: none;
  position: absolute;
  top: 75px;
  left: 0;
  width: 100%;
  background-color: #1a2eb3;
  z-index: 999;
  padding: 40px 0;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.client-desktop-dropdown.active {
  display: block;
}

.dropdown-container {
  display: grid;
  grid-template-columns: 350px 350px;
  gap: 50px;
}

.dropdown-col h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.separator-line-small {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin-bottom: 25px;
}

.dropdown-items-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 15px;
  font-weight: 700;
  transition: opacity 0.2s;
}

.dropdown-item:hover {
  opacity: 0.8;
}

.dropdown-item svg {
  width: 24px;
  height: 24px;
}

main {
  padding-top: 40px;
  padding-bottom: 100px;
}

.hero-card {
  position: relative;
  background-color: var(--primary-blue);
  border-radius: 20px;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(95deg, var(--primary-blue) 36%, rgba(0, 55, 188, 0.6) 55%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 60px;
  color: var(--white);
  max-width: 50%;
  flex-shrink: 0;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 24px;
  font-weight: 700;
}

.separator-line {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.337);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.5;
  max-width: 90%;
}

.hero-image-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: 65%;
  height: 100%;
  z-index: 1;
}

.img-desk {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}

.img-mobile {
  display: none;
}

.quick-access {
  margin-top: 40px;
}

.quick-access h2 {
  font-size: 32px;
  color: #000;
  font-weight: 700;
  margin-bottom: 30px;
}

.qa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.qa-card {
  background-color: #eff1fa;
  border-radius: 16px;
  padding: 30px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
}

.qa-icon {
  width: 49px;
  height: auto;
  align-self: flex-end;
  transition: transform 0.3s ease;
}

.qa-text {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  transition: transform 0.3s ease;
}

.qa-card:hover {
  border-color: var(--primary-blue);
}

.qa-card:hover .qa-icon {
  transform: translate(-5px, 5px);
}

.qa-card:hover .qa-text {
  transform: translate(5px, -5px);
}

.app-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #eff1fa;
  border-radius: 16px;
  padding: 25px 40px;
  margin-top: 20px;
  transition: background-color 0.2s;
}

.app-card:hover {
  background-color: #e5e8f7;
}

.app-card-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.app-icon {
  width: 30px;
  height: auto;
}

.app-text-group h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.app-text-group p {
  font-size: 16px;
  color: #333;
}

.app-arrow {
  width: 20px;
  height: 20px;
}

.whatsapp-section {
  margin-top: 100px;
  margin-bottom: 80px;
}

.whatsapp-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.whatsapp-qr img {
  width: 280px;
  height: 280px;
  display: block;
}

.whatsapp-info h2 {
  font-size: 34px;
  color: #000;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.whatsapp-info p {
  font-size: 20px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 15px;
}

.tutorial-section {
  padding: 40px 0 80px 0;
}

.tutorial-section h2 {
  font-size: 34px;
  color: #000;
  font-weight: 700;
  margin-bottom: 40px;
}

.tutorial-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.tutorial-toggle {
  background-color: #f4f5f7;
  border-radius: 30px;
  padding: 5px;
  display: inline-flex;
}

.toggle-btn {
  border: none;
  background: transparent;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background-color: var(--white);
  color: #000;
  font-weight: 700;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.steps-container {
  position: relative;
}

.steps-line {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #192a9a 0%, #a2dbf5 100%);
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-circle {
  width: 50px;
  height: 50px;
  background-color: #192a9a;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 0 0 5px white;
}

.step-text {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.conta-bv-section {
  padding-bottom: 40px;
  margin-bottom: 20px;
}

.conta-bv-card {
  background-color: #1a2eb3;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  position: relative;
  min-height: 420px;
}

.conta-bv-content {
  flex: 1;
  padding: 60px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.conta-tag {
  background-color: white;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 6px;
  align-self: flex-start;
  margin-bottom: 20px;
}

.conta-bv-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.conta-bv-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.5;
  max-width: 90%;
}

.btn-conta {
  background-color: white;
  color: #192a9a;
  padding: 14px 28px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  align-self: flex-start;
  margin-bottom: 20px;
  display: inline-block;
}

.disclaimer {
  font-size: 14px;
  opacity: 0.9;
}

.conta-bv-image {
  flex: 1;
  position: relative;
  background-color: #2fb4e9;
  overflow: hidden;
}

.conta-bv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.negotiation-section {
  margin-top: 20px;
}

.neg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.neg-card {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.reneg-card {
  background-color: #eff1fa;
}

.reneg-content {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reneg-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.reneg-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.5;
}

.btn-reneg {
  background-color: #1a2eb3;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  width: fit-content;
}

.reneg-img-container {
  height: 200px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: #1a2eb3;
}

.reneg-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quitar-card {
  background-color: #1a2eb3;
}

.quitar-img-container {
  height: 220px;
  position: relative;
}

.quitar-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quitar-content {
  padding: 40px;
  background-color: #1a2eb3;
  color: white;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quitar-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.quitar-content p {
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.5;
}

.btn-quitar {
  background-color: white;
  color: #1a2eb3;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  width: fit-content;
}

.search-results-section {
  width: 100%;
  background-color: #fff;
  min-height: 80vh;
}

.search-results-header-bar {
  background-color: #243bc9;
  padding: 60px 0;
  color: white;
  text-align: center;
  width: 100%;
}

.search-results-header-bar h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.search-results-body {
  padding: 40px 0 80px 0;
}

.search-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.result-info-area {
  grid-column: 1;
  grid-row: 1;
}

.result-image-area {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.result-cta-area {
  grid-column: 1;
  grid-row: 2;
}

.results-sub-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.results-term {
  font-size: 16px;
  color: #333;
  margin-bottom: 40px;
  word-break: break-word;
}

.results-term span {
  display: block;
  margin-top: 4px;
  font-weight: 700;
}

.results-msg-block h3 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.2;
}

.results-msg-block p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.tips-label {
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  display: block;
}

.results-tips {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 30px;
  color: #333;
}

.results-tips li {
  margin-bottom: 8px;
  font-size: 16px;
}

.result-cta-area h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #028a34;
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.2s;
  width: fit-content;
}

.btn-whatsapp-cta:hover {
  background-color: #026e2a;
}

.footer {
  background-color: var(--footer-blue);
  padding: 60px 0 30px 0;
  border-top: none;
  font-size: 14px;
  color: white;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.footer-col-app h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.app-buttons-col {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.app-store-btn {
  background-color: rgba(255, 255, 255, 0);
  color: #ffffff;
  border: 1px solid white;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
  width: fit-content;
}

.app-store-btn:hover {
  opacity: 0.8;
}

.siga-o-bv {
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-col h3 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: white;
  opacity: 0.9;
  font-weight: 300;
  transition: opacity 0.2s;
}

.footer-col ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo-small img {
  height: 30px;
}

.legal-text {
  font-size: 12px;
  color: white;
  opacity: 0.9;
  max-width: 100%;
}

.legal-text p {
  margin-bottom: 5px;
}

.footer-certifications {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.cert-stamp {
  background: white;
  color: var(--footer-blue);
  padding: 5px 10px;
  font-size: 10px;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
}

.floating-accessibility {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 99;
}

.access-icon {
  background-color: var(--primary-blue);
  color: white;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 7px 0 0 7px;
  border: 1px solid rgb(255, 255, 255);
}

.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
}

.whatsapp-icon {
  background-color: #028a34;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s;
}

.whatsapp-icon:hover {
  transform: scale(1.05);
}

.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: auto;
  max-width: 600px;
  background-color: var(--primary-blue);
  color: white;
  padding: 25px 30px 25px 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  z-index: 1500;
  transition: opacity 0.3s, transform 0.3s;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
}

.cookie-content p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 0;
}

.cookie-content a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}

.btn-accept {
  background-color: var(--white);
  color: var(--primary-blue);
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
  transition: 0.2s;
  white-space: nowrap;
}

.btn-accept:hover {
  background-color: #f0f0f0;
}

.btn-config {
  background: none;
  border: none;
  color: white;
  text-decoration: underline;
  font-size: 13px;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
}

.cookie-icon-badge {
  position: absolute;
  left: -35px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #e6e6e6;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1501;
}

.cookie-icon-badge svg {
  width: 36px;
  height: 36px;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 2000;
  overflow-y: auto;
}

.modal-content {
  background: white;
  max-width: 700px;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  text-align: left;
  margin-bottom: 20px;
}

.modal-logo {
  width: 50px;
  margin-bottom: 20px;
  display: block;
}

.modal-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.modal-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 30px;
}

.modal-desc a {
  text-decoration: underline;
  color: #333;
  font-weight: 500;
}

.btn-full-blue {
  width: 100%;
  background-color: var(--primary-blue);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 20px;
}

.manage-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-header {
  display: flex;
  align-items: center;
  padding: 15px 0;
  justify-content: space-between;
  cursor: pointer;
}

.plus-icon {
  color: var(--primary-blue);
  font-size: 24px;
  font-weight: bold;
  margin-right: 15px;
  width: 20px;
}

.accordion-header span:nth-child(2) {
  flex: 1;
  font-weight: 700;
  font-size: 14px;
  color: #333;
}

.status-active {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 14px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: var(--primary-blue);
}

input:checked+.slider:before {
  transform: translateX(24px);
}

.modal-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.handtalk-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  z-index: 3000;
  animation: fadeIn 0.3s ease;
}

.handtalk-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f8f8f8;
  width: 320px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 15px;
  align-items: flex-start;
  font-family: 'Roboto', sans-serif;
  border: 1px solid #fff;
}

.handtalk-icon {
  margin-top: 2px;
  flex-shrink: 0;
}

.handtalk-content {
  flex: 1;
}

.handtalk-content h3 {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.handtalk-content p {
  color: #666;
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

.handtalk-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #999;
  position: absolute;
  top: 10px;
  right: 15px;
  line-height: 1;
  transition: color 0.2s;
}

.handtalk-close:hover {
  color: #333;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.client-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 2100;
}

.client-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 360px;
  height: 100%;
  background-color: #1a2eb3;
  color: white;
  z-index: 2200;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

.client-sidebar.active {
  right: 0;
}

.client-header {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.client-logo svg {
  height: 28px;
  width: auto;
}

.client-title {
  font-size: 18px;
  font-weight: 700;
}

.client-close {
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  line-height: 0.5;
}

.client-body {
  padding: 30px;
  overflow-y: auto;
  flex: 1;
}

.client-section {
  margin-bottom: 40px;
}

.client-section h3 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
  opacity: 0.9;
}

.client-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.client-card {
  background-color: #243bc9;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 120px;
  transition: background-color 0.2s;
  color: white;
  position: relative;
  overflow: hidden;
}

.client-card:hover {
  background-color: #2d46df;
}

.client-card svg {
  margin-bottom: 10px;
}

.client-card span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.mobile-menu-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: #1a2eb3;
  color: white;
  z-index: 2500;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu-sidebar.active {
  right: 0;
}

.mobile-menu-header {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.mobile-menu-search-block {
  padding: 10px 25px 25px 25px;
}

.mobile-inner-search {
  background-color: #243bc9;
  border-radius: 30px;
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

.mobile-inner-search input {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  color: white;
  font-size: 16px;
}

.mobile-inner-search input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.mobile-inner-search svg {
  color: white;
}

.mobile-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 20px 25px;
  gap: 15px;
}

.mobile-menu-item {
  background-color: #243bc9;
  border-radius: 12px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  color: white;
  font-weight: 500;
  font-size: 14px;
}

.mm-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {

  .desktop-nav,
  .desktop-only {
    display: none;
  }

  .client-desktop-dropdown.active {
    display: none;
  }

  .mobile-icons {
    display: flex;
    gap: 15px;
  }

  .mobile-icons .icon-btn {
    background-color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .btn-cliente {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 700;
  }

  main {
    padding-top: 20px;
    padding-bottom: 80px;
  }

  .hero-card {
    flex-direction: column;
    height: auto;
    min-height: auto;
    padding-bottom: 160px;
    align-items: flex-start;
    border-radius: 16px;
  }

  .hero-bg-shape {
    display: none;
  }

  .hero-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    order: 1;
  }

  .hero-image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 55, 188, 0) 45%, var(--primary-blue) 90%);
  }

  .img-desk {
    display: none;
  }

  .img-mobile {
    display: block;
    width: 100%;
    height: auto;
  }

  .hero-content {
    order: 2;
    max-width: 100%;
    padding: 25px;
    margin-top: 0;
  }

  .breadcrumb {
    display: none;
  }

  .hero-content h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 16px;
    color: white;
    display: block;
    line-height: 1.4;
  }

  .qa-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .qa-card:nth-child(3) {
    grid-column: span 2;
  }

  .quick-access h2 {
    font-size: 26px;
  }

  .app-card {
    padding: 25px;
  }

  .whatsapp-section {
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .whatsapp-wrapper {
    flex-direction: column;
    text-align: left;
    gap: 20px;
  }

  .whatsapp-qr img {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }

  .whatsapp-info h2 {
    font-size: 23px;
  }

  .whatsapp-info p {
    font-size: 16px;
  }

  .tutorial-section {
    padding: 20px 0 50px 0;
  }

  .tutorial-section h2 {
    font-size: 24px;
    text-align: center;
  }

  .tutorial-toggle-wrapper {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .tutorial-toggle-wrapper::-webkit-scrollbar {
    display: none;
  }

  .tutorial-toggle {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    background: transparent;
  }

  .toggle-btn {
    white-space: nowrap;
  }

  .steps-line {
    display: block;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-left: 20px;
  }

  .steps-line {
    width: 4px;
    height: 100%;
    top: 0;
    left: 42px;
    background: linear-gradient(180deg, #192a9a 0%, #a2dbf5 100%);
  }

  .step-item {
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
  }

  .step-circle {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .conta-bv-card {
    flex-direction: column;
    height: auto;
    border-radius: 0;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }

  .conta-bv-content {
    padding: 30px;
    order: 2;
  }

  .conta-bv-content h2 {
    font-size: 22px;
  }

  .conta-bv-image {
    order: 1;
    height: 250px;
    background-color: #2fb4e9;
  }

  .btn-conta {
    width: 100%;
    text-align: center;
    font-size: 14px;
  }

  .neg-grid {
    grid-template-columns: 1fr;
  }

  .reneg-img-container {
    height: 250px;
  }

  .quitar-img-container {
    height: 250px;
  }

  .btn-reneg,
  .btn-quitar {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer-col-app {
    order: 1;
  }

  .footer-col {
    order: 2;
  }

.cookie-banner {
    left: 0;
    transform: none;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 15px 15px 0 0;
    padding: 25px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: calc(25px + env(safe-area-inset-bottom));
    max-height: 85dvh;
    overflow-y: auto;
  }

  .cookie-content {
    padding-left: 0;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: space-between;
  }

  .btn-accept {
    flex: 1;
    text-align: center;
  }

  .cookie-icon-badge {
    display: none;
  }

  .floating-whatsapp {
    bottom: 30px;
    right: 20px;
  }

  .handtalk-card {
    width: 90%;
  }

  .modal-content {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    border-radius: 0;
    top: 0;
    left: 0;
    transform: none;
    margin: 0;
  }

  .client-sidebar {
    width: 100%;
  }

  .search-grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .result-info-area {
    grid-column: 1;
    grid-row: 1;
  }

  .result-image-area {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 20px;
  }

  .result-cta-area {
    grid-column: 1;
    grid-row: 3;
  }

  .search-results-header-bar {
    padding: 40px 0;
  }

  .search-results-header-bar h1 {
    font-size: 24px;
  }
}

@media (min-width: 901px) {
  .mobile-menu-sidebar,
  .client-sidebar,
  .client-overlay,
  .mobile-search-overlay {
    display: none !important;
  }

  .header.search-active .header-content {
    display: flex !important;
  }
}