/*
Theme Name: Nested
Description: Un tema moderno de WordPress con Bootstrap 5
Author: David Rosado De la Cruz
Version: 1.0
Text Domain: nested
*/

/* Fuentes DM Sans */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/dm-sans-regular.woff2') format('woff2'),
         url('assets/fonts/dm-sans-regular.woff') format('woff');
}

@font-face {
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 400;
    src: url('assets/fonts/dm-sans-italic.woff2') format('woff2'),
         url('assets/fonts/dm-sans-italic.woff') format('woff');
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    src: url('assets/fonts/dm-sans-bold.woff2') format('woff2'),
         url('assets/fonts/dm-sans-bold.woff') format('woff');
}

/* Fuentes Playfair Display */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/playfair-regular.woff2') format('woff2'),
         url('assets/fonts/playfair-regular.woff') format('woff');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400;
    src: url('assets/fonts/playfair-italic.woff2') format('woff2'),
         url('assets/fonts/playfair-italic.woff') format('woff');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    src: url('assets/fonts/playfair-bold.woff2') format('woff2'),
         url('assets/fonts/playfair-bold.woff') format('woff');
}

/* Reset y variables CSS */
:root {
    --primary-color: #fff;
    --secondary-color: #71695e;
    --verde: #657346;
    --verdeoscuro: #445a3a;
    --fondo: #f5f0e9;
    --fondomenu: #f5f0e9;
    --font-family-sans: 'DM Sans', sans-serif;
    --font-family-playfair: 'Playfair Display', serif;
}
body {
    font-family: var(--font-family-sans);
    color: var(--secondary-color);
    background-color: var(--fondo);
    font-size: 16px;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--verdeoscuro);
    font-family: var(--font-family-playfair);
    font-weight: 600;
}
h1, h2 {font-weight: 700;}
@media (min-width: 1200px) {
    .h3, h3 {
        font-size: 1.9rem;
    }
}
/*Home*/
.section-page {
    padding-block: 4rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.text-section h2 {
    font-size: 2.2rem;
}
.cta-button {
    background-color: var(--verdeoscuro);
    color: #fff;
    padding-block: 10px;
    border: none;
    border-radius: 15px;
    font-size: 24px;
    font-family: var(--font-family-playfair);
    font-weight: 600;
    min-width: 220px;
    text-decoration: none;
}
.cta-button:hover, .cta-button:focus {
    background-color: var(--verde);
    color: #fff;    
}
/*componente hero home*/
.hero-home-block {
    background-size: cover;
    color: var(--primary-color);
    min-height: 100vh;
    text-align: center;
    padding-block: 15px 50px;
}
.hero-home-block .contenedor {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: calc(100vh - 100px);
    max-width: 940px;
    margin: 0 auto;
}
.hero-home-block .contenedor .logo-hero {
    max-width: 200px;
    margin-bottom: 1rem;
}
.hero-home-block .contenedor h1 {
    color: #f5f0e9;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}       
.hero-home-block .contenedor .bottom-hero {
    display: flex;
    gap: 40px;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}
.cta-button.cta-inverse {
    background-color: var(--fondo);
    color: var(--verdeoscuro);
    padding-block: 12px;
    padding-inline: 25px;
}
.cta-button.cta-inverse:hover, .cta-button.cta-inverse:focus {
    background-color: var(--verdeoscuro);
    color: var(--fondo);    
}
.hero-cta-group {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
    justify-content: center;
}
@media (min-width: 1366px) {
    .hero-cta-group .cta-button:nth-child(1) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .hero-cta-group .cta-button:nth-child(2) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
}


/*componente about us en home */
.about-home-block .text-section {
    display: flex;
    justify-content: end;
}
.about-home-block .text-section .contenedor {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 540px;
    align-items: baseline;
    gap: 3rem;
}

/* componente we specialize */
.section-title {
    margin-bottom: 3rem
}
.section-title h2 {
    font-size: 2.5rem;
}
.we-specialize-slide {
    padding: 0 15px;
}
.we-specialize-slide a {text-decoration: none; color: var(--primary-color); position: relative; display: block}
.we-specialize-slide .slide-image {position: relative;}
.we-specialize-slide .slide-image img {
    object-fit: cover;
    min-height: 420px;
}
.we-specialize-slide .slide-image::after {
    background-color: #0000004a;
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}
.we-specialize-slide a:hover {text-decoration: underline;}
/*.we-specialize-slide a:hover img {opacity: 0.8;}*/
.we-specialize-slide .slide-content {
    background-color: var(--verde);
    color: var(--primary-color);
    padding: 25px 40px;
}
.we-specialize-slide .slide-content {
	color: var(--primary-color);
    min-height: auto;
    text-decoration: none;
    position: absolute;
    top: 60%;
    background: transparent;
    display: flex;
    align-items: center;
    text-align: center;
    width: 90%;
    left: 5%;
    padding: 5% 0;
    justify-content: center;
}
.we-specialize-slide .slide-content h3 {
    color: var(--primary-color);
}
.we-specialize-slide
.slide-image img {max-width: 100%; width: 100%;}
/* Slick Arrows - Botones personalizados SOLO para we-specialize */
.we-specialize-carousel .slick-prev, 
.we-specialize-carousel .slick-next {
    width: 70px;  /* Desktop: tamaño del close del menú */
    height: 70px;
    background: none;
    border: none;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.we-specialize-carousel .slick-prev {
    left: -70px;
}

.we-specialize-carousel .slick-next {
    right: -70px;
}

.slick-prev:before, .slick-next:before {
    display: none; /* Ocultar iconos por defecto */
}
.parallax-block.parallax-effect {margin-top: 30px}

/* SVG Arrows elegantes */
.slick-prev::after, .slick-next::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.slick-prev::after {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE1IDZsLTYgNiA2IDYiIHN0cm9rZT0iIzU0NEMzRSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K');
}

.slick-next::after {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkgNmw2IDYtNiA2IiBzdHJva2U9IiM1NDRDM0UiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+');
}

.slick-prev:hover::after, .slick-next:hover::after {
    opacity: 0.7;
}

/* Responsivo - Tablet y móvil */
@media (max-width: 768px) {
    .slick-prev, .slick-next {
        width: 40px;  /* Tablet/Mobile: 40px */
        height: 40px;
    }
    
    /* we-specialize específico en mobile */
    .we-specialize-carousel .slick-prev, 
    .we-specialize-carousel .slick-next {
        width: 40px;  /* Tablet/Mobile: 40px */
        height: 40px;
    }
    .we-specialize-carousel .slick-prev {
        left: -20px;
    }
    .we-specialize-carousel .slick-next {
        right: -20px;
    }
}

/*componente exclusive-properties */
.exclusive-properties-block {
    background-color: var(--verde);
    color: var(--primary-color);
}
.exclusive-properties-block .section-title h2 {
    color: var(--primary-color);
}
.exclusive-properties-block
.flexmls_connect__search_results_v2 .flexmls-listing .flexmls-content-wrapper {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}
.home .exclusive-properties-block
.flexmls_connect__sr_pagination a, .home .exclusive-properties-block .flexmls_connect__sr_pagination span,
.home .exclusive-properties-block .fbs-branding  a{
    color: var(--primary-color);
}

/*componente flexible-block */
/* Utiliza las mismas clases que exclusive-properties-block para mantener compatibilidad */
/* Los estilos de background-color se aplican via ACF inline en el template */

/* Color de texto personalizado que afecta a todo el contenido */
.flexible-block-custom {
    color: var(--custom-text-color, inherit);
}

.flexible-block-custom h1,
.flexible-block-custom h2,
.flexible-block-custom h3,
.flexible-block-custom h4,
.flexible-block-custom h5,
.flexible-block-custom h6,
.flexible-block-custom p,
.flexible-block-custom li,
.flexible-block-custom a,
.flexible-block-custom span,
.flexible-block-custom div {
    color: inherit;
}

.flexible-block-custom .exclusive-properties-title {
    color: var(--custom-text-color, var(--primary-color));
}

/* Forzar colores del flexible block con alta especificidad */
/*
.block-flexible.flexible-block-custom * {
    color: var(--custom-text-color) !important;
}

.block-flexible.flexible-block-custom h1,
.block-flexible.flexible-block-custom h2,
.block-flexible.flexible-block-custom h3,
.block-flexible.flexible-block-custom h4,
.block-flexible.flexible-block-custom h5,
.block-flexible.flexible-block-custom h6 {
    color: var(--custom-text-color) !important;
}

.block-flexible.flexible-block-custom p,
.block-flexible.flexible-block-custom li,
.block-flexible.flexible-block-custom span,
.block-flexible.flexible-block-custom div {
    color: var(--custom-text-color) !important;
}

.block-flexible.flexible-block-custom .exclusive-properties-title {
    color: var(--custom-text-color) !important;
}
*/

/*componente parallax*/
.parallax-block {
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.parallax-block.parallax-effect {
    background-attachment: fixed;
}

/*componente image-text*/
.image-text-block {
    margin-bottom: 3.5rem;
}
.image-text-block
.image-text-content .image-text-subtitle {
    color: var(--secondary-color);
    font-family: var(--font-family-playfair);
font-size: 15px;
    margin-bottom: 0;
}
.image-text-content .image-text-title {margin-bottom: 0;}
.image-text-block
.image-text-content {
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 520px;
}
.image-text-text {line-height: 1.5; font-size: 16px;}
.image-text-text p:last-child {
    margin-bottom: 0;
}

@media (min-width: 1366px) {
    .about-home-block .text-section .contenedor {
        gap: 4.5rem
    }
}
@media (max-width: 768px) {
    .about-home-block .text-section {margin-top: 2rem;}
    .hero-cta-group {gap: 10px;}
}

/* Image Text Extended Block */
.image-text-extended-block {
}
.image-text-extended-content {
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    max-width: 480px;
}
.image-text-extended-content p, .image-text-extended-content ul {
    font-size: 16px;
    line-height: 1.5;
}
.image-text-extended-content h2 {
    font-size: 1.75rem;
    font-weight: 600;   
    line-height: 1.35; 
    margin-bottom: 0;
}
.image-text-extended-content h3 {
    color: var(--secondary-color);    
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 0;    
}
.image-text-extended-content h4 {
    color: var(--secondary-color);
    font-family: var(--font-family-sans);
    font-weight: 500;
font-size: 15px;
    margin-bottom: 0;        
}
.image-text-extended-top,
.image-text-extended-bottom {
    display: flex;
    flex-direction: column;
}

.image-text-extended-top p:last-child,
.image-text-extended-bottom p:last-child {
    margin-bottom: 0;
}
.image-text-extended-image {width: 100%;}
.image-text-extended-image img {
    max-width: 100%;
    height: auto;
    display: block;
    width: 100%;
}

@media (min-width: 768px) {
    .image-text-extended-block .order-md-1 {
        align-items: end;
        display: flex;
        flex-direction: column;
    }
    /*.order-md-2 .image-text-extended-image, 
    .order-md-2 .image-text-extended-content  {padding-left: 10px;}*/
}

/*componente partnertships */
.partnerships-home-grid .row {
    row-gap: 3rem;
    margin: 0;
}

.item-partnership {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
}

.item-partnership:nth-child(odd) {
    margin-right: 40px;
}

@media (max-width: 576px) {
    .item-partnership {
        flex: 0 0 100%;
        max-width: 100%;
        margin-right: 0;
    }
}
.partnerships-home-block .section-title {
    margin-bottom: 1.5rem;
}
.partnerships-home-description {
    margin-bottom: 2.8rem;
    max-width: 640px;
    text-align: center;
}
.partnerships-home-grid {
    margin-inline: auto;
    max-width: 760px;
}
.partnership-card .partnership-card-image {
    margin-bottom: 20px;
}
.partnership-card .partnership-card-image img {
    width: 100%;
}
.partnership-card-title {
    font-weight: 700;
    min-height: 70px;
    margin-bottom: 30px;
}

.partnership-card-link.link-content {
    color: var(--verde);
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    margin-top: 35px;
    position: relative;
    text-decoration: none;
}
.partnership-card-link.link-content::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--verde);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.partnership-card-link.link-content:hover::after {
    transform: scaleX(0);
}
.partnership-card-excerpt {font-size: 16px;}

.details-image-details, .details-text-details {
    margin: 0 auto;
    max-width: 420px;
}
.details-image-details {
    display: flex;
    gap: 40px;
    flex-direction: column;
}
.details-content {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 50px 40px;
}
.details-text-text a,
.details-cta a {
    color: var(--verde);
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
}
.details-text-text a:hover, .details-cta a:hover {
    text-decoration: underline;
}

/* Header Styles */
.header.header-home {
    position: absolute;
}
.header {
    width: 100%;
    z-index: 1000;
    margin-bottom: 40px;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.header-internal.header-fixed {
    position: fixed;
    top: 0;
    background-color: var(--fondo);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding-block: 10px;
}

.header-internal.header-fixed .header_logo img {
    width: 150px;
    height: auto;
}

.header-grid {
    justify-content: flex-end;
    align-items: center;
}

.header_logo {
    margin-right: auto;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon {
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    position: relative;
    transition: all 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    position: absolute;
    transition: all 0.3s ease;
}

.menu-icon::before {
    top: -12px;
}

.menu-icon::after {
    top: 12px;
}

/* Header Home - icono blanco */
.header-home .menu-icon,
.header-home .menu-icon::before,
.header-home .menu-icon::after {
    background-color: white;
}

/* Menú desplegable */
.main-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 40%;
    height: 100vh;
    background-color: var(--fondomenu);
    transition: right 0.5s ease-in-out;
    z-index: 999;
    padding: 1rem 1rem;
}

/* Estilos del menú */
.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 70px;
    border-top: 1px solid rgba(113, 105, 94, 0.2);
    border-bottom: 1px solid rgba(113, 105, 94, 0.2);
}

.main-menu li {
    border-bottom: 1px solid rgba(113, 105, 94, 0.2);
}

.main-menu li:last-child {
    border-bottom: none;
}

.main-menu a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 25px 10px 0;
    color: var(--verdeoscuro);
    font-family: var(--font-family-playfair);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    text-align: center;
}

.main-menu a:hover {
    color: var(--verde);
}

/* Flechas para submenús */
.main-menu .submenu-toggle {
    position: absolute;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    cursor: pointer;
    color: var(--secondary-color);
    transition: transform 0.4s ease-in-out;
}

.main-menu .submenu-toggle.active {
    transform: rotate(90deg);
}

.main-menu .submenu-toggle.active {
    transform: rotate(90deg);
}

/* Submenús */
.main-menu .sub-menu {
    max-height: 0;
    overflow: hidden;
    padding-left:0;
    margin-top: 0.5rem;
    opacity: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
    border-bottom: none;
}

.main-menu .sub-menu.open {
    max-height: 500px;
    opacity: 1;
}

.main-menu .sub-menu li {
    border-bottom: 1px solid rgba(113, 105, 94, 0.1);
    margin-left: 1rem;
}

.main-menu .sub-menu a {
    padding: 0.8rem  25px 0.8rem 0;
    font-size: 18px;
}

/* Botón cerrar menú */
.menu-close {
    position: absolute;
    top: 32px;
    right: 28px;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-close::before,
.menu-close::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: background-color 0.3s ease;
}

.menu-close::before {
    transform: rotate(45deg);
}

.menu-close::after {
    transform: rotate(-45deg);
}

.menu-close:hover::before,
.menu-close:hover::after {
    background-color: var(--verde);    
}

.main-menu.menu-open {
    right: 0;
}

/* Logo dentro del menú - solo mobile */
.menu-logo {
    display: none;
}

@media (max-width: 768px) {
    .menu-logo {
        display: block;
    }
    
    .menu-logo img {
        max-width: 150px;
        height: auto;
    }
}

/* El icono hamburguesa se mantiene sin cambios */

@media (max-width: 768px) {
    .main-menu {
        width: 100%;
    }
    .header_logo img {
        max-width: 150px;
    }
    .hero-home-block {padding-top: 70px;}
    .main-menu ul {margin-top: 35px;}
}

.section-color-blanco, .section-color-blanco * {
    color: var(--primary-color) !important;
}
.section-color-verde, .section-color-verde * {
    color: var(--verde) !important;
}
.form-contact-text p {
    margin-bottom: 0;
}
.form-contact-text ul {
    list-style: none;
    font-family: var(--font-family-playfair);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.form-content label {width: 100%;}
.form-content input,
.form-content textarea,
.form-content select {
    background-color:#3a4d31;
    border: 1px solid var(--verde);
    min-height: 40px;
    max-height: 120px;
    padding-inline: 10px;
    width: 100%;
}
.form-content input[type="submit"] {
    background-color: var(--fondo);
    color: var(--verdeoscuro) !important;
    padding: 7px 25px !important;
    border: none;
    border-radius: 15px;
    font-size: 24px;
    font-family: var(--font-family-playfair);
    font-weight: 600;
    text-decoration: none;
    width: auto;
    min-height: 1px !important;
}
.form-content input[type="submit"]:hover, .form-content input[type="submit"]:focus {
    background-color: var(--fondo);
    color: var(--verde);    
}

/*correcciones / adicionales */
.details-text-text a, .details-cta a,
.image-text-extended-content a,
.details-cta-group a {
    background-color: var(--verdeoscuro);
    color: var(--primary-color);
    display: inline-block;
    padding-block: 12px;
    padding-inline: 25px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-family: var(--font-family-playfair);
    font-weight: 600;
    width: auto;
    text-decoration: none;
}
.details-text-text a:hover, .details-cta a:hover, .image-text-extended-content a:hover,
.details-text-text a:focus, .details-cta a:focus, .image-text-extended-content a:focus,
.details-cta-group a:hover, .details-cta-group a:focus {
    background-color: var(--verde);
    color: var(--primary-color); 
}
.image-text-extended-content strong a {
    background-color: transparent;
    color: var(--verde);
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
}
.image-text-extended-content strong a:hover {
    color: var(--verde);    
    background-color: transparent;
    text-decoration: underline;
}
.about-home-block .text-section .contenedor h2 {line-height: 1.1;}
.home .header_logo {display: none;}
.home .header-fixed .header_logo {display: block;}
.header-home.header-fixed .menu-icon, .header-home.header-fixed .menu-icon::before, .header-home.header-fixed .menu-icon::after {background-color: var(--verdeoscuro);}
.details-cta-group {
    display: flex;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 12px;
    min-width: 220px;
}
.slick-dots li button:before {font-size: 20px!important; color: var(--verde)!important; opacity: 1!important;}
.slick-dots li.slick-active button:before {opacity: 1!important; color: var(--verdeoscuro)!important;}
#our-locations-carousel .slide-content {top: 10%}
.slick-dots {bottom: -50px!important;}
#our-locations-carousel .slide-image img {
    object-fit: cover;
    min-height: 300px;
}
/*.partnership-card .partnership-card-image:hover {opacity: 0.8}*/
.partnership-card-title a {text-decoration: none; color: var(--verde); position: relative}

.partnership-card-title a:after {
    content: '';
    /*display: block;*/
	display: none;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--transpárent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.partnership-card-title a:hover::after{
    background: var(--verde);	
    transform: scaleX(1);
}

@media (max-width: 576px) {
    .hero-home-block .contenedor h1 {
        font-size: 2.2rem;
    }
    .text-section h2 {font-size: 2rem;}
    .about-home-block  {padding-bottom: 50px!important;}
    .section-title h2 {font-size: 2.1rem;}
    .image-text-extended-content h2 {font-size: 1.6rem;}
    .align-items-stretch {gap: 20px;}
    .about-home-block .img-section img {display: none;}
}

.flexmls-v2-widget .flexmls-title-large,
.flexmls-listing-details.flexmls-v2-widget .main-details-section .price-and-dates{
    background: #fff!important;
    padding: 1rem!important;
}
.flexmls-listing-details.flexmls-v2-widget .flexmls-actions-wrapper .back-to-search-link {color: var(--verde)!important}
.flexmls-v2-widget .flexmls-btn.flexmls-btn-primary, body.flexmls_connect__listing_details_page.flexmls-v2-templates #flexmls_connect__colorbox .flexmls-btn.flexmls-btn-primary {background:#445A3A }