:root {
  --font-body: "Montserrat", Arial, Helvetica, sans-serif;
  --font-heading: "Nunito Sans", Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background: #f8f9fa;
  color: #1e293b;
}

* {
  box-sizing: border-box;
}

a {
  color: #2563eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-nav__menu,
.hero-banner__eyebrow,
.hero-banner__button,
.internal-hero__eyebrow,
.section-heading__eyebrow,
.home-cta__eyebrow,
.home-cta__button {
  font-family: var(--font-heading);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  background: #ffffff;
  padding: 18px 0;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo img {
  display: block;
  max-height: 40px;
  width: auto;
}

.site-nav-toggle {
  display: none;
}

.site-nav__menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__menu a {
  color: #0f172a;
  font-weight: 600;
}

.site-nav__menu a:hover {
  color: #2563eb;
}

.hero-banner {
  background:
    linear-gradient(
      90deg,
      rgba(15, 23, 42, 0.8) 0%,
      rgba(15, 23, 42, 0.4) 100%
    ),
    url("../images/bg-banner-3.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 96px 0;
}

.hero-banner__content {
  display: flex;
  align-items: center;
}

.hero-banner__text {
  max-width: 670px;
  color: #ffffff;
  padding: 12px 0;
}

.hero-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 8px 14px;
  background: rgba(248, 250, 252, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #e0faff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(10px);
}

.hero-banner__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #06b6d4;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.22);
}

.hero-banner h2 {
  font-size: 60px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.hero-banner p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 0 20px;
}

.hero-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: #ffffff;
  min-height: 48px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
  padding: 18px 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.32);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.hero-banner__button:hover {
  background: #1d4ed8;
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(29, 78, 216, 0.38);
  transform: translateY(-2px);
}

.site-main {
  background: #f8f9fa;
}

.home-section {
  padding: 86px 0;
}

.home-section--categories,
.home-section--testimonials {
  background: #ffffff;
}

.home-section--benefits {
  background: linear-gradient(180deg, #f8f9fa 0%, #eef6ff 100%);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading--left {
  margin: 0;
  text-align: left;
}

.section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading__eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  background: #06b6d4;
  border-radius: 999px;
}

.section-heading h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}

.section-heading p:not(.section-heading__eyebrow) {
  margin: 16px 0 0;
  color: #475569;
  font-size: 1.04rem;
  line-height: 1.7;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.category-card,
.benefit-card,
.step-card,
.testimonial-card,
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.category-card {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90px;
  padding: 22px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.category-card:hover {
  border-color: rgba(37, 99, 235, 0.38);
  box-shadow: 0 22px 52px rgba(37, 99, 235, 0.12);
  transform: translateY(-3px);
}

.category-card h3,
.benefit-card h3,
.step-card h3 {
  margin: 0 0 0.4rem;
  color: #0f172a;
  font-size: 1.08rem;
  text-align: left;
  line-height: 1.3;
}

.category-card p,
.benefit-card p,
.step-card p,
.testimonial-card p,
.faq-item p {
  margin: 0;
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.65;
}

.benefits-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 48px;
  align-items: start;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  padding: 26px;
}

.benefit-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  border-radius: 8px;
  box-shadow: 0 4px 0px rgba(37, 99, 235, 0.22);
}

.benefit-card__icon::after {
  content: "";
  width: 14px;
  height: 8px;
  margin: auto;
  border-bottom: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.home-cta {
  padding: 4rem 0;
  background: #0f172a;
  color: #ffffff;
}

.home-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.home-cta__eyebrow {
  margin: 0 0 10px;
  color: #67e8f9;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.18;
}

.home-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 50px;
  padding: 0 24px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.32);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.home-cta__button:hover {
  background: #1d4ed8;
  color: #ffffff;
  box-shadow: 0 20px 38px rgba(37, 99, 235, 0.42);
  transform: translateY(-2px);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 30px;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: #2563eb;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  display: flex;
  min-height: 250px;
  padding: 28px;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  color: #1e293b;
  font-size: 1.02rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  margin-top: 24px;
  color: #0f172a;
  font-family: var(--font-heading);
}

.testimonial-card span {
  margin-top: 4px;
  color: #64748b;
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0 22px;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 0;
  color: #0f172a;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.4;
}

.faq-item p {
  padding: 0 0 20px;
}

.internal-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background-color: #0f172a;
  background-image:
    radial-gradient(
      circle at 15% 20%,
      rgba(56, 189, 248, 0.24),
      transparent 34%
    ),
    radial-gradient(
      circle at 86% 12%,
      rgba(37, 99, 235, 0.28),
      transparent 30%
    ),
    linear-gradient(135deg, #0f172a 0%, #111827 48%, #1e293b 100%);
  color: #ffffff;
}

.internal-hero::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
}

.internal-hero__inner {
  position: relative;
  z-index: 1;
}

.internal-hero__title {
  max-width: 860px;
  margin: 0;
  color: #ffffff;
  font-size: 3rem;
  line-height: 1.03;
}

.internal-hero__text {
  max-width: 720px;
  margin: 24px 0 0;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.8;
}

.internal-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 10px 18px;
  border: 1px solid rgba(125, 211, 252, 0.3);
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.14);
  color: #bae6fd;
  box-shadow: 0 16px 42px rgba(8, 47, 73, 0.2);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.internal-hero__eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #38bdf8;
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.14);
}

.internal-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.anuncios-section {
  padding: 62px 0 86px;
}

.anuncios-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
}

.anuncios-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.anuncio-card {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.anuncio-card:hover {
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}

.anuncio-card__media {
  display: flex;
  aspect-ratio: 16 / 9;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
}

.anuncio-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.anuncio-card:hover .anuncio-card__media img {
  transform: scale(1.04);
}

.anuncio-card__body {
  padding: 24px;
}

.anuncio-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.3rem;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
}

.anuncio-card__meta span {
  color: #2563eb;
}

.anuncio-card__categories span {
  display: inline-block;
  background: #f1f5f9;
  color: #2563eb;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 700;
}

.anuncio-card__categories {
  display: flex;
  gap: 8px;
  align-items: center;
}

.anuncio-card__meta time {
  display: block;
  width: 100%;
  margin-top: 4px;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
}

.anuncio-card h2 {
  margin: 0 0 4px;
  font-size: 1.25rem;
  line-height: 1.3;
}

.anuncio-card h2 a {
  color: #0f172a;
}

.anuncio-card h2 a:hover {
  color: #2563eb;
}

.anuncio-card p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}

.anuncio-card__link {
  display: inline-flex;
  margin-top: 18px;
  color: #2563eb;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 1px;
  font-weight: 500;
}

.anuncios-sidebar {
  position: sticky;
  top: 24px;
}

.anuncios-sidebar__panel,
.anuncios-empty {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.anuncios-sidebar__panel {
  padding: 22px;
}

.anuncios-sidebar__panel h2,
.anuncios-empty h2 {
  margin: 0 0 16px;
  color: #0f172a;
  font-size: 1.2rem;
}

.anuncios-categories {
  display: grid;
  gap: 8px;
}

.anuncios-categories a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #334155;
  font-weight: 700;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.anuncios-categories a:hover,
.anuncios-categories a.is-active {
  background: #eff6ff;
  color: #1d4ed8;
}

.anuncios-categories small {
  display: inline-flex;
  min-width: 28px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #475569;
  font-size: 0.78rem;
}

.anuncios-categories a.is-active small {
  background: #2563eb;
  color: #ffffff;
}

.anuncios-empty {
  padding: 34px;
}

.anuncios-empty p {
  margin: 0;
  color: #475569;
  line-height: 1.65;
}

.anuncios-pagination {
  margin-top: 34px;
}

.anuncios-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.anuncios-pagination a,
.anuncios-pagination span {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  color: #0f172a;
  font-weight: 800;
}

.anuncios-pagination .current,
.anuncios-pagination a:hover {
  border-color: #2563eb;
  background: #2563eb;
  color: #ffffff;
}

.page-default {
  background: #f8f9fa;
}

.page-default__section {
  min-height: 500px;
  padding: 62px 0 86px;
}

.page-default__container {
  max-width: 920px;
}

.page-default__content {
  padding: 42px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.page-default__content > *:first-child {
  margin-top: 0;
}

.page-default__content > *:last-child {
  margin-bottom: 0;
}

.page-default__content p,
.page-default__content li {
  color: #334155;
  font-size: 1.03rem;
  line-height: 1.85;
}

.page-default__content p {
  margin: 0 0 22px;
}

.page-default__content h2,
.page-default__content h3,
.page-default__content h4,
.page-default__content h5,
.page-default__content h6 {
  margin: 34px 0 14px;
  color: #0f172a;
  line-height: 1.25;
}

.page-default__content h2 {
  font-size: 1.8rem;
}

.page-default__content h3 {
  font-size: 1.4rem;
}

.page-default__content ul,
.page-default__content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.page-default__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-default__content blockquote {
  margin: 30px 0;
  padding: 20px 24px;
  border-left: 4px solid #2563eb;
  background: #eff6ff;
  color: #1e293b;
}

.page-default__pages {
  margin-top: 30px;
  font-weight: 800;
}

.single-anuncio__hero {
  padding: 64px 0 136px;
  background: linear-gradient(135deg, #0f172a 0%, #134e4a 100%);
  color: #ffffff;
}

.single-anuncio__hero-inner {
  max-width: 880px;
}

.single-anuncio__back {
  display: inline-flex;
  margin-bottom: 26px;
  color: #bfdbfe;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
}

.single-anuncio__back:hover {
  color: #ffffff;
}

.single-anuncio__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 3rem;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 700;
}

.single-anuncio__hero h1 {
  max-width: 920px;
  margin: 0;
  color: #ffffff;
  font-size: 3rem;
  line-height: 1.08;
}

.single-anuncio__hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #dbeafe;
  font-size: 1.08rem;
  line-height: 1.75;
}

.single-anuncio__wrap {
  padding: 0 0 88px;
}

.single-anuncio__container {
  max-width: 940px;
}

.single-anuncio__cover {
  display: flex;
  min-height: 360px;
  width: 100%;
  aspect-ratio: 16 / 9;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: -92px 0 36px;
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #ffffff;
  box-shadow: 0 26px 64px rgba(15, 23, 42, 0.18);
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
}

.single-anuncio__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-anuncio__content {
  padding: 42px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.single-anuncio__content > *:first-child {
  margin-top: 0;
}

.single-anuncio__content > *:last-child {
  margin-bottom: 0;
}

.single-anuncio__content p,
.single-anuncio__content li {
  color: #334155;
  font-size: 1.03rem;
  line-height: 1.85;
}

.single-anuncio__content p {
  margin: 0 0 22px;
}

.single-anuncio__content h2,
.single-anuncio__content h3,
.single-anuncio__content h4 {
  margin: 34px 0 14px;
  color: #0f172a;
  line-height: 1.25;
}

.single-anuncio__content h2 {
  font-size: 1.8rem;
}

.single-anuncio__content h3 {
  font-size: 1.4rem;
}

.single-anuncio__content ul,
.single-anuncio__content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.single-anuncio__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.single-anuncio__content blockquote {
  margin: 30px 0;
  padding: 20px 24px;
  border-left: 4px solid #2563eb;
  background: #eff6ff;
  color: #1e293b;
}

.single-anuncio__pages {
  margin-top: 30px;
  font-weight: 800;
}

.single-anuncio__navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.single-anuncio__navigation a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  color: #0f172a;
  font-family: var(--font-heading);
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

.single-anuncio__navigation a:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.single-anuncio-page {
  background: #f8f9fa;
}

.single-anuncio__hero {
  padding: 42px 0 46px;
  background: #ffffff;
  color: #0f172a;
  border-bottom: 1px solid #e2e8f0;
}

.single-anuncio__hero-inner {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: 42px;
  align-items: center;
}

.single-anuncio__intro {
  max-width: 720px;
}

.single-anuncio__back {
  margin-bottom: 24px;
  color: #2563eb;
}

.single-anuncio__back:hover {
  color: #1d4ed8;
}

.single-anuncio__meta a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 8px;
  background: #0f2d38;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 400;
}

.single-anuncio__hero h1 {
  color: #0f172a;
  font-size: 3rem;
}

.single-anuncio__hero p {
  color: #475569;
}

.single-anuncio__cover {
  min-height: 320px;
  margin: 0;
  border-color: #e2e8f0;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}

.single-anuncio__wrap {
  padding: 48px 0 88px;
}

.single-anuncio__container {
  max-width: 1180px;
}

.single-anuncio__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.single-anuncio__content {
  padding: 40px;
  box-shadow: none;
}

.single-anuncio__aside {
  position: relative;
}

.single-anuncio__contact {
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.single-anuncio__aside-label {
  margin: 0 0 8px;
  color: #2563eb;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.single-anuncio__contact h2 {
  margin: 0 0 18px;
  color: #0f172a;
  font-size: 1.25rem;
  line-height: 1.3;
}

.single-anuncio__contact-list {
  display: grid;
  gap: 10px;
}

.single-anuncio__contact-list a,
.single-anuncio__contact-list div {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8f9fa;
  color: #0f172a;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.single-anuncio__contact-list
  a
  > span:first-child:not(.single-anuncio__contact-icon):not(
    .single-anuncio__address-icon
  ) {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.single-anuncio__contact-list .single-anuncio__whatsapp-button {
  display: flex;
  gap: 10px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-color: #238146;
  background: #348954;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(21, 128, 61, 0.1);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.single-anuncio__contact-list .single-anuncio__site-button {
  display: flex;
  gap: 10px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-color: #dbeafe;
  background: #ffffff;
  color: #1d4ed8;
  font-family: var(--font-heading);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.single-anuncio__contact-list .single-anuncio__address-link {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  color: #334155;
  font-weight: 400;
}

.single-anuncio__address-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  background-color: #0f172a;
  mask: url("../icons/pin.svg") center / contain no-repeat;
  -webkit-mask: url("../icons/pin.svg") center / contain no-repeat;
}

.single-anuncio__address-text {
  color: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
  text-transform: none;
}

.single-anuncio__site-button::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M579.8 267.7C605.8 241.7 620.4 206.4 620.4 169.6C620.4 93 558.3 30.9 481.7 30.9C444.9 30.9 409.6 45.5 383.6 71.5L309.4 145.7C296.9 158.2 296.9 178.5 309.4 191C321.9 203.5 342.2 203.5 354.7 191L428.9 116.8C442.9 102.8 461.9 94.9 481.7 94.9C522.9 94.9 556.4 128.4 556.4 169.6C556.4 189.4 548.5 208.4 534.5 222.4L437.3 319.6C423.3 333.6 404.3 341.5 384.5 341.5C366.2 341.5 348.6 334.8 335 322.7C321.8 310.9 301.6 312.1 289.8 325.3C278 338.5 279.2 358.7 292.4 370.5C317.7 393 350.3 405.5 384.5 405.5C421.3 405.5 456.6 390.9 482.6 364.9L579.8 267.7zM60.2 372.3C34.2 398.3 19.6 433.6 19.6 470.4C19.6 547 81.7 609.1 158.3 609.1C195.1 609.1 230.4 594.5 256.4 568.5L330.6 494.3C343.1 481.8 343.1 461.5 330.6 449C318.1 436.5 297.8 436.5 285.3 449L211.1 523.2C197.1 537.2 178.1 545.1 158.3 545.1C117.1 545.1 83.6 511.6 83.6 470.4C83.6 450.6 91.5 431.6 105.5 417.6L202.7 320.4C216.7 306.4 235.7 298.5 255.5 298.5C273.8 298.5 291.4 305.2 305 317.3C318.2 329.1 338.4 327.9 350.2 314.7C362 301.5 360.8 281.3 347.6 269.5C322.3 247 289.7 234.5 255.5 234.5C218.7 234.5 183.4 249.1 157.4 275.1L60.2 372.3z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M579.8 267.7C605.8 241.7 620.4 206.4 620.4 169.6C620.4 93 558.3 30.9 481.7 30.9C444.9 30.9 409.6 45.5 383.6 71.5L309.4 145.7C296.9 158.2 296.9 178.5 309.4 191C321.9 203.5 342.2 203.5 354.7 191L428.9 116.8C442.9 102.8 461.9 94.9 481.7 94.9C522.9 94.9 556.4 128.4 556.4 169.6C556.4 189.4 548.5 208.4 534.5 222.4L437.3 319.6C423.3 333.6 404.3 341.5 384.5 341.5C366.2 341.5 348.6 334.8 335 322.7C321.8 310.9 301.6 312.1 289.8 325.3C278 338.5 279.2 358.7 292.4 370.5C317.7 393 350.3 405.5 384.5 405.5C421.3 405.5 456.6 390.9 482.6 364.9L579.8 267.7zM60.2 372.3C34.2 398.3 19.6 433.6 19.6 470.4C19.6 547 81.7 609.1 158.3 609.1C195.1 609.1 230.4 594.5 256.4 568.5L330.6 494.3C343.1 481.8 343.1 461.5 330.6 449C318.1 436.5 297.8 436.5 285.3 449L211.1 523.2C197.1 537.2 178.1 545.1 158.3 545.1C117.1 545.1 83.6 511.6 83.6 470.4C83.6 450.6 91.5 431.6 105.5 417.6L202.7 320.4C216.7 306.4 235.7 298.5 255.5 298.5C273.8 298.5 291.4 305.2 305 317.3C318.2 329.1 338.4 327.9 350.2 314.7C362 301.5 360.8 281.3 347.6 269.5C322.3 247 289.7 234.5 255.5 234.5C218.7 234.5 183.4 249.1 157.4 275.1L60.2 372.3z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.single-anuncio__contact-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: currentColor;
  flex: 0 0 auto;
}

.single-anuncio__contact-icon--whatsapp {
  mask: url("../icons/whatsapp.svg") center / contain no-repeat;
  -webkit-mask: url("../icons/whatsapp.svg") center / contain no-repeat;
}

.single-anuncio__contact-list a:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.single-anuncio__contact-list .single-anuncio__whatsapp-button:hover {
  border-color: #14532d;
  background: #277243;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(20, 83, 45, 0.22);
  transform: translateY(-1px);
}

.single-anuncio__contact-list .single-anuncio__site-button:hover {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.12);
  transform: translateY(-1px);
}

.single-anuncio__social {
  margin-top: 2rem;
}

.single-anuncio__social > span {
  display: block;
  margin-bottom: 10px;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.single-anuncio__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.single-anuncio__social-link {
  display: inline-flex;
  gap: 8px;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 800;
}

.single-anuncio__social-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef2ff;
  color: #2563eb;
  font-size: 0.72rem;
  line-height: 1;
}

.single-anuncio__social-link--instagram .single-anuncio__social-icon,
.single-anuncio__social-link--facebook .single-anuncio__social-icon {
  background-color: currentColor;
  color: inherit;
  font-size: 0;
}

.single-anuncio__social-link--instagram .single-anuncio__social-icon {
  mask: url("../icons/instagram.svg") center / contain no-repeat;
  -webkit-mask: url("../icons/instagram.svg") center / contain no-repeat;
}

.single-anuncio__social-link--facebook .single-anuncio__social-icon {
  mask: url("../icons/facebook.svg") center / contain no-repeat;
  -webkit-mask: url("../icons/facebook.svg") center / contain no-repeat;
}

.single-anuncio__social-link:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.single-anuncio__empty-contact {
  margin: 0;
  color: #64748b;
  font-size: 0.94rem;
  line-height: 1.65;
}

.single-anuncio-page {
  background: #f8f9fa;
}

.single-anuncio__hero {
  padding: 46px 0 50px;
  background: #ffffff;
  color: #0f172a;
  border-bottom: 1px solid #e2e8f0;
}

.single-anuncio__hero-inner {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  gap: 44px;
  align-items: center;
}

.single-anuncio__intro {
  max-width: 760px;
}

.single-anuncio__hero h1 {
  max-width: 760px;
  color: #0f172a;
  font-size: 3rem;
}

.single-anuncio__hero p {
  max-width: 680px;
  color: #475569;
}

.single-anuncio__cover {
  min-height: 300px;
  margin: 0;
  border-color: #e2e8f0;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}

.single-anuncio__wrap {
  padding: 46px 0 88px;
}

.single-anuncio__container {
  max-width: 1180px;
}

.single-anuncio__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.single-anuncio__main {
  min-width: 0;
}

.single-anuncio__content {
  padding: 44px;
  box-shadow: none;
}

.single-anuncio__aside {
  display: grid;
  gap: 18px;
  position: relative;
}

.single-anuncio__contact,
.single-anuncio__cta {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.single-anuncio__contact {
  padding: 24px;
}

.single-anuncio__cta {
  padding: 24px;
  background: linear-gradient(135deg, #0f172a 0%, #115e59 100%);
  color: #ffffff;
}

.single-anuncio__cta .single-anuncio__aside-label {
  color: #67e8f9;
}

.single-anuncio__cta h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.3;
}

.single-anuncio__cta p:not(.single-anuncio__aside-label) {
  margin: 0 0 18px;
  color: #dbeafe;
  font-size: 0.96rem;
  line-height: 1.65;
}

.single-anuncio__cta a {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  background: #ffffff;
  color: #0f172a;
  font-family: var(--font-heading);
  font-weight: 800;
}

.single-anuncio__cta a:hover {
  background: #dbeafe;
  color: #0f172a;
}

.single-anuncio-page {
  background: #f8f9fa;
}

.single-anuncio__wrap {
  padding: 48px 0 88px;
}

.single-anuncio__container {
  max-width: 1180px;
}

.single-anuncio__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.single-anuncio__main {
  min-width: 0;
}

.single-anuncio__back {
  display: inline-flex;
  gap: 9px;
  min-height: 40px;
  align-items: center;
  margin: 0 0 18px;
  padding: 0 14px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #ffffff;
  color: #1d4ed8;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.single-anuncio__back::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  background-color: currentColor;
  mask: url("../icons/arrow-left.svg") center / contain no-repeat;
  -webkit-mask: url("../icons/arrow-left.svg") center / contain no-repeat;
}

.single-anuncio__back:hover {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.12);
  transform: translateY(-1px);
}

.single-anuncio__cover {
  display: flex;
  min-height: 430px;
  aspect-ratio: 16 / 9;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 0 28px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
}

.single-anuncio__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-anuncio__header {
  margin-bottom: 26px;
}

.single-anuncio__header h1 {
  max-width: 860px;
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.3rem, 4vw, 2rem);
  font-weight: 800;
  line-height: 1.08;
}

.single-anuncio__header p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #475569;
  font-size: 1.08rem;
  line-height: 1.75;
}

.single-anuncio__content {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 980px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits-layout,
  .faq-layout,
  .anuncios-layout {
    grid-template-columns: 1fr;
  }

  .anuncios-sidebar {
    position: static;
  }

  .single-anuncio__layout {
    grid-template-columns: 1fr;
  }

  .single-anuncio__aside {
    order: -1;
    position: static;
  }

  .single-anuncio__cover {
    order: -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 0;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .site-logo {
    align-self: center;
  }

  .site-nav-toggle {
    display: inline-flex;
    gap: 9px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    background: #ffffff;
    color: #1d4ed8;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  }

  .site-nav-toggle__icon,
  .site-nav-toggle__icon::before,
  .site-nav-toggle__icon::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .site-nav-toggle__icon {
    position: relative;
  }

  .site-nav-toggle__icon::before,
  .site-nav-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .site-nav-toggle__icon::before {
    top: -6px;
  }

  .site-nav-toggle__icon::after {
    top: 6px;
  }

  .site-nav-toggle.is-open .site-nav-toggle__icon {
    transform: rotate(45deg);
  }

  .site-nav-toggle.is-open .site-nav-toggle__icon::before {
    opacity: 0;
  }

  .site-nav-toggle.is-open .site-nav-toggle__icon::after {
    transform: translateY(-6px) rotate(-90deg);
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__menu {
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  }

  .site-nav__menu a {
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 0 12px;
    border-radius: 8px;
  }

  .site-nav__menu a:hover {
    background: #eff6ff;
  }

  .home-section {
    padding: 64px 0;
  }

  .home-cta__inner,
  .steps-grid,
  .testimonial-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .home-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-cta__button {
    width: 100%;
  }

  .anuncios-grid {
    grid-template-columns: 1fr;
  }

  .single-anuncio__navigation {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    padding: 74px 0;
  }

  .category-card,
  .benefit-card,
  .step-card,
  .testimonial-card {
    padding: 24px;
  }

  .internal-hero {
    padding: 58px 0 46px;
  }

  .anuncios-section {
    padding: 42px 0 64px;
  }

  .page-default__section {
    padding: 42px 0 64px;
  }

  .anuncio-card__body,
  .anuncios-sidebar__panel,
  .anuncios-empty,
  .page-default__content {
    padding: 20px;
  }

  .single-anuncio__cover {
    min-height: 220px;
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 4rem;
  }

  .single-anuncio__contact,
  .single-anuncio__cta {
    padding: 24px;
  }

  .single-anuncio__content h2 {
    font-size: 1.45rem;
  }
}

.site-footer {
  background: #0f172a;
  color: #ffffff;
  padding: 5rem 0 1.5rem;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: auto auto;
  gap: 6rem;
  align-items: start;
  justify-content: flex-start;
  padding-bottom: 4rem;
}

.site-footer__brand {
  display: grid;
  gap: 14px;
}

.site-footer__logo {
  display: inline-flex;
  width: fit-content;
}

.site-footer__logo img {
  display: block;
  max-height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}

.site-footer__menu,
.site-footer__menu ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__menu a {
  color: #e2e8f0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
}

.site-footer__menu a:hover {
  color: #67e8f9;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(226, 232, 240, 0.16);
}

.site-footer__bottom p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.6;
}

.site-footer__bottom a {
  color: #ffffff;
  font-weight: 800;
}

.site-footer__bottom a:hover {
  color: #67e8f9;
}

.site-footer__heart {
  color: #ef4444;
  font-weight: 900;
}

@media (max-width: 760px) {
  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }
}
