/**
* Template Name: EstateAgency
* Template URL: https://bootstrapmade.com/real-estate-agency-bootstrap-template/
* Updated: Aug 09 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1b1b1b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2eca6a; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #000000; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2eca6a; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: #ffffff;
  background-color: #026f8c;
  padding: 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header,
.header .navmenu,
.header .navmenu a,
.header .navmenu a:focus,
.header .mobile-nav-toggle {
  --nav-color: #ffffff;
  --nav-hover-color: #eafbf0;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo .header-logo {
  max-height: 72px;
  max-width: min(62vw, 260px);
  width: auto;
  margin-right: 0;
  margin-left: 0;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo h1 span {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .header .container-xl {
    gap: clamp(18px, 3vw, 44px);
  }

  .header .logo {
    flex: 0 1 auto;
    min-width: 0;
  }

  .header .logo .header-logo {
    max-height: clamp(78px, 8vw, 108px);
    max-width: clamp(220px, 24vw, 340px);
    margin-left: 0;
  }

  .navmenu {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
    margin-left: auto;
    margin-right: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2px 0;
    list-style: none;
    align-items: center;
    justify-content: flex-end;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 4px clamp(6px, 0.75vw, 12px);
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: clamp(14px, 1.12vw, 17px);
    padding: 0 1px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .about-page .navmenu {
    margin-right: 0;
  }

  .about-page .navmenu>ul>li {
    padding: 4px 11px;
  }

  .about-page .navmenu a,
  .about-page .navmenu a:focus {
    font-size: clamp(14px, 1.05vw, 16px);
    padding: 0 1px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0 0 0;
  position: relative;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.custom-footer {
  background: #0f7f96;
  color: #ffffff;
  padding: 56px 0;
}

.custom-footer a {
  color: #ffffff;
}

.custom-footer a:hover {
  color: #e8f7fb;
}

.custom-footer .footer-brand {
  max-width: 470px;
}

.custom-footer .footer-logo {
  width: 220px;
  max-width: 100%;
  display: block;
  margin-bottom: 18px;
}

.custom-footer .footer-description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.custom-footer h4 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 22px;
}

.custom-footer .footer-links-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-footer .footer-links-group li {
  margin-bottom: 14px;
}

.custom-footer .footer-links-group a {
  text-decoration: none;
  font-size: 16px;
}

.custom-footer .footer-links-group-spaced {
  margin-top: 54px;
}

.custom-footer .social-links {
  margin-bottom: 12px;
}

.custom-footer .footer-social-follow {
  margin-bottom: 120px;
  text-align: center;
}

.custom-footer .footer-social-follow h4 {
  margin-bottom: 18px;
  font-size: 30px;
}

.custom-footer .footer-social-follow .social-links {
  gap: 38px;
  flex-wrap: wrap;
  justify-content: center;
}

.custom-footer .footer-social-follow .social-links a {
  width: 38px;
  height: 38px;
  font-size: px;
}

.custom-footer .social-links a {
  width: 42px;
  height: 42px;
  border: 0;
  color: #ffffff;
  font-size: 24px;
  margin-right: 0;
}

.custom-footer .social-links a:hover {
  color: #d9f3f8;
  border-color: transparent;
}

.custom-footer .footer-copy {
  margin-bottom: 0;
  font-size: 15px;
}

.custom-footer .footer-contact-group {
  max-width: 420px;
}

.custom-footer .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.custom-footer .footer-contact-item i {
  font-size: 34px;
  line-height: 1;
  color: #ffffff;
  margin-top: 2px;
}

.custom-footer .footer-contact-item a,
.custom-footer .footer-contact-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  text-decoration: none;
}

@media (max-width: 991px) {
  .custom-footer .footer-links-group-spaced {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .custom-footer {
    padding: 42px 0;
  }

  .custom-footer .footer-social-follow {
    display: none;
  }

  .custom-footer .row.gy-5.align-items-start {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .custom-footer .row.gy-5.align-items-start > [class*="col-"] {
    width: 100%;
    max-width: 720px;
    display: flex;
    justify-content: center;
  }

  .custom-footer .row.gy-5.align-items-start > .col-lg-5,
  .custom-footer .row.gy-5.align-items-start > .col-lg-3,
  .custom-footer .row.gy-5.align-items-start > .col-lg-4 {
    flex-direction: column;
  }

  .custom-footer .row.gy-5.align-items-start > .col-lg-4 {
    order: 1;
  }

  .custom-footer .row.gy-5.align-items-start > .col-lg-3 {
    order: 2;
  }

  .custom-footer .row.gy-5.align-items-start > .col-lg-5 {
    order: 3;
  }

  .custom-footer .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }

  .custom-footer .footer-logo {
    width: 180px;
    margin: 0 auto 18px;
  }

  .custom-footer .footer-brand .footer-description,
  .custom-footer .footer-copy {
    max-width: 100%;
    text-align: center;
  }

  .custom-footer .footer-brand .footer-description {
    text-align: justify;
    text-align-last: center;
  }

  .custom-footer .footer-brand .social-links {
    order: 2;
    justify-content: center;
    margin-top: 18px;
    width: 100%;
    gap: 14px;
  }

  .custom-footer .footer-copy {
    order: 3;
    margin-top: 16px;
    text-align: center;
  }

  .custom-footer h4 {
    font-size: 20px;
    margin-bottom: 16px;
    text-align: center;
  }

  .custom-footer .footer-links-group,
  .custom-footer .footer-contact-group {
    margin: 0 auto;
    text-align: center;
  }

  .custom-footer .footer-links-group ul {
    display: inline-block;
    padding-left: 0;
  }

  .custom-footer .footer-links-group li {
    margin-bottom: 14px;
    text-align: center;
  }

  .custom-footer .footer-contact-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 0 auto;
  }

  .custom-footer .footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    width: 100%;
    max-width: 360px;
  }

  .custom-footer .footer-contact-item i {
    min-width: 34px;
    font-size: 28px;
    margin-top: 0;
  }

  .custom-footer .footer-contact-item a,
  .custom-footer .footer-contact-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    text-align: left;
  }

  .custom-footer .footer-contact-item.footer-contact-item-address p {
    text-align: justify;
    text-align-last: center;
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title.encabezado-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item .carousel-image-small {
  inset: 36px 0 0 0;
  height: calc(100% - 36px);
  object-fit: cover;
  object-position: center top;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}


.hero .carousel-container {
  position: absolute;
  inset: 80px 50px 80px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

@media (max-width: 575px) {
  .hero .carousel-container {
    inset: 90px 50px;
  }
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 76px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h2 span {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0;
  align-self: flex-start;
  flex-shrink: 0;
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
  z-index: 3;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
  opacity: 1;
  height: 6px;
  width: 20px;
  transition: 0.3s;
  padding: 0;
}

.hero .carousel-indicators .active {
  background-color: var(--accent-color);
  width: 40px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .service-image-wrap {
  width: 100%;
  height: 220px;
  border-radius: 20px;
  background: linear-gradient(145deg, #f7f2eb 0%, #ffffff 100%);
  padding: 22px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(179, 138, 92, 0.08);
}

.services .service-item .service-photo {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.35s ease;
}

.services .service-card-clean {
  background: transparent;
  box-shadow: none;
  border: 0;
  padding: 0 14px 8px;
  text-align: center;
}

.services .service-card-clean .service-image-wrap {
  width: 100%;
  height: 255px;
  padding: 0;
  margin-bottom: 18px;
  border-radius: 22px;
  background: #f4f1ed;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.services .service-card-clean h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.services .service-card-clean p {
  max-width: 310px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }

  .services .service-item:hover .service-photo {
    transform: scale(1.04);
  }

  .services .service-card-clean:hover {
    transform: translateY(-6px);
    border-color: transparent;
  }

  .services .service-card-clean:hover h3 {
    color: var(--default-color);
  }
}

@media (max-width: 991px) {
  .services .service-card-clean .service-image-wrap {
    height: 230px;
  }
}

@media (max-width: 575px) {
  .services .service-card-clean {
    padding: 0;
  }

  .services .service-card-clean .service-image-wrap {
    height: 250px;
  }
}

/*--------------------------------------------------------------
# Custom Furniture Section
--------------------------------------------------------------*/
.custom-furniture {
  background:
    linear-gradient(135deg, rgba(2, 111, 140, 0.96) 0%, rgba(18, 30, 34, 0.98) 58%, rgba(24, 91, 71, 0.98) 100%),
    #121e22;
  color: #ffffff;
  margin: 70px 0;
  padding: 125px 0;
  position: relative;
  overflow: hidden;
}

.custom-furniture::before,
.custom-furniture::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 18px;
  background: var(--accent-color);
}

.custom-furniture::before {
  top: 0;
}

.custom-furniture::after {
  bottom: 0;
}

.custom-furniture .custom-furniture-content {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.custom-furniture .custom-furniture-eyebrow {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: #026f8c;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 10px 16px;
  margin-bottom: 24px;
}

.custom-furniture h2 {
  font-size: 56px;
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 28px;
  color: #ffffff;
}

.custom-furniture p {
  font-size: 22px;
  line-height: 1.75;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.custom-furniture .custom-furniture-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 34px;
}

.custom-furniture .custom-furniture-btn,
.custom-furniture .custom-furniture-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 32px;
  font-size: 17px;
  font-weight: 700;
  transition: 0.3s;
}

.custom-furniture .custom-furniture-btn {
  background: #ffffff;
  color: #026f8c;
  border-radius: 6px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.custom-furniture .custom-furniture-btn:hover {
  background: var(--accent-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.custom-furniture .custom-furniture-link {
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
}

.custom-furniture .custom-furniture-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: #ffffff;
}

.custom-furniture .custom-furniture-media {
  position: relative;
  z-index: 1;
  min-height: 320px;
  margin-bottom: 26px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
}

.custom-furniture .custom-furniture-media img {
  max-width: 100%;
  max-height: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.custom-furniture .custom-furniture-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  background: #121e22;
  color: #ffffff;
  border-left: 6px solid var(--accent-color);
  border-radius: 8px;
  padding: 16px 18px;
}

.custom-furniture .custom-furniture-badge strong,
.custom-furniture .custom-furniture-badge span {
  display: block;
}

.custom-furniture .custom-furniture-badge strong {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 4px;
}

.custom-furniture .custom-furniture-badge span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.custom-furniture .custom-furniture-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.custom-furniture .custom-furniture-step {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 28px 22px;
  min-height: 250px;
  box-shadow: none;
  transition: 0.3s;
}

.custom-furniture .custom-furniture-step:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.17);
  border-color: rgba(255, 255, 255, 0.48);
}

.custom-furniture .custom-furniture-step i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: #ffffff;
  color: #026f8c;
  font-size: 29px;
  margin-bottom: 24px;
}

.custom-furniture .custom-furniture-step h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
  color: #ffffff;
}

.custom-furniture .custom-furniture-step p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 991px) {
  .custom-furniture {
    margin: 52px 0;
    padding: 98px 0;
  }

  .custom-furniture .custom-furniture-content {
    max-width: none;
  }

  .custom-furniture .custom-furniture-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .custom-furniture {
    margin: 38px 0;
    padding: 84px 0;
  }

  .custom-furniture h2 {
    font-size: 39px;
  }

  .custom-furniture p {
    font-size: 18px;
  }

  .custom-furniture .custom-furniture-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .custom-furniture .custom-furniture-btn,
  .custom-furniture .custom-furniture-link {
    width: 100%;
  }

  .custom-furniture .custom-furniture-grid {
    grid-template-columns: 1fr;
  }

  .custom-furniture .custom-furniture-step {
    min-height: auto;
  }
}

.services-catalog {
  padding-top: 36px;
}

.services-search {
  width: min(100%, 620px);
  margin: 0 auto 38px;
}

.services-search label {
  display: block;
  margin-bottom: 10px;
  color: #111111;
  font-size: 15px;
  font-weight: 800;
}

.services-search input {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid #cfd8dc;
  border-radius: 6px;
  color: #111111;
  background: #ffffff;
  font-size: 16px;
  box-shadow: 0 10px 26px rgba(18, 49, 56, 0.08);
}

.services-search input:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 82%);
}

.services-search-empty {
  margin: 0 auto 34px;
  color: #39464a;
  font-weight: 700;
  text-align: center;
}

.services-category + .services-category {
  margin-top: 38px;
}

.services-category {
  scroll-margin-top: 130px;
}

.services-category h2 {
  margin: 0 0 24px;
  font-size: 2rem;
  font-weight: 700;
  color: #0b7693;
}

.services-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px 22px;
}

.services-catalog-grid-dynamic {
  grid-template-columns: repeat(auto-fill, minmax(210px, 220px));
  justify-content: start;
  justify-items: start;
}

.services-catalog-grid-school {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-catalog-grid-single {
  grid-template-columns: minmax(220px, 280px);
  justify-content: center;
}

.services-catalog-grid-triple {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  justify-content: center;
}

.catalog-item {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.catalog-link {
  width: 100%;
  max-width: 220px;
  min-height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: #ffffff;
  padding: 10px 12px;
  margin-bottom: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.catalog-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(18, 49, 56, 0.08);
  background: #f7fbfc;
}

.catalog-link img {
  width: auto;
  max-width: 100%;
  max-height: 150px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Real estate cards (maquinaria, propiedades) - ensure images don't crop, stay sharp and centered */
.real-estate .card > img,
.real-estate .card img {
  width: auto;
  max-width: 100%;
  max-height: 220px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 12px auto;
}

.catalog-item h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
}

.services-selection-note {
  margin: 0 auto 42px;
  color: #10241a;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.services-muebles-results {
  margin: 0 0 46px;
}

.services-muebles-results h2 {
  margin: 0 0 22px;
  color: #0b7693;
  font-size: 1.75rem;
  font-weight: 800;
}

.services-muebles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}

.services-mueble-result {
  display: block;
}

.services-mueble-link {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 14px;
  background: #ffffff;
  border: 1px solid #dce6e9;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(18, 49, 56, 0.08);
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.services-mueble-link:hover,
.services-mueble-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(18, 49, 56, 0.08);
  background: #f7fbfc;
}

.services-mueble-link:focus-visible {
  outline: 3px solid rgba(11, 118, 147, 0.35);
  outline-offset: 2px;
}

.services-mueble-link img {
  max-width: 86px;
  max-height: 76px;
  object-fit: contain;
}

.services-mueble-result h3 {
  margin: 0 0 6px;
  color: #111111;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.services-mueble-result small,
.services-mueble-result p {
  display: block;
  margin: 0;
  color: #39464a;
  font-size: 13px;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .services-catalog-grid,
  .services-catalog-grid-school,
  .services-catalog-grid-triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-catalog-grid-dynamic {
    grid-template-columns: repeat(auto-fill, minmax(190px, 220px));
  }

  .services-catalog-grid-single {
    grid-template-columns: minmax(220px, 260px);
  }
}

@media (max-width: 767px) {
  .services-catalog-grid,
  .services-catalog-grid-school,
  .services-catalog-grid-triple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }

  .services-catalog-grid-dynamic {
    grid-template-columns: repeat(auto-fill, minmax(180px, 220px));
  }

  .services-catalog-grid-single {
    grid-template-columns: minmax(200px, 240px);
  }

  .catalog-link {
    max-width: 190px;
    min-height: 146px;
  }

  .catalog-link img {
    max-width: 170px;
    height: 128px;
  }

  .catalog-item h3 {
    font-size: 1.05rem;
  }
}

@media (max-width: 575px) {
  .services-category {
    scroll-margin-top: 96px;
  }

  .services-category h2 {
    font-size: 1.6rem;
  }

  .services-catalog-grid,
  .services-catalog-grid-school,
  .services-catalog-grid-single,
  .services-catalog-grid-triple,
  .services-catalog-grid-dynamic {
    grid-template-columns: 1fr;
  }

  .catalog-link {
    max-width: 220px;
    min-height: 168px;
  }

  .catalog-link img {
    max-width: 220px;
    height: 150px;
  }
}

/*--------------------------------------------------------------
# Agents Section
--------------------------------------------------------------*/
.agents .member {
  position: relative;
}

.agents .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.agents .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.agents .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.agents .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.agents .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.agents .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.agents .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.agents .member .social a:hover {
  color: var(--accent-color);
}

.agents .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

.agents .projects-showcase {
  max-width: 1080px;
  margin: 0 auto;
}

.agents .projects-showcase-header {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.agents .projects-showcase-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 22px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.agents .projects-showcase-link:hover {
  background: #1f1f1f;
  color: #fff;
  transform: translateY(-1px);
}

.agents .projects-grid {
  display: grid;
  gap: 10px;
}

.agents .project-shot {
  overflow: hidden;
  background: #ece8e1;
}

.agents .project-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.agents .project-shot-wide {
  height: 290px;
}

.agents .project-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.agents .project-shot-grid .project-shot {
  height: 230px;
}

@media (max-width: 991px) {
  .agents .project-shot-wide {
    height: 240px;
  }

  .agents .project-shot-grid .project-shot {
    height: 200px;
  }
}

@media (max-width: 575px) {
  .agents .projects-showcase-link {
    width: 100%;
    border-radius: 18px;
  }

  .agents .project-shot-wide {
    height: 190px;
  }

  .agents .project-shot-grid {
    grid-template-columns: 1fr;
  }

  .agents .project-shot-grid .project-shot {
    height: 190px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}

.about-hero {
  background:
    radial-gradient(circle at top left, rgba(15, 127, 150, 0.14), transparent 38%),
    linear-gradient(180deg, #f7efe2 0%, #f7f3eb 100%);
}

.about-hero .heading {
  border-top: 0;
  padding: 170px 0 90px 0;
}

.about-eyebrow,
.about-mini-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f7f96;
}

.about-eyebrow {
  margin-bottom: 18px;
}

.about-hero h1 {
  font-size: clamp(2.9rem, 5vw, 4.6rem);
  line-height: 1.03;
  margin-bottom: 24px;
}

.about-hero-text {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.8;
  color: #3f4548;
}

.about-hero-card {
  background: #026f8c;
  border-radius: 28px;
  padding: 18px 42px 30px;
  box-shadow: 0 24px 60px rgba(7, 59, 70, 0.18);
  overflow: hidden;
}

.about-hero-logo {
  width: min(100%, 420px);
  max-width: 100%;
  display: block;
  margin: 0 auto 8px;
}

.about-hero-quote {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.about-hero-quote p {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.45;
  font-style: italic;
  color: #1c2326;
}

.about-hero-quote span {
  display: block;
  color: #0f7f96;
  font-weight: 700;
}

.about-quote-photo {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  background: #f7efe2;
}

.about-company-section {
  background: #fffdfa;
}

.about-copy-card {
  padding-right: 28px;
}

.about-copy-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 14px 0 22px;
}

.about-copy-card p {
  font-size: 17px;
  line-height: 1.85;
  color: #4d5558;
}

.about-feature-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f5f8f8;
}

.about-feature-item i {
  color: #0f7f96;
  font-size: 20px;
  line-height: 1;
  margin-top: 2px;
}

.about-feature-item span {
  color: #273033;
  font-weight: 500;
}

.about-image-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.about-grid-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(16, 41, 47, 0.1);
}

.about-grid-image-large {
  grid-row: span 2;
  height: 478px;
}

.about-highlights {
  margin-top: 46px;
}

.about-highlight-card {
  height: 100%;
  padding: 28px 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 127, 150, 0.12);
  box-shadow: 0 16px 32px rgba(20, 42, 48, 0.06);
  text-align: center;
}

.about-highlight-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 42px;
  line-height: 1;
  color: #0f7f96;
  font-family: var(--heading-font);
}

.about-highlight-card strong .anos {
  display: inline;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}

.about-highlight-card > span {
  display: block;
  font-size: 16px;
  color: #485154;
}

.about-mission-vision {
  background: linear-gradient(180deg, #f5f7f8 0%, #eef4f5 100%);
}

.about-info-card {
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(17, 49, 57, 0.09);
}

.about-info-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.about-info-body {
  padding: 28px 28px 32px;
}

.about-info-body h3 {
  font-size: 2.2rem;
  margin: 12px 0 16px;
}

.about-info-body p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #4e5659;
}

.about-values {
  background: #fffdfa;
}

.about-value-card {
  height: 100%;
  padding: 32px 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 127, 150, 0.12);
  box-shadow: 0 18px 38px rgba(19, 43, 47, 0.06);
  text-align: center;
}

.about-value-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #eaf4f6;
  color: #0f7f96;
  font-size: 30px;
}

.about-value-card h4 {
  margin-bottom: 12px;
  font-size: 24px;
}

.about-value-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #556063;
}

@media (max-width: 991px) {
  .about-hero .heading {
    padding: 150px 0 72px 0;
  }

  .about-copy-card {
    padding-right: 0;
  }

  .about-hero-card {
    padding: 18px 28px 28px;
  }

  .about-hero-logo {
    width: min(100%, 460px);
  }

  .about-image-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid-image-large {
    grid-column: span 2;
    grid-row: auto;
    height: 280px;
  }
}

@media (max-width: 575px) {
  .about-hero-quote {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    text-align: center;
  }

  .about-hero-card {
    padding: 16px 18px 24px;
  }

  .about-hero-logo {
    width: 100%;
    margin-bottom: 6px;
  }

  .about-hero-text,
  .about-info-body p,
  .about-copy-card p {
    font-size: 16px;
  }

  .about-image-grid {
    grid-template-columns: 1fr;
  }

  .about-grid-image,
  .about-grid-image-large,
  .about-info-image {
    height: 220px;
  }

  .about-info-body,
  .about-value-card {
    padding: 24px 22px 26px;
  }
}

.armarios-hero {
  --catalog-hero-image: url("../img/encabezados/encabezado1.jpg");
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    var(--catalog-hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.armarios-hero .heading {
  border-top: 0;
  padding: 162px 0 42px;
}

.armarios-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
}

.armarios-catalog {
  padding-top: 34px;
  background: #ffffff;
}

.mobiliario-search {
  width: min(100%, 620px);
  margin: 0 auto 34px;
}

.mobiliario-search label {
  display: block;
  margin-bottom: 10px;
  color: #111111;
  font-size: 15px;
  font-weight: 800;
}

.mobiliario-search input {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid #cfd8dc;
  border-radius: 6px;
  color: #111111;
  background: #ffffff;
  font-size: 16px;
  box-shadow: 0 10px 26px rgba(18, 49, 56, 0.08);
}

.mobiliario-search input:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 82%);
}

.mobiliario-search-empty {
  margin: 0 auto 30px;
  color: #39464a;
  font-weight: 700;
  text-align: center;
}

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

.armario-card {
  text-align: center;
}

.armario-card img {
  width: 100%;
  max-width: 220px;
  height: 230px;
  object-fit: contain;
  display: block;
  margin: 0 auto 18px;
}

.armario-card h3 {
  margin: 0 0 14px;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  color: #000000;
}

.armario-card h4 {
  margin: 0 0 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #5a5a5a;
}

.armario-card p {
  max-width: 340px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.55;
  color: #161616;
}

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

  .armario-card img {
    max-width: 200px;
    height: 210px;
  }
}

@media (max-width: 575px) {
  .armarios-hero .heading {
    padding: 146px 0 34px;
  }

  .armarios-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .armario-card img {
    max-width: 210px;
    height: 210px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

.features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.features h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.features h3:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

.features .icon-box {
  margin-top: 50px;
}

.features .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.features .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.features .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.features .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .icon-box h4 a:hover {
  color: var(--accent-color);
}

.features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Real Estate Section
--------------------------------------------------------------*/
.real-estate .card {
  background-color: var(--background-color);
  border: none;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 0;
  min-width: 0;
}

.real-estate .card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0.9) 75%);
  z-index: 2;
}

.real-estate .card img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  z-index: 1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Add horizontal gap between cards inside real-estate rows */
.real-estate .row {
  gap: 24px;
}

.real-estate .card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 30px;
}

/* Make cards wider and centered */
.real-estate .card {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

/* Center row contents so cards sit centered on the page */
.real-estate .row {
  justify-content: center;
}

.real-estate .card .card-body .sale-rent {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--contrast-color);
  padding: 4px 20px;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  margin-bottom: 10px;
}

.real-estate .card .card-body h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0px;
  padding-left: 10px;
  border-left: 3px solid var(--accent-color);
}

.real-estate .card .card-body h3 a {
  color: var(--contrast-color);
}

.real-estate .card .card-body .card-content {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  height: 80px;
  visibility: hidden;
  opacity: 0;
  margin-top: 10px;
  margin-bottom: -80px;
  margin-left: -30px;
  margin-right: -30px;
  transition: 0.3s;
  padding: 0 10px;
}

.real-estate .card .card-body .card-content .propery-info {
  font-weight: 500;
}

.real-estate .card:hover .card-content {
  margin-bottom: -30px;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Real Estate 2 Section
--------------------------------------------------------------*/
.real-estate-2 .portfolio-details-slider img {
  width: 100%;
}

.real-estate-2 .swiper-wrapper {
  height: auto;
}

.real-estate-2 .swiper-button-prev,
.real-estate-2 .swiper-button-next {
  width: 48px;
  height: 48px;
}

.real-estate-2 .swiper-button-prev:after,
.real-estate-2 .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.real-estate-2 .swiper-button-prev:hover:after,
.real-estate-2 .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .real-estate-2 .swiper-button-prev,
  .real-estate-2 .swiper-button-next {
    display: none;
  }
}

.real-estate-2 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.real-estate-2 .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.real-estate-2 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.real-estate-2 .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.real-estate-2 .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.real-estate-2 .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.real-estate-2 .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.real-estate-2 .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.real-estate-2 .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.real-estate-2 .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.real-estate-2 .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.real-estate-2 .portfolio-description p {
  padding: 0;
}

.real-estate-2 .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.real-estate-2 .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.real-estate-2 .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.real-estate-2 .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.real-estate-2 .portfolio-description .testimonial-item .quote-icon-left,
.real-estate-2 .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.real-estate-2 .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.real-estate-2 .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.real-estate-2 .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

.real-estate-2 .nav-pills {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.real-estate-2 .nav-pills li+li {
  margin-left: 40px;
}

.real-estate-2 .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--default-color);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
}

.real-estate-2 .nav-link.active {
  color: var(--accent-color);
  background: none;
  border-bottom: 3px solid var(--accent-color);
}

@media (max-width: 575px) {
  .real-estate-2 .nav-link {
    font-size: 16px;
  }
}

.real-estate-2 .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--default-color);
}

.real-estate-2 .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--accent-color);
}


.proyectos-section * {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.proyectos-section {
    background-color: #f5f5f5;
    color: #111;
    padding: 60px 10%;
}

/* CONTENEDOR */
.proyectos-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.proyectos-section .container.reverse {
    flex-direction: row-reverse;
}

/* TEXTO */
.proyectos-section .content h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.proyectos-section .content h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.proyectos-section .content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* VIDEO */
.proyectos-section .media iframe {
    width: 100%;
    height: 350px;
    border-radius: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .proyectos-section .container {
        flex-direction: column;
    }
}

.proyectos-section * {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.proyectos-section {
    background-color: #f5f5f5;
    color: #111;
    padding: 60px 10%;
}

/* CONTENEDOR */
.proyectos-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.proyectos-section .container.reverse {
    flex-direction: row-reverse;
}

/* TEXTO */
.proyectos-section .content h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.proyectos-section .content h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.proyectos-section .content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* VIDEO */
.proyectos-section .media iframe {
    width: 100%;
    height: 350px;
    border-radius: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .proyectos-section .container {
        flex-direction: column;
    }
}
/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Catalogo Page
--------------------------------------------------------------*/
.catalogo-section {
  padding: 142px 0 58px;
  background: #ffffff;
}

.catalogo-header {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.catalogo-title-banner {
  width: min(100%, 900px);
  margin: 0 auto 20px;
  padding: 18px 24px;
  border-radius: 8px;
  background: #06718a;
  color: #ffffff;
}

.catalogo-title-banner h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.12;
}

.catalogo-header p {
  max-width: 900px;
  margin: 0 auto;
  color: #1b1b1b;
  font-size: clamp(1.02rem, 2.4vw, 1.35rem);
  line-height: 1.55;
}

.catalogo-custom-title {
  width: min(100%, 980px);
  margin: 0 auto 18px;
  text-align: center;
}

.catalogo-custom-title h2 {
  margin: 0;
  color: #06718a;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
}

.catalogo-custom-title2 {
  position: relative;
  margin: 0 0 24px;
  padding: 0 0 20px;
  text-align: left;
  border-bottom: 1px solid #d9e6df;
}

.catalogo-custom-title2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 82px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 999px;
}

.catalogo-custom-title2 h2 {
  margin: 0 0 10px;
  color: #10241a;
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
  font-weight: 900;
  line-height: 1.12;
}

.catalogo-custom-title2 p {
  margin: 0;
  color: #1e3a2d;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.catalogo-viewer {
  width: min(100%, 980px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #06718a;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.catalogo-viewer iframe {
  width: 100%;
  height: min(72vh, 760px);
  min-height: 560px;
  display: block;
  border: 0;
}

@media (max-width: 767px) {
  .catalogo-section {
    padding: 112px 0 42px;
  }

  .catalogo-title-banner {
    padding: 16px 18px;
  }

  .catalogo-viewer iframe {
    height: 72vh;
    min-height: 430px;
  }
}

/*--------------------------------------------------------------
# Contact Clean Page
--------------------------------------------------------------*/
.contact-clean {
  padding: 124px 0 58px;
  background: #ffffff;
  color: #000000;
}

.contact-clean .container {
  max-width: 1030px;
}

.contact-clean-heading {
  text-align: center;
  margin-bottom: 34px;
}

.contact-clean-heading h1 {
  margin: 0 0 18px;
  color: #000000;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 900;
}

.contact-clean-heading p {
  margin: 0;
  color: #000000;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.contact-top-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 150px minmax(260px, 1fr);
  align-items: center;
  gap: 42px;
  margin-bottom: 54px;
}

.contact-info-list {
  display: grid;
  gap: 22px;
}

.contact-info-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  color: #000000;
  font-size: 16px;
  line-height: 1.28;
}

.contact-info-row:hover {
  color: #000000;
}

.contact-info-row i {
  color: #000000;
  font-size: 34px;
  line-height: 1;
}

.contact-whatsapp-icon {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #57d33d 0 50%, #1f741c 50% 100%);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(31, 116, 28, 0.18);
}

.contact-whatsapp-icon:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.contact-whatsapp-icon i {
  font-size: 74px;
  line-height: 1;
}

.contact-whatsapp-copy {
  text-align: center;
  color: #000000;
}

.contact-whatsapp-copy p {
  max-width: 300px;
  margin: 0 auto 8px;
  font-size: 16px;
  line-height: 1.35;
}

.contact-whatsapp-copy strong {
  display: block;
  margin-bottom: 10px;
  color: #000000;
  font-size: 22px;
  font-weight: 900;
}

.contact-whatsapp-copy span {
  display: block;
  font-size: 14px;
}

.contact-form-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1.22fr);
  gap: 38px;
  align-items: start;
  margin: 58px 0 70px;
  padding: 42px;
  background: #f6f8f7;
  border-left: 8px solid var(--accent-color);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.contact-form-copy span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 12px;
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form-copy h2 {
  margin: 0 0 16px;
  color: #000000;
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 900;
  line-height: 1.12;
}

.contact-form-copy p {
  margin: 0;
  color: #222222;
  font-size: 16px;
  line-height: 1.65;
}

.contact-client-form label {
  display: block;
  margin-bottom: 8px;
  color: #000000;
  font-size: 14px;
  font-weight: 800;
}

.contact-client-form .form-control {
  min-height: 50px;
  padding: 12px 14px;
  color: #111111;
  background: #ffffff;
  border: 1px solid #d9dfdc;
  border-radius: 6px;
  box-shadow: none;
  font-size: 15px;
}

.contact-client-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-client-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 82%);
}

.contact-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 28px;
  background: var(--accent-color);
  color: #ffffff;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  transition: 0.3s;
}

.contact-form-submit:hover {
  background: color-mix(in srgb, var(--accent-color), black 16%);
  transform: translateY(-2px);
}

.contact-sales-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(440px, 1.2fr);
  align-items: center;
  gap: 56px;
}

.contact-sales-copy h2 {
  margin: 0 0 36px;
  color: #000000;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 900;
}

.contact-sales-copy h3 {
  margin: 24px 0 8px;
  color: #000000;
  font-size: 15px;
  font-weight: 900;
}

.contact-sales-copy p {
  margin: 0 0 14px;
  color: #000000;
  font-size: 14px;
  line-height: 1.55;
}

.contact-sales-copy span {
  display: inline-block;
  padding-left: 34px;
}

.contact-map iframe {
  width: 100%;
  height: 330px;
  display: block;
  border: 0;
}

@media (max-width: 991px) {
  .contact-clean {
    padding-top: 104px;
  }

  .contact-top-grid,
  .contact-form-panel,
  .contact-sales-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-whatsapp-copy {
    text-align: left;
  }

  .contact-whatsapp-copy p {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .contact-clean {
    padding: 92px 0 42px;
  }

  .catalogo-custom-title2 {
    padding-bottom: 18px;
    text-align: left;
  }

  .catalogo-custom-title2::after {
    left: 0;
    bottom: -1px;
    width: 72px;
    transform: none;
  }

  .contact-info-row {
    grid-template-columns: 42px minmax(0, 1fr);
    font-size: 15px;
  }

  .contact-info-row i {
    font-size: 28px;
  }

  .contact-whatsapp-icon {
    width: 112px;
    height: 112px;
  }

  .contact-whatsapp-icon i {
    font-size: 62px;
  }

  .contact-sales-copy h2 {
    margin-bottom: 22px;
  }

  .contact-form-panel {
    margin: 42px 0 50px;
    padding: 28px 20px;
  }

  .contact-form-submit {
    width: 100%;
  }

  .contact-map iframe {
    height: 280px;
  }
}

/*--------------------------------------------------------------
# Sala de Ventas Page
--------------------------------------------------------------*/
.sala-ventas-page {
  background: #ffffff;
}

.sales-title-band {
  margin-top: 92px;
  padding: 34px 0 0;
  background: #ffffff;
  text-align: center;
}

.sales-title-banner {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 22px 28px 24px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(46, 202, 106, 0.18), rgba(255, 255, 255, 0) 38%),
    #06718a;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(6, 113, 138, 0.18);
}

.sales-title-banner span {
  display: block;
  margin-bottom: 8px;
  color: #dff8ea;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sales-title-banner:after {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: #2eca6a;
}

.sales-title-band h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
}

.sales-intro {
  padding: 42px 0 28px;
}

.sales-intro .container,
.sales-location .container {
  max-width: 980px;
}

.sales-gallery .container {
  max-width: 1180px;
}

.sales-intro-grid,
.sales-location-grid,
.sales-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: 52px;
}

.sales-copy h2,
.sales-contact h2,
.sales-gallery h2 {
  margin: 0 0 18px;
  color: #000000;
  font-size: 1.65rem;
  font-weight: 900;
}

.sales-copy p,
.sales-contact p {
  margin: 0 0 13px;
  color: #000000;
  font-size: 14px;
  line-height: 1.62;
}

.sales-building img {
  width: 100%;
  max-height: 355px;
  display: block;
  object-fit: cover;
}

.sales-location {
  padding: 18px 0 30px;
}

.sales-map iframe {
  width: 100%;
  height: 250px;
  display: block;
  border: 0;
}

.sales-contact {
  text-align: center;
}

.sales-contact-box {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.sales-contact-box strong {
  margin-bottom: 4px;
  color: #000000;
  font-size: 14px;
}

.sales-contact-box a {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}

.sales-contact-box i {
  margin-right: 6px;
  color: #08a83f;
}

@media (max-width: 575px) {
  .sales-contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }

  .sales-contact-box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
}

@media (min-width: 992px) {
  .sales-location-grid {
    grid-template-columns: minmax(0, 0.75fr) minmax(300px, 0.82fr);
  }

  .sales-location-grid .sales-contact {
    grid-column: 1;
    order: 1;
  }

  .sales-location-grid .sales-map {
    grid-column: 2;
    order: 2;
  }

  .sales-map iframe {
    height: 350px;
  }
}

.sales-gallery {
  padding: 34px 0 58px;
}

.sales-gallery h2 {
  margin-bottom: 24px;
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.sales-gallery-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  align-items: stretch;
  gap: 38px;
}

.sales-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 170px;
  gap: 12px;
}

.sales-photo {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #f3f7f4;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.sales-photo-large {
  grid-column: span 2;
  grid-row: span 2;
}

.sales-photo-wide {
  grid-column: span 2;
}

.sales-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.sales-photo:hover img {
  transform: scale(1.045);
}

.sales-video-preview {
  position: relative;
  min-height: 522px;
  overflow: hidden;
  background: #000000;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.sales-video-preview iframe {
  width: 100%;
  height: 100%;
  min-height: 522px;
  display: block;
  border: 0;
}

.sales-video-preview img {
  width: 100%;
  height: 318px;
  display: block;
  object-fit: cover;
  opacity: 0.18;
}

.sales-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 42px;
}

.sales-play i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  line-height: 1;
}

@media (max-width: 991px) {
  .sales-title-band {
    margin-top: 72px;
    padding-top: 28px;
  }

  .sales-intro-grid,
  .sales-gallery-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sales-contact {
    text-align: left;
  }

  .sales-photo-grid {
    grid-auto-rows: 150px;
  }
}

@media (max-width: 767px) {
  .sales-location-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Desktop: force map to the right column while keeping mobile layout intact */
@media (min-width: 768px) {
  .sales-location-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr) !important;
    grid-template-areas: "contact map";
    align-items: center;
    gap: 52px;
  }

  .sales-location-grid .sales-contact {
    grid-area: contact;
    text-align: left;
  }

  .sales-location-grid .sales-map {
    grid-area: map;
  }

  .sales-map iframe {
    height: 350px;
  }
}

@media (max-width: 575px) {
  .sales-title-band {
    margin-top: 68px;
    padding: 22px 0 0;
  }

  .sales-title-banner {
    padding: 16px 14px 18px;
  }

  .sales-intro,
  .sales-location,
  .sales-gallery {
    padding-left: 0;
    padding-right: 0;
  }

  .sales-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 132px;
    gap: 8px;
  }

  .sales-photo-large,
  .sales-photo-wide {
    grid-column: span 2;
  }

  .sales-video-preview,
  .sales-video-preview iframe {
    min-height: 300px;
  }
}

@media (max-width: 575px) {
  .sales-title-band {
    margin-top: 68px;
    padding: 22px 0 0;
  }

  .sales-title-banner {
    padding: 16px 14px 18px;
  }

  .sales-intro,
  .sales-location,
  .sales-gallery {
    padding-left: 0;
    padding-right: 0;
  }

  .sales-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 132px;
    gap: 8px;
  }

  .sales-photo-large,
  .sales-photo-wide {
    grid-column: span 2;
  }

  .sales-video-preview,
  .sales-video-preview iframe {
    min-height: 300px;
  }
}

/*--------------------------------------------------------------
# Construct Page
--------------------------------------------------------------*/
.construct-page {
  background: #f7faf9;
}

.construct-hero {
  padding: 150px 0 58px;
  background: #ffffff;
}

.construct-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
  gap: 46px;
}

.construct-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-left: 4px solid #2eca6a;
  background: #eaf7f1;
  color: #08758d;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.construct-hero-copy h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #12333b;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 850;
  line-height: 1.02;
}

.construct-hero-copy p {
  max-width: 700px;
  margin: 0;
  color: #4d5a5e;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.construct-hero-media {
  min-height: 390px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(19, 51, 59, 0.14);
}

.construct-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  object-fit: cover;
}

.construct-projects {
  padding: 66px 0;
  background: #f7faf9;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  align-items: stretch;
  gap: 0;
  margin-bottom: 44px;
  overflow: hidden;
  border: 1px solid rgba(15, 127, 150, 0.13);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(17, 49, 57, 0.08);
}

.project-card:last-child {
  margin-bottom: 0;
}

.project-card-reverse .project-video {
  order: 2;
}

.project-video {
  position: relative;
  min-height: 420px;
  background: #12333b;
  overflow: hidden;
}

.project-video-loader {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  cursor: pointer;
  z-index: 2;
}

.project-video-loader img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.project-video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 10, 12, 0.08) 0%, rgba(2, 10, 12, 0.5) 100%);
  pointer-events: none;
}

.project-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: rgba(2, 103, 138, 0.9);
  color: #ffffff;
  font-size: 2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  pointer-events: none;
  z-index: 1;
}

.project-video-loader:focus-visible {
  outline: 2px solid #2eca6a;
  outline-offset: -4px;
}

.project-video-modal {
  position: fixed;
  inset: 0;
  z-index: 2050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(2, 10, 12, 0.86);
}

.project-video-modal.is-open {
  display: flex;
}

.project-video-modal-panel {
  position: relative;
  width: min(100%, 960px);
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #000000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.project-video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #12333b;
  font-size: 1.35rem;
  cursor: pointer;
}

.project-video-modal iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* Rotate hint (mobile-only) */
.rotate-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}
.rotate-hint.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.rotate-hint-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.96);
  padding: 10px 12px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transform: translateY(0);
}
.rotate-hint-text {
  margin: 0;
  color: #0f7f96;
  font-weight: 700;
  font-size: 14px;
}
.rotate-hint-svg { width: 46px; height: 46px; }
.rotate-hint-arrow { transform-origin: 32px 24px; animation: rotatePhone 1.6s ease-in-out 0s 1; }

@keyframes rotatePhone {
  0% { transform: rotate(0deg); }
  40% { transform: rotate(90deg); }
  80% { transform: rotate(90deg); }
  100% { transform: rotate(0deg); }
}

@media (min-width: 576px) {
  .rotate-hint { display: none !important; }
}

.project-video iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  border: 0;
}

.project-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
}

.project-number {
  margin-bottom: 18px;
  color: #0f7f96;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 850;
}

.project-content h2 {
  margin: 0 0 12px;
  color: #12333b;
  font-size: clamp(1.8rem, 2.6vw, 2.55rem);
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
}

.project-content h3 {
  margin: 0 0 24px;
  color: #08758d;
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.45;
}

.project-content p {
  margin: 0 0 15px;
  color: #4f5f63;
  font-size: 16px;
  line-height: 1.72;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.project-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(15, 127, 150, 0.2);
  background: #f1faf6;
  color: #12333b;
  font-size: 13px;
  font-weight: 750;
}

.construct-cta {
  padding: 0 0 70px;
  background: #f7faf9;
}

.construct-cta-box {
  padding: 34px 38px;
  border-radius: 8px;
  background: #06718a;
  color: #ffffff;
  text-align: center;
}

.construct-cta-box h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 850;
}

.construct-cta-box p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .construct-hero {
    padding: 130px 0 46px;
  }

  .construct-hero-grid,
  .project-card {
    grid-template-columns: 1fr;
  }

  .construct-hero-media,
  .construct-hero-media img {
    min-height: 300px;
  }

  .project-card-reverse .project-video {
    order: 0;
  }

  .project-content {
    padding: 34px 28px;
  }

  .project-video-loader {
    display: flex;
  }

  .project-video iframe {
    pointer-events: none;
  }
}

@media (max-width: 575px) {
  .construct-hero {
    padding: 116px 0 36px;
  }

  .construct-projects {
    padding: 42px 0;
  }

  .construct-hero-grid {
    gap: 28px;
  }

  .construct-hero-media,
  .construct-hero-media img {
    min-height: 240px;
  }

  .project-video,
  .project-video iframe {
    min-height: 260px;
  }

  .project-card {
    margin-bottom: 28px;
  }

  .project-content {
    padding: 28px 22px;
  }

  .construct-cta {
    padding-bottom: 46px;
  }

  .construct-cta-box {
    padding: 28px 20px;
  }
}

/*--------------------------------------------------------------
# Maquinaria Page
--------------------------------------------------------------*/
.maquinaria-page .page-title .heading {
  padding: 145px 0 0;
}

.maquinaria-title-banner {
  width: min(100%, 900px);
  margin: 0 auto 20px;
  padding: 22px 28px 24px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(46, 202, 106, 0.18), rgba(255, 255, 255, 0) 38%),
    #06718a;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 18px 42px rgba(6, 113, 138, 0.18);
  position: relative;
  overflow: hidden;
}

.maquinaria-title-banner:after {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: #2eca6a;
}

.maquinaria-title-banner span {
  display: block;
  margin-bottom: 8px;
  color: #dff8ea;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.maquinaria-title-banner h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 4.1rem);
  font-weight: 900;
  line-height: 1.05;
}

.maquinaria-intro {
  max-width: 900px;
  margin: 0 auto 24px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.maquinaria-page .real-estate {
  padding-top: 34px;
  margin-top: 0;
}

.maquinaria-page .real-estate .container {
  max-width: 1220px;
}

.maquinaria-page .real-estate .row {
  row-gap: 44px;
  column-gap: 0;
  justify-content: center;
}

.maquinaria-page .real-estate .card {
  width: 100%;
  max-width: 580px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid #e3ecef;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(18, 49, 56, 0.12);
}

.maquinaria-page .real-estate .card:before {
  display: none;
}

.maquinaria-page .real-estate .card img {
  position: relative;
  width: 100%;
  height: 390px;
  aspect-ratio: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  margin: 0;
  padding: 18px;
  background: #f4f8f9;
  border-radius: 12px 12px 0 0;
  z-index: 1;
}

.maquinaria-page .real-estate .card .card-body {
  position: static;
  padding: 26px 28px 30px;
  z-index: 1;
}

.maquinaria-page .real-estate .card .card-body .sale-rent {
  max-width: 100%;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  white-space: normal;
  color: #026f8c;
  border-color: var(--accent-color);
  margin-bottom: 14px;
}

.maquinaria-page .real-estate .card .card-body h3 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.2;
  border-left: 4px solid var(--accent-color);
}

.maquinaria-page .real-estate .card .card-body h3 a {
  color: #111111;
}

.maquinaria-page .real-estate .card .card-body .card-content {
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 18px;
  visibility: visible;
  opacity: 1;
  background: #026f8c;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
}

.maquinaria-page .real-estate .card .card-body .card-content .row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.maquinaria-page .real-estate .card .card-body .card-content .col {
  padding: 0 4px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.maquinaria-page .real-estate .card:hover .card-content {
  margin-bottom: 0;
}

.maquinaria-page .real-estate .maquinaria-dynamic-card .card-body {
  padding: 28px 30px 32px;
}

.maquinaria-page .real-estate .maquinaria-dynamic-card .card-body .sale-rent {
  padding: 6px 16px;
  font-size: 25px;
  font-weight: 850;
  text-transform: uppercase;
  background: #eefaf3;
}

.maquinaria-page .real-estate .maquinaria-dynamic-card .card-body h3 {
  margin-bottom: 16px;
  padding-left: 12px;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 850;
}

.maquinaria-page .real-estate .maquinaria-dynamic-card .card-body .maquinaria-description {
  display: block;
  padding: 18px 20px;
  background: #f4faf8;
  border: 1px solid #d9ece6;
  border-left: 4px solid var(--accent-color);
  border-radius: 8px;
  color: #254248;
  text-align: left;
}

.maquinaria-page .real-estate .maquinaria-dynamic-card .maquinaria-description-text {
  margin: 0;
  color: #254248;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.68;
  overflow-wrap: anywhere;
}

.maquinaria-page .real-estate .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(18, 49, 56, 0.16);
}

@media (max-width: 991px) {
  .maquinaria-page .real-estate .row {
    row-gap: 34px;
  }

  .maquinaria-page .real-estate .card {
    max-width: 680px;
  }

  .maquinaria-page .real-estate .card img {
    height: 360px;
  }
}

@media (max-width: 575px) {
  .maquinaria-page .page-title .heading {
    padding: 110px 0 0;
  }

  .maquinaria-title-banner {
    padding: 16px 14px 18px;
  }

  .maquinaria-page .real-estate {
    padding-top: 18px;
    margin-top: 0;
  }

  .maquinaria-page .real-estate .card img {
    height: 280px;
    padding: 12px;
  }

  .maquinaria-page .real-estate .card .card-body {
    padding: 22px 18px;
  }

  .maquinaria-page .real-estate .card .card-body .card-content {
    min-height: 0;
    margin: 0;
    padding: 14px 16px 16px;
  }

  .maquinaria-page .real-estate .maquinaria-dynamic-card .card-body {
    padding: 22px 18px;
  }

  .maquinaria-page .real-estate .maquinaria-dynamic-card .card-body .maquinaria-description {
    padding: 16px;
  }

  .maquinaria-page .real-estate .card .card-body .card-content .row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .maquinaria-page .real-estate .card:hover .card-content {
    margin-bottom: 0;
  }
}


.contacto {
  text-align: center;
  padding: 50px 0;
}

.texto {
  font-size: 20px;
  letter-spacing: 1.5px;
  color: #555;
}

.telefono {
  font-size: 36px;
  font-weight: 700;
  margin-top: 10px;
}

@media (max-width: 575px) {
  .contacto {
    padding: 34px 16px;
  }

  .texto {
    font-size: 15px;
    line-height: 1.45;
  }

  .telefono {
    font-size: 28px;
  }
}
