/**
 * New Branding overrides (non-destructive baseline)
 * Source of truth: /new_branding/estilos.pdf
 */

:root {
  /* Brand colors */
  --nb-beige: #F6F1EC;
  --nb-olive: #627963;
  --nb-mocha: #3E3432;
  --nb-white: #FFFFFF;
  --nb-muted: hsl(30 15% 93%);

  /* Semantic tokens */
  --nb-bg: var(--nb-beige);
  --nb-text: var(--nb-mocha);
  --nb-accent: var(--nb-olive);
  --nb-surface: var(--nb-white);

  /* Typography (Neue Montreal is commercial; keep safe fallbacks) */
  --nb-font-sans: "Neue Montreal", "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --nb-font-narrow: "Archivo Narrow", "Open Sans Condensed", "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Radii */
  --nb-radius-sm: 8px;
  --nb-radius-md: 14px;
  --nb-radius-lg: 20px;
}

html,
body {
  color: var(--nb-text);
  background: var(--nb-bg);
  font-family: var(--nb-font-sans);
}

html.nb-bg-light,body.nb-bg-light, .nb-bg-light, .contact-form-wrapper .inner-wrapper, .contact-info .inner-wrapper, .map-wrapper .inner-wrapper {
  background: #FAFAF8;
}

.nb-bg-grey{
 
  background: white;
}
/* Headings: use narrow brand font */
h1, h2, h3, h4, h5, h6,
.line_titls {
  font-family: var(--nb-font-narrow);
  letter-spacing: 0.2px;
}

/* Secondary pages: header (H1 + breadcrumb) */
.nb-page-header {
  margin: 8px 0 26px;
  padding: 12px 0 14px;
}

.nb-border-bottom{
  border-bottom: 1px solid color-mix(in srgb, var(--nb-text) 12%, transparent);
}

.nb-page-title {
  margin: 8px 0 0;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--nb-text);
}

.nb-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  font-size: 13px;
  line-height: 1.2;
  color: color-mix(in srgb, var(--nb-text) 70%, transparent);
  margin-top: 10px;
}

/* Center breadcrumbs when wrapper is centered (flex ignores text-align) */
.text-center .nb-breadcrumb {
  justify-content: center;
}

.nb-breadcrumb__link {
  color: inherit;
  text-decoration: none;
}

.nb-breadcrumb__link:hover,
.nb-breadcrumb__link:focus {
  color: var(--nb-accent);
  text-decoration: underline;
}

.nb-breadcrumb__sep {
  opacity: 0.65;
}

.nb-breadcrumb__current {
  color: var(--nb-text);
  opacity: 0.9;
}

/* Links & buttons: align accent */
a {
  color: var(--nb-accent);
}
a:hover,
a:focus {
  color: var(--nb-mocha);
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px; /* Cambiamos width por max-width para mejor respuesta */
    width: 100%;       /* Asegura que ocupe el espacio disponible hasta el tope */
  }
}



.btn,
.yellow-btn,
.gray-btn {
  border-radius: var(--nb-radius-md);
}

/* Subtle surfaces */
.inner-wrapper,
.desc-box,
.item-inner {
  border-radius: var(--nb-radius-lg);
}

.nb-btn-secondary{
  background-color:white;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}

.nb-h2{
  font-size: clamp(36px, 4.2vw, 54px)!important;
  font-weight: 700;
  line-height: 1.1;
}

.nb-h3{
  font-weight: 700;
  font-size: 16px !important;
}

.nb-listing-title{
  min-height: 64px;
}

.nb-listing-title h3{
  margin-top: 0;
  margin-bottom: 6px;
}

.nb-listing-title h4{
  margin-top: 0;
  margin-bottom: 0;
}

.nb-mt0{
  margin-top: 0px !important;
}
.nb-mt40{
  margin-top: 40px;
}

.nb-mb0{
  margin-bottom: 0px;
}

.nb-mb50{
  margin-bottom: 50px;
}

.nb-mb100{
  margin-bottom: 100px;
}

.nb-ml15{
  margin-left: 15px;
}

.nb-pt100{
  padding-top: 100px;
}

.nb-bg-beige, .select.select-theme-default .select-options .select-option.select-option-highlight{
  background-color: var(--nb-beige);
}

.nb-bg-white{
  background-color: var(--nb-white);
}

.nb-bg-muted{
  background-color: var(--nb-muted);
}

.nb-color-olive{
  color: var(--nb-olive);
}

.nb-color-dark, .select.select-theme-default .select-options .select-option.select-option-highlight{
  color: var(--nb-mocha) !important;
}


.nb-fs24{ font-size: 24px !important;}
.nb-fs22{ font-size: 22px !important;}
.nb-fs20{ font-size: 20px !important;}
.nb-fs18{ font-size: 18px !important;}
.nb-fs16{ font-size: 16px !important;}
.nb-fs14{ font-size: 14px !important;}
.nb-fs12{ font-size: 12px !important;}

/* Header / top menu (new branding) */
#premium-bar {
  background: color-mix(in srgb, var(--nb-bg) 92%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--nb-text) 10%, transparent);
}

#premium-bar .navbar {
  margin-bottom: 0;
  border: 0;
  background: transparent;
}

#premium-bar #top-strip {
  padding: 3px 0;
}

#premium-bar .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.nb-brand,
#premium-bar .navbar-nav > li > a {
  --nb-nav-vpad: 12px;
}

#premium-bar .navbar-nav > li > a {
  padding-top: var(--nb-nav-vpad);
  padding-bottom: var(--nb-nav-vpad);
}

.social-icons {
  margin: 0;
}

#top-strip .social-icons {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

#top-strip .social-icons li {
  float: none;
  margin: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgb(53 61 66 / 50%);
  border-radius: 100px;
  overflow: hidden;
  background: transparent;
}

#top-strip .social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  background: transparent;
  line-height: 1;
}

#top-strip .social-icons li a:hover,
#top-strip .social-icons li a:focus {
  background: #fff;
  color: #333 !important;
}

.social-icons li:hover {
  background-color: transparent;
}

.social-icons li:hover a {
  color: inherit !important;
}

.nb-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  height: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.nb-brand__logo {
  height: 69px;
  width: auto;
  display: block;
}

.nb-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: var(--nb-text);
}

.nb-brand__name {
  font-family: var(--nb-font-narrow);
  font-size: 20px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.nb-brand__tagline {
  font-size: 12px;
  opacity: 0.75;
}

#bs-example-navbar-collapse-1{

  margin-top: 0px;
}

.wrapper-logo{
  width: 303px;
  top: 0px;
  position: relative;
  display: inline-block;
  height: 100%;
  top: -8px;
}

#bs-example-navbar-collapse-1{

  margin-top: 7px;
}

.navbar .social-icons {
  top: 4px;
  position: relative;
}

#bs-example-navbar-collapse-1 .social-icons {
  margin-left:10px;
}

#premium-bar nav li a {
  letter-spacing: 0.04em;
}


/*FOOTER*/

.nb-footer {
  background: linear-gradient(160deg, #3d3428 0%, #2e2820 60%);
  color: rgb(240 234 216 / 55%);
  margin-top: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.nb-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgb(106 158 127 / 18%) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgb(106 158 127 / 8%) 0%, transparent 60%);
  pointer-events: none;
}

.nb-footer > .container {
  position: relative;
  z-index: 1;
}

.nb-footer a {
  color: rgb(240 234 216 / 55%);
  text-decoration: none;
}

.nb-footer a:hover,
.nb-footer a:focus {
  color: #b8d6b9;
}

.nb-footer__follow {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid rgb(240 234 216 / 12%);
  padding: 40px 0;
  margin-bottom: 0;
}

.nb-footer__eyebrow {
  margin: 0 0 4px;
  font-family: "Cormorant Garamond", var(--nb-font-narrow);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8bbfa0;
}

.nb-footer__follow-title {
  margin: 0;
  font-family: "Cormorant Garamond", var(--nb-font-narrow);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #f0ead8;
}

.nb-footer__follow-title strong {
  font-weight: 600;
  color: #fff;
}

.nb-footer__follow-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.nb-footer__social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #6a9e7f;
  border-radius: 2px;
  color: #f0ead8 !important;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-width: 0;
  justify-content: center;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
}

.nb-footer__social-btn:hover,
.nb-footer__social-btn:focus {
  background: rgb(106 158 127 / 18%);
  color: #fff !important;
}

.nb-footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0;
  align-items: start;
  padding: 52px 0;
}

.nb-footer__col {
  min-width: 0;
}

.nb-footer__main .nb-footer__col:not(:first-child) {
  border-left: 1px solid rgb(240 234 216 / 12%);
  padding-left: 34px;
}

.nb-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.nb-footer__logo {
  width: auto;
  height: 69px;
  object-fit: contain;
}

.nb-footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.15;
}

.nb-footer__name {
  font-family: "Cormorant Garamond", var(--nb-font-narrow);
  font-size: 20px;
  font-weight: 100;
  color: #f0ead8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.nb-footer__tagline {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 300;
  color: #8bbfa0;
  letter-spacing: 0.06em;
  font-family: var(--nb-font-sans);
}

.nb-footer__description {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.8;
  color: rgb(240 234 216 / 55%);
  margin-bottom: 18px;
  max-width: 280px;
}

.nb-footer__register {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgb(240 234 216 / 35%);
  border: 1px solid rgb(240 234 216 / 10%);
  padding: 6px 12px;
  border-radius: 1px;
  position: relative;
}

.nb-footer__register::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #6a9e7f;
  display: inline-block;
  position: static;
}

.nb-footer__title {
  margin: 0 0 22px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8bbfa0;
  font-family: var(--nb-font-sans);
  border-bottom: 1px solid rgb(240 234 216 / 12%);
  padding-bottom: 12px;
}

.nb-footer__line {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 300;
  font-family: var(--nb-font-sans);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgb(240 234 216 / 55%);
}

.nb-footer__line a {
  color: inherit;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.nb-footer__line i {
  color: #8bbfa0;
  font-size: 15px;
  margin-top: 2px;
}

.nb-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nb-footer__nav a {
  font-size: 14px;
  font-weight: 300;
  font-family: var(--nb-font-sans);
  line-height: 1.4;
  letter-spacing: 0.04em;
  padding: 6px 0;
}

.nb-footer__bottom {
  text-align: left;
  padding: 20px 0;
  border-top: 1px solid rgb(240 234 216 / 12%);
  font-size: 11.5px;
  font-weight: 300;
  line-height: 1.5;
  opacity: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nb-footer__bottom-left {
  color: rgb(240 234 216 / 28%);
  letter-spacing: 0.05em;
}

.nb-footer__bottom-right {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.nb-footer__bottom-right a {
  color: rgb(240 234 216 / 28%);
  letter-spacing: 0.05em;
}

/*FIN FOOTER*/

/*PORTADA*/

.slider-section {
  position: relative;
}

.slider-section .main-flexslider,
.slider-section .main-flexslider .slides,
.slider-section .main-flexslider .bgcomprar {
  height: min(760px, 100vh);
}

.slider-section .main-flexslider .bgcomprar {
  position: relative;
  background-position: center center !important;
  background-size: cover !important;
}

.slider-section .main-flexslider .bgcomprar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgb(10 22 10 / 88%) 0%,
    rgb(15 28 15 / 60%) 42%,
    rgb(20 34 20 / 28%) 100%
  );
}

.nb-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.nb-hero-content__inner {
  max-width: 769px;
  color: #fff;
  pointer-events: auto;
}

.nb-hero-content__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a6c1a0;
  opacity: 0.95;
}

.nb-hero-content__title {
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", "Cormorant Garamond", var(--nb-font-narrow);
  font-size: clamp(44px, 6.5vw, 74px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.01em;
}

.nb-hero-content__text {
  margin: 20px 0 0;
  max-width: 460px;
  font-size: 19px;
  line-height: 1.62;
  color: rgb(255 255 255 / 92%);
  opacity: 0.86;
}

.nb-hero-content__actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
}

.nb-hero-btn, .nb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 4px;
  border: 1px solid rgb(255 255 255 / 42%);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.nb-adjustmh1{
  min-height: 38px;
}

.nb-hero-btn i {
  font-size: 18px;
}

.nb-hero-btn--primary, .nb-btn-primary, .contact-form-wrapper .contact-form input[type="submit"] {
  background: #627963 !important;
  border-color: #5a7c5a !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgb(90 124 90 / 45%);
}

.nb-btn-primary{
  box-shadow: none;
}

.nb-hero-btn--primary:hover,
.nb-hero-btn--primary:focus, .nb-btn-primary:hover, .nb-btn-primary:focus {
  background: #3e5c3e;
  border-color: #3e5c3e;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgb(90 124 90 / 55%);
}

.nb-hero-btn--secondary {
  background: rgb(255 255 255 / 8%);
  color: #fff !important;
  backdrop-filter: blur(8px);
}

.nb-hero-btn--secondary:hover,
.nb-hero-btn--secondary:focus {
  background: rgb(255 255 255 / 15%);
  border-color: rgb(255 255 255 / 55%);
  color: #fff !important;
  transform: translateY(-1px);
}

/*FIN PORTADA*/

/*SERVEIS*/
.index #portada1  .container-fluid:first-child > .row.text-center.mb100 {
  margin-top: 40px;
  margin-bottom: 90px;
}

.index #portada1  .container-fluid:first-child > .row.text-center.mb100 > h2 {
  margin-bottom: 42px;
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  color: #2f2f2f;
}

.index #portada1  .container-fluid:first-child > .row.text-center.mb100 .iconos {
  background: #f8f7f5;
  border: 1px solid #ece8e3;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgb(22 34 51 / 6%);
  padding: 30px 26px 28px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.index #portada1  .container-fluid:first-child > .row.text-center.mb100 .iconos img.img-responsive {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: 0 auto 18px;
  opacity: 0.9;
}

.index #portada1  .container-fluid:first-child > .row.text-center.mb100 .iconos h3 {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  color: #303030;
}

.index #portada1  .container-fluid:first-child > .row.text-center.mb100 .iconos p {
  margin: 0;
  max-width: 320px;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 400;
  color: #5a5a5a;
}

@media (max-width: 991px) {
  .index #portada1  .container-fluid:first-child > .row.text-center.mb100 .col-md-4 {
    margin-bottom: 18px;
  }

  .index #portada1  .container-fluid:first-child > .row.text-center.mb100 > h2 {
    margin-bottom: 28px;
    font-size: clamp(30px, 8vw, 44px);
  }

  .index #portada1  .container-fluid:first-child > .row.text-center.mb100 .iconos {
    min-height: 0;
    padding: 24px 20px;
  }

  .index #portada1 > .container-fluid:first-child > .row.text-center.mb100 .iconos h3 {
    font-size: 24px;
  }

  .index #portada1  .container-fluid:first-child > .row.text-center.mb100 .iconos p {
    font-size: 18px;
    max-width: 100%;
  }
}

.services-label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 8px;
}

.services-cards-row {
  margin-top: 40px;
}

.service-card {
  background-color: #f0ede8; /* ajusta al color de fondo de tus cards */
  border-radius: 16px;
  padding: 36px 28px;
  margin: 0 10px;
  text-align: center;
}

.service-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e5e2dd;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 20px;
}

.service-icon-wrap img {
  width: 28px;
  height: 28px;
  filter: opacity(0.6); /* para el tono gris del icono */
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/*SERVEIS - fixes*/

/* 1. Label centrado */
.services-label {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--nb-olive);
  margin-bottom: 10px;
  font-family: var(--nb-font-sans);
  font-weight: 500;
}

/* 2. Cards: fondo beige suave como imagen 2, centradas */
.index #portada1  .container-fluid:first-child > .row.text-center.mb100 .iconos {
  background: color-mix(in srgb, var(--nb-beige) 80%, var(--nb-white));
  border: 1px solid color-mix(in srgb, var(--nb-mocha) 7%, transparent);
  border-radius: var(--nb-radius-lg);
  box-shadow: none;
  padding: 36px 28px 32px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;   /* centrado como imagen 2 */
  text-align: center;
  transition: box-shadow .25s ease, transform .25s ease;
  margin-bottom: 20px;
}

.index #portada1  .container-fluid:first-child > .row.text-center.mb100 .iconos:hover {
  box-shadow: 0 8px 28px rgb(62 52 50 / 8%);
  transform: translateY(-2px);
}

/* 3. Chip del icono — más grande y visible, estilo imagen 2 */
.service-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: color-mix(in srgb, var(--nb-olive) 10%, var(--nb-beige));
  border-radius: var(--nb-radius-sm);
  margin-bottom: 28px;
  flex-shrink: 0;
}

/* 4. SVG más grande y con color olive bien definido */
.service-icon-wrap svg {
  width: 34px;
  height: 34px;
  color: var(--nb-olive);
  stroke: var(--nb-olive);
}

/* 5. Título centrado */
.index #portada1  .container-fluid:first-child > .row.text-center.mb100 .iconos h3 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--nb-mocha);
  font-family: var(--nb-font-narrow);
  text-align: center;
}

/* 6. Párrafo centrado */
.index #portada1  .container-fluid:first-child > .row.text-center.mb100 .iconos p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  color: color-mix(in srgb, var(--nb-mocha) 60%, transparent);
  text-align: center;
}

/* Chip del icono */
.service-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: color-mix(in srgb, var(--nb-olive) 10%, var(--nb-beige));
  border-radius: var(--nb-radius-sm);
  margin-bottom: 28px;
  flex-shrink: 0;
}

/* Icono Lucide */
.service-icon-wrap i[data-lucide],
.service-icon-wrap svg {
  width: 30px !important;
  height: 30px !important;
  stroke: var(--nb-olive) !important;
  stroke-width: 1.5px !important;
  fill: none !important;
  display: block;
}

@media (max-width: 991px) {
  .index #portada1  .container-fluid:first-child > .row.text-center.mb100 .iconos {
    min-height: 0;
    padding: 28px 22px;
    margin-bottom: 16px;
  }
}

/*FIN SERVEIS*/

/*LISTADO DE INMUEBLES*/
.listing-single-item{
  margin-bottom: 28px;
}

.listing-single-item .item-inner{
  background: var(--nb-surface);
  border: 1px solid color-mix(in srgb, var(--nb-mocha) 10%, transparent);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgb(24 22 20 / 6%);
  transition: box-shadow .2s ease, transform .2s ease;
}

.listing-single-item .item-inner:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgb(24 22 20 / 10%);
}

.listing-single-item .item-inner .image-wrapper{
  border-radius: 22px 22px 0 0;
  overflow: hidden;
}

.listing-single-item .item-inner .desc-box{
  border: 0;
  border-radius: 0 0 22px 22px;
  padding: 24px 22px 20px;
}

.listing-single-item .buttons-wrapper {

  float:none;
  width:100%;
}
.listing-single-item .buttons-wrapper > span {

  color: #627963;
  font-size: 24px;
  line-height: 2em;
  font-weight: 700;
}

.flex-direction-nav a{
  background-color: rgba(0,0,0,0.3);
  color: #fff;
}

.author-profile > table tr > td > span{
  background-color: var(--nb-beige);
  color: #627963;
  font-size: 20px;
  font-weight: 700;
}

.property-desc .additional-features .features .single-feature a i{
  color: #627963;
}

/* FIN LISTADO DE INMUEBLES*/
 /*
    PARLEM
*/

.contacte-section {
  background: #EDEAE3;
  font-family: 'DM Sans', sans-serif;
  padding: 80px 20px;
  text-align: center;
}

.contacte-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #627963;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contacte-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: #3E3432;
  margin-bottom: 64px;
}

.contacte-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 50px auto;
}

.contacte-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 180px;
  max-width: 240px;
}

.icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: #E0DDD6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.contacte-card:hover .icon-wrap {
  background: #d6d1c8;
  transform: translateY(-3px);
}

.icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: #627963;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #3E3432 !important;
  margin-bottom:0px;
}

.card-body {
  font-size: 16px !important;
  font-weight: 300 !important;
  color: #7a7370 !important;
  line-height: 1.75 !important;
  text-align: center;
  margin-top:-10px;
}

.instacontact{
  margin-top: 0px;
  margin-left: 5px;
  font-size: 20px;
}

.hw100{
  min-height: 630px;
}

.bgcomprar{
  background:url(../new_branding/foto-placa.jpg) scroll no-repeat;
  background-position: center center !important;
  background-size: cover !important;
}

@media (max-width: 991px) {
    .nb-sm-ml0{
      margin-left: 0;
    }
    
    .nb-hero-content__inner{
      margin-left:20px;
      margin-right:15px;
    }

    .hw100,.hw90{
      height: 90% !important;
      min-height: 630px;
    }
  
    .hw100-xs{
      height: 100% !important;
      min-height: 630px;
    }

    .navbar-toggle {
      margin-top: 6px;
    }

    .sidebar-widget{
      padding: 10px;
    }
}

/* Responsive (Bootstrap breakpoints) */
@media (max-width: 767px) {

  
  .nserv-xs{
    padding-top:50px;

  }
  .slider-xs{
    margin-bottom: 0px;
  }
  .slider-section{
    overflow: hidden;
  }
  

  .slider-section .main-flexslider,
  .slider-section .main-flexslider .slides,
  .slider-section .main-flexslider .bgcomprar {
    height: 100svh;
    min-height: 630px;
  }

  .nb-hero-content {
    align-items: center;
  }

  .nb-hero-content .container {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 0;
  }

  .nb-hero-content__eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .nb-hero-content__title {
    font-size: clamp(42px, 11vw, 56px);
    line-height: 1.05;
  }

  .nb-hero-content__text {
    margin-top: 14px;
    max-width: 100%;
    line-height: 1.4;
    opacity: 0.82;
  }

  .nb-hero-content__actions {
    margin-top: 22px;
    gap: 10px;
    width: 100%;
    flex-direction: column;
  }

  .nb-hero-btn {
    width: 100%;
    min-height: 52px;
    font-size: 16px;
    line-height: 1;
    padding: 0 20px;
    font-family: var(--nb-font-sans);
    font-weight: 500;
  }

  .nb-hero-btn i {
    font-size: 20px;
  }


  .adjust{
    width: 50px;
    position: absolute;
    right: 15px;
  }
  .nb-brand__logo {
    height: 40px;
  }

  .nb-brand {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .dividiomes{
    right: 15px;
    
  }

  #premium-bar {
    padding: 0 0 0 0 !important;
  }

  .navbar-nav.navbar-right:last-child{
    margin-left: 0px ;
    margin-right: 0px ;
    margin-top:0px;
  }
  .mobile-menu > li > a{
    padding-left: 15px;
  }

  

  .nb-footer {
    padding: 0;
  }

  .nb-footer__follow-copy{
    display: block;
    text-align: center;
    width: 100%;
  }

  .nb-footer__follow {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 0;
    gap: 20px;
  }

  .nb-footer__follow-title {
    font-size: 20px;
  }

  .nb-footer__follow-actions {
    width: 100%;
    flex-direction: column;
  }

  .nb-footer__social-btn {
    width: 100%;
    max-width: 165px;
  }

  .nb-footer__main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }

  .nb-footer__brand {
    display:block;
    margin-bottom: 15px;
  }

  .nb-footer__logo {
    height: 42px;
    margin-bottom: 10px;
  }

  .nb-footer__name {
    font-size: 16px;
  }

  .nb-footer__tagline {
    font-size: 14px;
  }

  .nb-footer__description {
    font-size: 13px;
    max-width: 100%;
  }

  .nb-footer__register {
    font-size: 11px;
  }

  .nb-footer__line,
  .nb-footer__nav a {
    font-size: 14px;
    text-align: center;
    display: block;
  }

  .nb-footer__main .nb-footer__col:not(:first-child) {
    border-left: 0;
    padding-left: 0;
  }

  .nb-footer__bottom {
    text-align: center;
    font-size: 11px;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
  }

  .nb-footer__bottom-right {
    gap: 14px;
    flex-wrap: wrap;
  }

  .listing-single-item .item-inner{
    border-radius: 18px;
  }

  .listing-single-item .item-inner .image-wrapper{
    border-radius: 18px 18px 0 0;
  }

  .listing-single-item .item-inner .desc-box{
    border-radius: 0 0 18px 18px;
    padding: 20px 18px 18px;
  }

  /**
    PARLEM
  */
  .contacte-cards {
    display: block;
    text-align: center;
    align-items: center;
  }
  
  .contacte-card {
    margin:0px auto;
    margin-bottom: 30px;
  }

  
  
}

@media (min-width: 768px) {
  
  #premium-bar nav li a {
    font-weight: 300;
    color: #353d42;
    text-shadow: none;
    text-transform: capitalize;
    font-size: 14px;
    
  }
  
  
  #premium-bar .container-fluid,
  #premium-bar .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }

  /* Keep Bootstrap navbar layout (no flex on collapse) */
  #premium-bar .navbar {
    min-height: 0;
  }

  #premium-bar .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }

  #premium-bar .navbar-header {
    float: left;
    margin: 0;
  }

  #premium-bar .navbar-collapse {
    float: right;
    width: auto;
    border-top: 0;
    box-shadow: none;
  }

  #premium-bar .navbar-nav {
    margin: 0;
  }

  .navbar-nav.navbar-right:last-child {
    margin-right: 0;
    margin-top: 0;
  }

  /* True vertical centering without breaking Bootstrap */
  #premium-bar .navbar-brand.nb-brand {
    display: flex;
    align-items: center;
    height: auto;
    line-height: 1;
    margin: 0;
  }

  #premium-bar .navbar-nav > li > a {
    line-height: 1.2;
  }
}

/*GOOGLE REVIEWS*/
.reviews-section {
  max-width: 1500px;
  margin: 0 auto;
  text-align: left;
}

.reviews-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.header-text h2 {
  margin: 0 0 .6rem;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.15;
  color: var(--nb-text);
}

.header-text p {
  font-size: .95rem;
  color: color-mix(in srgb, var(--nb-mocha) 62%, transparent);
  line-height: 1.6;
  margin: 0;
}

.stats-box {
  text-align: center;
  padding: 1.3rem 1.8rem;
  min-width: 393px;
  /*border-radius: 14px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--nb-mocha) 13%, transparent);*/
}

@media (max-width: 900px) {
  .stats-box {
    min-width: 0;
    width: 100%;
  }
}

.big-number {
  font-size: 100px;
  font-weight: 700;
  color: var(--nb-accent);
  line-height: 1;
}

.big-number span {
  font-size: 2rem;
}

.stat-label {
  font-size: 18px;
  color: var(--nb-accent);
  font-weight: 600;
  margin-top: .3rem;
}

.reviews-note {
  margin: .4rem 0 0;
  font-size: 16px !important;
  color: color-mix(in srgb, var(--nb-mocha) 55%, transparent);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.2rem;
  padding: .85rem 1.1rem;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--nb-mocha) 13%, transparent);
  border-radius: 12px;
  max-width: 300px;
}

.badge-stars {
  color: #f4b400;
  font-size: 16px;
  letter-spacing: 1px;
}

.badge-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--nb-mocha) 55%, transparent);
}

.badge-label strong {
  display: block;
  font-size: 16px;
  color: var(--nb-text);
  font-weight: 600;
}

.source-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  color: color-mix(in srgb, var(--nb-mocha) 60%, transparent);
  padding: .3rem .7rem;
  border: 1px solid color-mix(in srgb, var(--nb-mocha) 13%, transparent);
  border-radius: 20px;
  background: #fff;
  margin-top: 1rem;
}

.source-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nb-accent);
}

.source-dot.manual {
  background: #f4b400;
}

.reviews-loading {
  text-align: center;
  padding: 1.2rem;
  color: color-mix(in srgb, var(--nb-mocha) 55%, transparent);
  font-size: .9rem;
  display: none;
}

.carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--nb-mocha) 12%, transparent);
  border-radius: 14px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  min-height: 100%;
  transition: box-shadow .2s, border-color .2s;
}

.review-card:hover {
  box-shadow: 0 4px 20px rgb(0 0 0 / 6%);
  border-color: color-mix(in srgb, var(--nb-mocha) 22%, transparent);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px !important;
  font-weight: 100;
  flex-shrink: 0;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.reviewer-info {
  flex: 1;
  min-width: 0;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--nb-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-date {
  font-size: 12px;
  color: color-mix(in srgb, var(--nb-mocha) 55%, transparent);
  margin-top: 1px;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars svg {
  width: 13px;
  height: 13px;
}

.review-text {
  font-size: 14px;
  color: color-mix(in srgb, var(--nb-mocha) 62%, transparent);
  line-height: 1.55;
  flex: 1;
  margin: 0;
  color: #5C4E3D;
}

.read-more {
  font-size: .8rem;
  color: var(--nb-accent);
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.nav-btns {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--nb-mocha) 13%, transparent);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--nb-mocha) 55%, transparent);
  font-size: 1.1rem;
  transition: all .2s;
}

.nav-btn:hover {
  background: var(--nb-muted);
  color: var(--nb-text);
}

.nav-btn:disabled {
  opacity: .35;
  cursor: default;
}


@media (max-width: 900px) {
  .reviews-header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .carousel {
    grid-template-columns: 1fr;
  }

  .google-badge{
    margin: 0px auto;
    display: flex;
    margin-top: 25px;
  }
  .header-text h3{
    text-align: center;
    margin-top:-20px;
  }
  .header-text p{
    text-align: center;
  }
}

/* =========================================================
   RATING HERO — Canvi de Vida
   Copiar i enganxar al teu fitxer CSS principal
   ========================================================= */
 
   .rating-hero {
    background: #F5EFE4;
    text-align: center;
    padding: 3rem 1.5rem 2.5rem;
  }
   
  .rating-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: #2C231A;
    margin: 0 0 1.2rem;
    line-height: 1.2;
  }
   
  .rating-hero__inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
   
  /* --- Estreles --- */
  .rating-hero__stars {
    display: flex;
    align-items: center;
    gap: 3px;
  }
   
  .rating-hero__stars svg {
    width: 22px;
    height: 22px;
    fill: #C9963A;
  }
   
  /* --- Puntuació numèrica --- */
  .rating-hero__score {
    font-family: var(--nb-font-narrow);
    font-size: 25px;
    font-weight: 700;
    color: #2C231A;
    line-height: 2;
  }
   
  /* --- Separador vertical --- */
  .rating-hero__sep {
    width: 1px;
    height: 16px;
    background: #C4B8A4;
    flex-shrink: 0;
  }
   
  /* --- Text "a Google" --- */
  .rating-hero__source {
    font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    color: #9A8B78;
  }
   
  /* --- Logo Google --- */
  .rating-hero__google-logo {
    display: block;
    flex-shrink: 0;
  }
   
  /* --- Responsive --- */
  @media (max-width: 480px) {
    .rating-hero__title {
      font-size: 1.75rem;
    }
   
    .rating-hero__stars svg {
      width: 18px;
      height: 18px;
    }
  }


/*
WHATSAPP BTN
*/

/* Estilos generales del boton whatsapp */
.scroll-top{
  bottom: 77px;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: breathe 2s ease-in-out infinite;
}

/* Estilos solo al icono whatsapp */
.whatsapp-btn i {
  color: #fff;
  font-size: 24px;
  animation: beat 2s ease-in-out infinite;
  text-decoration: none;
}

.whatsapp-btn svg{
  width: 24px;
  height: 24px;
  fill: #fff;
  animation: beat 2s ease-in-out infinite;
  display: block;
}

.whatsapp-btn span{
  position: absolute;
  right: 120%;
  background-color: #25D366;
  color: white;
  padding: 0px 6px;
  border-radius: 8px;
  font-size: 12px;
  top:11%;
  white-space:nowrap;
}

.shopping-cart-wrapper input.cart_checkbox{
  height:auto;
}

.shopping-cart-wrapper .table .input-group{
  min-width: 200px;
  align-items: stretch;
}

/* Estilos con animation contorno respirando */
@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/* Estilos de animacion del icono latiendo */
@keyframes beat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Páginas de error (HTTP) */
.nb-error-page-wrap {
  padding: 48px 0 72px;
}

.nb-error-panel {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 28px 36px;
  background: #fff;
  border-radius: var(--nb-radius-lg, 12px);
  border: 1px solid color-mix(in srgb, var(--nb-text) 10%, transparent);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--nb-text) 8%, transparent);
}

.nb-error-code {
  margin: 0 0 12px;
  font-family: var(--nb-font-narrow, inherit);
  font-size: clamp(56px, 12vw, 96px);
  font-weight: 700;
  line-height: 1;
  color: color-mix(in srgb, var(--nb-text) 35%, var(--nb-accent));
  letter-spacing: -0.04em;
}

.nb-error-text {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--nb-text) 78%, transparent);
}

.nb-error-actions {
  margin: 0;
}


