@charset "UTF-8";
/* line 1, app/assets/stylesheets/main.scss */
: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: "Inter", 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 */
/* line 8, app/assets/stylesheets/main.scss */
: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: #273d4e;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #988257;
  /* 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. */
}

/* line 23, app/assets/stylesheets/main.scss */
body {
  font-size: 1rem;
}

/* line 27, app/assets/stylesheets/main.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

/* 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 */
/* line 37, app/assets/stylesheets/main.scss */
:root {
  --nav-color: #e5eaee;
  --nav-hover-color: #988257;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #988257;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
/* line 49, app/assets/stylesheets/main.scss */
.light-background {
  --background-color: #f1f4fa;
  --surface-color: #ffffff;
}

/* line 54, app/assets/stylesheets/main.scss */
.dark-background {
  --background-color: #000910;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
/* line 63, app/assets/stylesheets/main.scss */
:root {
  scroll-behavior: smooth;
}

/* line 67, app/assets/stylesheets/main.scss */
.transition-all {
  transition: all 0.3s ease !important;
}

/* line 71, app/assets/stylesheets/main.scss */
.hover-primary:hover {
  color: var(--accent-color) !important;
}

/* line 75, app/assets/stylesheets/main.scss */
.hover-white:hover {
  color: #fff !important;
}

/* line 79, app/assets/stylesheets/main.scss */
.admin-floating-pill {
  position: fixed;
  top: 100px;
  /* Abaixo do header */
  left: 20px;
  z-index: 1001;
  /* Acima do header */
  background: rgba(12, 18, 26, 0.8) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
  margin-top: 0 !important;
}

@media (max-width: 991px) {
  /* line 95, app/assets/stylesheets/main.scss */
  .admin-floating-pill {
    top: auto;
    bottom: 20px;
    left: 20px;
    right: auto;
  }
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
/* line 106, app/assets/stylesheets/main.scss */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

/* line 112, app/assets/stylesheets/main.scss */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

/* line 118, app/assets/stylesheets/main.scss */
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

/* line 123, app/assets/stylesheets/main.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
/* line 135, app/assets/stylesheets/main.scss */
.property-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

/* Premium Modals
------------------------------*/
/* line 147, app/assets/stylesheets/main.scss */
.premium-modal {
  z-index: 100001 !important;
}

/* line 151, app/assets/stylesheets/main.scss */
.modal-backdrop {
  z-index: 100000 !important;
}

/* line 155, app/assets/stylesheets/main.scss */
.btn-close-custom {
  background: #f8f9fa;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  transition: all 0.3s;
  padding: 0;
}

/* line 169, app/assets/stylesheets/main.scss */
.btn-close-custom:hover {
  background: #eee;
  color: #333;
  transform: rotate(90deg);
}

/* line 175, app/assets/stylesheets/main.scss */
.fw-800 {
  font-weight: 800;
}

/* line 179, app/assets/stylesheets/main.scss */
.property-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

/* line 189, app/assets/stylesheets/main.scss */
.property-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

/* line 197, app/assets/stylesheets/main.scss */
.property-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);
  }
}

/* Pulsating Play Button
------------------------------*/
/* line 221, app/assets/stylesheets/main.scss */
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

/* line 231, app/assets/stylesheets/main.scss */
.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

/* line 249, app/assets/stylesheets/main.scss */
.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 264, app/assets/stylesheets/main.scss */
.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

/* line 281, app/assets/stylesheets/main.scss */
.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* line 301, app/assets/stylesheets/main.scss */
.header {
  color: var(--default-color);
  background-color: rgba(0, 9, 16, 0.4);
  backdrop-filter: blur(var(--header-blur, 15px));
  -webkit-backdrop-filter: blur(var(--header-blur, 15px));
  padding: var(--header-padding, 12px 0);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  min-height: var(--header-min-height, 70px);
}

/* line 313, app/assets/stylesheets/main.scss */
.header .logo {
  line-height: 1;
  display: flex;
  align-items: center;
  overflow: visible !important;
  /* Garantir que a logo não seja cortada */
  height: auto !important;
  /* Permitir altura flexível baseada na imagem */
}

/* line 323, app/assets/stylesheets/main.scss */
.header .logo img {
  max-height: var(--logo-height, 50px);
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}

/* line 330, app/assets/stylesheets/main.scss */
.header .logo span {
  background-color: var(--heading-color);
  padding: 4px 7px;
  border-radius: 1px;
  font-weight: 500;
  font-family: monospace;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 342, app/assets/stylesheets/main.scss */
i.sitename {
  position: absolute;
  margin: 44px 0 0 88px;
  font-family: unset;
  font-size: 13px;
}

/* line 349, app/assets/stylesheets/main.scss */
.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

/* line 356, app/assets/stylesheets/main.scss */
.header .cta-btn,
.header .cta-btn:focus {
  color: #fff;
  font-size: 18px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 20px;
  border-radius: 50%;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1.5px solid var(--primary-color);
  background: var(--primary-color);
}

/* line 372, app/assets/stylesheets/main.scss */
.header .cta-btn.has-text {
  width: auto;
  padding: 0 20px;
  border-radius: 50px;
}

/* line 378, app/assets/stylesheets/main.scss */
.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: #fff;
  background: var(--primary-color);
  border-color: var(--primary-color);
  filter: brightness(0.95);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.35);
}

@media (max-width: 1200px) {
  /* line 389, app/assets/stylesheets/main.scss */
  .header .logo {
    order: 1;
  }
  /* line 393, app/assets/stylesheets/main.scss */
  .header .cta-btn {
    order: 2;
  }
  /* line 397, app/assets/stylesheets/main.scss */
  .header .navmenu {
    order: 3;
  }
}

/* line 402, app/assets/stylesheets/main.scss */
.scrolled .header {
  background-color: rgba(10, 15, 20, 0.95);
  padding: 10px 0;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  /* line 414, app/assets/stylesheets/main.scss */
  .navmenu {
    padding: 0;
  }
  /* line 418, app/assets/stylesheets/main.scss */
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  /* line 426, app/assets/stylesheets/main.scss */
  .navmenu li {
    position: relative;
  }
  /* line 430, app/assets/stylesheets/main.scss */
  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }
  /* line 435, app/assets/stylesheets/main.scss */
  .navmenu > ul > li:last-child {
    padding-right: 0;
  }
  /* line 439, app/assets/stylesheets/main.scss */
  .navmenu a,
.navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: none;
  }
  /* line 455, app/assets/stylesheets/main.scss */
  .navmenu a i,
.navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  /* line 463, app/assets/stylesheets/main.scss */
  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  /* line 475, app/assets/stylesheets/main.scss */
  .navmenu a:hover:before,
.navmenu li:hover > a:before,
.navmenu .active:before {
    visibility: visible;
    width: 100%;
  }
  /* line 482, app/assets/stylesheets/main.scss */
  .navmenu li:hover > a,
.navmenu .active,
.navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 90%, white 15%);
  }
  /* line 488, app/assets/stylesheets/main.scss */
  .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);
  }
  /* line 504, app/assets/stylesheets/main.scss */
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  /* line 508, app/assets/stylesheets/main.scss */
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  /* line 515, app/assets/stylesheets/main.scss */
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  /* line 519, app/assets/stylesheets/main.scss */
  .navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  /* line 525, app/assets/stylesheets/main.scss */
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  /* line 531, app/assets/stylesheets/main.scss */
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  /* line 537, app/assets/stylesheets/main.scss */
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  /* Toggle Button (Hamburger) */
  /* line 549, app/assets/stylesheets/main.scss */
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 9999999;
    position: relative;
  }
  /* Main Navigation Container (The Drawer) */
  /* line 560, app/assets/stylesheets/main.scss */
  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden off-screen */
    width: 100%;
    height: 100dvh;
    /* Dynamic viewport height */
    z-index: 999998;
    background: rgba(12, 18, 26, 0.98);
    /* Premium dark background */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    /* Smooth eased slide */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center links vertically */
    align-items: center;
    padding: 20px;
    visibility: hidden;
  }
  /* The List inside the container */
  /* line 585, app/assets/stylesheets/main.scss */
  .navmenu ul {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    overflow-y: auto;
    inset: auto;
    /* Reset inset */
  }
  /* Links Styling */
  /* line 603, app/assets/stylesheets/main.scss */
  .navmenu a,
.navmenu a:focus {
    color: #ffffff;
    padding: 15px 0;
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle separator */
  }
  /* line 620, app/assets/stylesheets/main.scss */
  .navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.03);
    padding-left: 10px;
    /* Slight movement to indicate hover */
  }
  /* Dropdown handling (simplified for premium look) */
  /* line 630, app/assets/stylesheets/main.scss */
  .navmenu .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 0;
    background: transparent;
    border: none;
  }
  /* line 639, app/assets/stylesheets/main.scss */
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background: rgba(255, 255, 255, 0.05);
  }
  /* ACTIVE STATE (When menu is open) */
  /* line 645, app/assets/stylesheets/main.scss */
  .mobile-nav-active {
    overflow: hidden;
    /* Lock body scroll */
  }
  /* Reveal the menu */
  /* line 651, app/assets/stylesheets/main.scss */
  .mobile-nav-active .navmenu {
    right: 0;
    visibility: visible;
    overflow: visible;
    /* Allow internal content scroll if needed */
  }
  /* Fix Toggle Button Position/Color when active */
  /* line 659, app/assets/stylesheets/main.scss */
  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    color: #fff;
    z-index: 9999999;
  }
  /* Remove header blur context to prevent clipping */
  /* line 668, app/assets/stylesheets/main.scss */
  .mobile-nav-active .header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 9999999;
    /* Ensure header stays visible underneath if needed, or menu covers it */
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* line 679, app/assets/stylesheets/main.scss */
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

/* line 686, app/assets/stylesheets/main.scss */
.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

/* line 691, app/assets/stylesheets/main.scss */
.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

/* line 696, app/assets/stylesheets/main.scss */
.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

/* line 701, app/assets/stylesheets/main.scss */
.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

/* line 709, app/assets/stylesheets/main.scss */
.footer .footer-about p {
  font-size: 14px;
}

/* line 713, app/assets/stylesheets/main.scss */
.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 30%);
  margin-right: 10px;
  transition: 0.3s;
}

/* line 727, app/assets/stylesheets/main.scss */
.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

/* line 732, app/assets/stylesheets/main.scss */
.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

/* line 739, app/assets/stylesheets/main.scss */
.footer .footer-links {
  margin-bottom: 30px;
}

/* line 743, app/assets/stylesheets/main.scss */
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 749, app/assets/stylesheets/main.scss */
.footer .footer-links ul i {
  padding-right: 3px;
  font-size: 13px;
  line-height: 0;
  color: var(--accent-color);
}

/* line 756, app/assets/stylesheets/main.scss */
.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

/* line 762, app/assets/stylesheets/main.scss */
.footer .footer-links ul li:first-child {
  padding-top: 0;
}

/* line 766, app/assets/stylesheets/main.scss */
.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

/* line 772, app/assets/stylesheets/main.scss */
.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

/* line 776, app/assets/stylesheets/main.scss */
.footer .footer-contact p {
  margin-bottom: 5px;
}

/* line 780, app/assets/stylesheets/main.scss */
.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

/* line 792, app/assets/stylesheets/main.scss */
.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

/* line 796, app/assets/stylesheets/main.scss */
.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

/* line 804, app/assets/stylesheets/main.scss */
.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

/* line 808, app/assets/stylesheets/main.scss */
.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

/* line 819, app/assets/stylesheets/main.scss */
.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* line 823, app/assets/stylesheets/main.scss */
.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

/* line 828, app/assets/stylesheets/main.scss */
.footer .copyright p {
  margin-bottom: 0;
}

/* line 832, app/assets/stylesheets/main.scss */
.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
/* line 844, app/assets/stylesheets/main.scss */
.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;
}

/* line 858, app/assets/stylesheets/main.scss */
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

/* line 864, app/assets/stylesheets/main.scss */
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

/* line 869, app/assets/stylesheets/main.scss */
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  /* line 878, app/assets/stylesheets/main.scss */
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
/* line 886, app/assets/stylesheets/main.scss */
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 125px 0 60px 0;
  text-align: center;
  position: relative;
}

/* line 897, app/assets/stylesheets/main.scss */
.page-title:before {
  content: "";
  background: color-mix(in srgb, rgba(0, 9, 17, 0.68), transparent 1%);
  position: absolute;
  inset: 0;
}

/* line 904, app/assets/stylesheets/main.scss */
.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* line 910, app/assets/stylesheets/main.scss */
.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

/* line 921, app/assets/stylesheets/main.scss */
.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

/* line 925, app/assets/stylesheets/main.scss */
.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
/* line 935, app/assets/stylesheets/main.scss */
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 100px 0;
  scroll-margin-top: 80px;
  overflow: clip;
}

@media (max-width: 1199px) {
  /* line 946, app/assets/stylesheets/main.scss */
  section,
.section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
/* line 955, app/assets/stylesheets/main.scss */
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

/* line 961, app/assets/stylesheets/main.scss */
.section-title h2 {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

/* line 971, app/assets/stylesheets/main.scss */
.section-title p {
  color: var(--heading-color);
  margin: 0 auto;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--heading-font);
  line-height: 1.2;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  /* line 983, app/assets/stylesheets/main.scss */
  .section-title p {
    font-size: 26px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* line 991, app/assets/stylesheets/main.scss */
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1001, app/assets/stylesheets/main.scss */
.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* line 1012, app/assets/stylesheets/main.scss */
.hero:before {
  content: "";
  background: rgba(42, 99, 108, 0.3);
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* line 1020, app/assets/stylesheets/main.scss */
.hero .container {
  position: relative;
  z-index: 3;
}

/* line 1025, app/assets/stylesheets/main.scss */
.hero h1 {
  margin: 0 0 15px 0;
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--contrast-color);
}

/* line 1035, app/assets/stylesheets/main.scss */
.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}

/* line 1042, app/assets/stylesheets/main.scss */
.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  /* Fallback or kept generic */
  color: rgba(255, 255, 255, 0.9);
  /* Matching inline opacity 0.9 on white text usually implied by dark background */
  margin: 0 0 40px 0;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-align: center;
}

/* line 1054, app/assets/stylesheets/main.scss */
.hero .btn-get-started {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: var(--border-radius);
  transition: 0.3s;
  text-transform: uppercase;
  border: 0;
  height: 48px;
}

/* line 1069, app/assets/stylesheets/main.scss */
.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* line 1073, app/assets/stylesheets/main.scss */
.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 400;
  color: var(--default-color);
}

/* line 1081, app/assets/stylesheets/main.scss */
.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

/* line 1089, app/assets/stylesheets/main.scss */
.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

/* line 1093, app/assets/stylesheets/main.scss */
.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  /* line 1098, app/assets/stylesheets/main.scss */
  .hero {
    padding: 120px 0 60px 0;
  }
  /* line 1102, app/assets/stylesheets/main.scss */
  .hero h1 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  /* line 1108, app/assets/stylesheets/main.scss */
  .hero h2 {
    font-size: 32px;
  }
  /* line 1112, app/assets/stylesheets/main.scss */
  .hero p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.4;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/* line 1122, app/assets/stylesheets/main.scss */
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

/* line 1128, app/assets/stylesheets/main.scss */
.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

/* line 1132, app/assets/stylesheets/main.scss */
.about {
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}

/* line 1137, app/assets/stylesheets/main.scss */
.about .content ul {
  list-style: none;
  padding: 0;
}

/* line 1142, app/assets/stylesheets/main.scss */
.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

/* line 1147, app/assets/stylesheets/main.scss */
.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

/* line 1155, app/assets/stylesheets/main.scss */
.about .content p:last-child {
  margin-bottom: 0;
}

/* line 1159, app/assets/stylesheets/main.scss */
.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
/* line 1168, app/assets/stylesheets/main.scss */
.stats .stats-item {
  position: relative;
  padding: 40px 20px;
  background-size: cover !important;
  background-position: center !important;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 200px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: none;
}

/* line 1186, app/assets/stylesheets/main.scss */
.stats .stats-item:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
  transition: all 0.4s;
}

/* line 1195, app/assets/stylesheets/main.scss */
.stats .stats-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* line 1200, app/assets/stylesheets/main.scss */
.stats .stats-item:hover:before {
  background: linear-gradient(0deg, rgba(152, 130, 87, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* line 1204, app/assets/stylesheets/main.scss */
.stats .stats-item div {
  position: relative;
  z-index: 2;
}

/* line 1209, app/assets/stylesheets/main.scss */
.stats .stats-item span {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  transition: all 0.3s;
}

/* line 1220, app/assets/stylesheets/main.scss */
.stats .stats-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  /* line 1229, app/assets/stylesheets/main.scss */
  .stats {
    content-visibility: auto;
    contain-intrinsic-size: 1px 200px;
  }
  /* line 1234, app/assets/stylesheets/main.scss */
  .stats .stats-item {
    height: 160px !important;
  }
  /* line 1238, app/assets/stylesheets/main.scss */
  .stats .stats-item span {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
/* line 1246, app/assets/stylesheets/main.scss */
.services .img {
  border-radius: var(--border-radius);
  overflow: hidden;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  width: 100% !important;
  height: 315px;
  background-size: cover;
  background-position: center;
}

/* line 1257, app/assets/stylesheets/main.scss */
.services .img img {
  transition: 0.6s;
}

/* line 1261, app/assets/stylesheets/main.scss */
.services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 30px;
  margin: 0;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: var(--border-radius);
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 1274, app/assets/stylesheets/main.scss */
.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

/* line 1293, app/assets/stylesheets/main.scss */
.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  font-family: var(--default-font);
  transition: ease-in-out 0.3s;
}

/* line 1301, app/assets/stylesheets/main.scss */
.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0;
}

/* line 1309, app/assets/stylesheets/main.scss */
.services .details p span {
  display: flex;
  align-items: center;
  gap: 3px;
}

/* line 1315, app/assets/stylesheets/main.scss */
.services .service-item:hover .details h3 {
  color: var(--accent-color);
}

/* line 1319, app/assets/stylesheets/main.scss */
.services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

/* line 1324, app/assets/stylesheets/main.scss */
.services .service-item:hover .details .icon i {
  color: var(--accent-color);
}

/* line 1328, app/assets/stylesheets/main.scss */
.services .service-item:hover .img img {
  /*  transform: scale(1.2);*/
}

/* line 1332, app/assets/stylesheets/main.scss */
.services .swiper-wrapper {
  height: auto;
}

/* line 1336, app/assets/stylesheets/main.scss */
.services .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

/* line 1341, app/assets/stylesheets/main.scss */
.services .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

/* line 1348, app/assets/stylesheets/main.scss */
.services .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  opacity: 1;
}

/* line 1353, app/assets/stylesheets/main.scss */
.images-property .swiper-pagination {
  margin-top: -28px;
  position: relative;
}

/* line 1358, app/assets/stylesheets/main.scss */
.images-property .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 50%);
  opacity: 0.5;
}

/* line 1365, app/assets/stylesheets/main.scss */
.images-property .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--heading-color);
  opacity: 1;
}

/* Mobile Navigation services */
@media (max-width: 1199px) {
  /* line 1372, app/assets/stylesheets/main.scss */
  .services .img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  /* line 1377, app/assets/stylesheets/main.scss */
  .services .details h3 {
    margin: 8px 0 15px 0;
    font-size: 20px;
  }
  /* line 1382, app/assets/stylesheets/main.scss */
  .services .details {
    padding: 15px;
    margin: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
/* line 1394, app/assets/stylesheets/main.scss */
.clients {
  padding: 20px 0;
}

/* line 1398, app/assets/stylesheets/main.scss */
.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* line 1405, app/assets/stylesheets/main.scss */
.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

/* line 1413, app/assets/stylesheets/main.scss */
.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  /* line 1419, app/assets/stylesheets/main.scss */
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
/* line 1427, app/assets/stylesheets/main.scss */
.features .nav-tabs {
  border: 0;
}

/* line 1431, app/assets/stylesheets/main.scss */
.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

/* line 1445, app/assets/stylesheets/main.scss */
.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

/* line 1450, app/assets/stylesheets/main.scss */
.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* line 1456, app/assets/stylesheets/main.scss */
.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

/* line 1461, app/assets/stylesheets/main.scss */
.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

/* line 1467, app/assets/stylesheets/main.scss */
.features .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  /* line 1472, app/assets/stylesheets/main.scss */
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  /* line 1480, app/assets/stylesheets/main.scss */
  .features .nav-link {
    padding: 15px;
  }
  /* line 1484, app/assets/stylesheets/main.scss */
  .features .nav-link i {
    font-size: 24px;
  }
}

/* line 1489, app/assets/stylesheets/main.scss */
.features .tab-content {
  margin-top: 30px;
}

/* line 1493, app/assets/stylesheets/main.scss */
.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

/* line 1499, app/assets/stylesheets/main.scss */
.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

/* line 1504, app/assets/stylesheets/main.scss */
.features .tab-pane ul li {
  padding-bottom: 10px;
}

/* line 1508, app/assets/stylesheets/main.scss */
.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

/* line 1514, app/assets/stylesheets/main.scss */
.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
/* line 1521, app/assets/stylesheets/main.scss */
.services-2 .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

/* line 1528, app/assets/stylesheets/main.scss */
.services-2 .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

/* line 1535, app/assets/stylesheets/main.scss */
.services-2 .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

/* line 1541, app/assets/stylesheets/main.scss */
.services-2 .service-item .title a {
  color: var(--heading-color);
}

/* line 1545, app/assets/stylesheets/main.scss */
.services-2 .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

/* line 1551, app/assets/stylesheets/main.scss */
.services-2 .service-item:hover {
  border-color: var(--accent-color);
}

/* line 1555, app/assets/stylesheets/main.scss */
.services-2 .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Property Card Premium
--------------------------------------------------------------*/
/* line 1562, app/assets/stylesheets/main.scss */
.property-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
}

/* line 1574, app/assets/stylesheets/main.scss */
.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color);
}

/* line 1580, app/assets/stylesheets/main.scss */
.property-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  width: 100%;
}

/* line 1587, app/assets/stylesheets/main.scss */
.images-property {
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 0;
  left: 0;
  padding: 0 !important;
}

/* line 1596, app/assets/stylesheets/main.scss */
.images-property .swiper-wrapper,
.images-property .swiper-slide {
  height: 100%;
}

/* line 1601, app/assets/stylesheets/main.scss */
.property-img,
.property-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* line 1610, app/assets/stylesheets/main.scss */
.property-card:hover .property-img {
  transform: scale(1.08);
}

/* line 1614, app/assets/stylesheets/main.scss */
.property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: #fff;
  padding: 5px 15px;
  border-radius: var(--border-radius);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* line 1630, app/assets/stylesheets/main.scss */
.property-badge.badge-oportunidade {
  background: #28a745;
}

/* line 1634, app/assets/stylesheets/main.scss */
.property-badge.badge-frentemar {
  background: #000;
  color: #fff;
}

/* line 1639, app/assets/stylesheets/main.scss */
.property-badge.badge-vistamar {
  background: #fff;
  color: #333;
}

/* line 1644, app/assets/stylesheets/main.scss */
.property-badge.badge-lancamento {
  background: #b8975a;
}

/* line 1648, app/assets/stylesheets/main.scss */
.property-badge.badge-mobiliado {
  background: #444;
}

/* line 1652, app/assets/stylesheets/main.scss */
.property-badge.badge-quadramar {
  background: #2c3e50;
  color: #fff;
}

/* line 1657, app/assets/stylesheets/main.scss */
.property-badge.badge-destaque {
  background: #0d6efd;
  color: #fff;
}

/* line 1662, app/assets/stylesheets/main.scss */
.property-badge.badge-exclusivo {
  background: #6c22c0;
  color: #fff;
}

/* line 1667, app/assets/stylesheets/main.scss */
.property-badge.badge-custom {
  background: var(--accent-color);
  color: #fff;
}

/* line 1673, app/assets/stylesheets/main.scss */
.property-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* line 1680, app/assets/stylesheets/main.scss */
.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

/* line 1687, app/assets/stylesheets/main.scss */
.location {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #888;
  font-size: 13px;
}

/* line 1695, app/assets/stylesheets/main.scss */
.location i {
  color: var(--accent-color);
}

/* line 1699, app/assets/stylesheets/main.scss */
.whatsapp-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s;
}

/* line 1712, app/assets/stylesheets/main.scss */
.whatsapp-btn:hover {
  background: #128C7E;
  transform: scale(1.1);
  color: #fff;
}

/* line 1718, app/assets/stylesheets/main.scss */
.property-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* line 1731, app/assets/stylesheets/main.scss */
.property-price {
  margin-bottom: 20px;
}

/* line 1735, app/assets/stylesheets/main.scss */
.main-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-color);
  letter-spacing: -0.5px;
}

/* line 1742, app/assets/stylesheets/main.scss */
.dual-price {
  display: flex;
  gap: 20px;
}

/* line 1747, app/assets/stylesheets/main.scss */
.dual-price .price-item {
  display: flex;
  flex-direction: column;
}

/* line 1752, app/assets/stylesheets/main.scss */
.dual-price small {
  font-size: 10px;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 700;
}

/* line 1759, app/assets/stylesheets/main.scss */
.dual-price strong {
  font-size: 16px;
  color: var(--accent-color);
}

/* line 1764, app/assets/stylesheets/main.scss */
.price-reduction {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 1770, app/assets/stylesheets/main.scss */
.old-price-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

/* line 1777, app/assets/stylesheets/main.scss */
.old-price {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}

/* line 1784, app/assets/stylesheets/main.scss */
.discount-badge {
  background: #28a745;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* line 1794, app/assets/stylesheets/main.scss */
.new-price-label {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

/* line 1800, app/assets/stylesheets/main.scss */
.new-price-label .label {
  font-size: 14px;
  color: var(--heading-color);
  font-weight: 600;
}

/* line 1806, app/assets/stylesheets/main.scss */
.new-price-label .price {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-color);
  letter-spacing: -1px;
}

/* line 1813, app/assets/stylesheets/main.scss */
.property-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  margin-bottom: 20px;
}

/* line 1823, app/assets/stylesheets/main.scss */
.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 13px;
}

/* line 1831, app/assets/stylesheets/main.scss */
.feature i {
  font-size: 16px;
  color: #aaa;
}

/* line 1836, app/assets/stylesheets/main.scss */
.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

/* line 1843, app/assets/stylesheets/main.scss */
.btn-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--heading-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* line 1854, app/assets/stylesheets/main.scss */
.btn-more:after {
  content: '\F138';
  font-family: 'bootstrap-icons';
  transition: transform 0.3s;
}

/* line 1860, app/assets/stylesheets/main.scss */
.property-card:hover .btn-more:after {
  transform: translateX(5px);
}

/* line 1864, app/assets/stylesheets/main.scss */
.property-code {
  font-size: 11px;
  color: #bbb;
  font-weight: 500;
}

/* Custom Swiper Buttons for Card */
/* line 1871, app/assets/stylesheets/main.scss */
.images-property .swiper-button-next,
.images-property .swiper-button-prev {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #333;
}

/* line 1880, app/assets/stylesheets/main.scss */
.images-property .swiper-button-next:after,
.images-property .swiper-button-prev:after {
  font-size: 12px;
  font-weight: 900;
}

/* line 1886, app/assets/stylesheets/main.scss */
.images-property .swiper-pagination-bullet-active {
  background: #fff;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
/* line 1894, app/assets/stylesheets/main.scss */
.testimonials {
  padding: 80px 0;
  position: relative;
}

/* line 1899, app/assets/stylesheets/main.scss */
.testimonials:before {
  content: "";
  background: color-mix(in srgb, rgba(0, 9, 17, 0.68), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* line 1907, app/assets/stylesheets/main.scss */
.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* line 1917, app/assets/stylesheets/main.scss */
.testimonials .container {
  position: relative;
  z-index: 3;
}

/* line 1922, app/assets/stylesheets/main.scss */
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

/* line 1927, app/assets/stylesheets/main.scss */
.testimonials .testimonial-item {
  text-align: center;
}

/* line 1931, app/assets/stylesheets/main.scss */
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

/* line 1938, app/assets/stylesheets/main.scss */
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

/* line 1944, app/assets/stylesheets/main.scss */
.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/* line 1950, app/assets/stylesheets/main.scss */
.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

/* line 1954, app/assets/stylesheets/main.scss */
.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

/* line 1959, app/assets/stylesheets/main.scss */
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

/* line 1966, app/assets/stylesheets/main.scss */
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

/* line 1972, app/assets/stylesheets/main.scss */
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

/* line 1980, app/assets/stylesheets/main.scss */
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

/* line 1985, app/assets/stylesheets/main.scss */
.testimonials .swiper-wrapper {
  height: auto;
}

/* line 1989, app/assets/stylesheets/main.scss */
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

/* line 1994, app/assets/stylesheets/main.scss */
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

/* line 2001, app/assets/stylesheets/main.scss */
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  /* line 2007, app/assets/stylesheets/main.scss */
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
/* line 2015, app/assets/stylesheets/main.scss */
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

/* line 2022, app/assets/stylesheets/main.scss */
.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

/* line 2034, app/assets/stylesheets/main.scss */
.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

/* line 2039, app/assets/stylesheets/main.scss */
.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

/* line 2043, app/assets/stylesheets/main.scss */
.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  /* line 2048, app/assets/stylesheets/main.scss */
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

/* line 2054, app/assets/stylesheets/main.scss */
.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

/* line 2059, app/assets/stylesheets/main.scss */
.portfolio .portfolio-content img {
  transition: 0.3s;
}

/* line 2063, app/assets/stylesheets/main.scss */
.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

/* line 2073, app/assets/stylesheets/main.scss */
.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

/* line 2082, app/assets/stylesheets/main.scss */
.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* line 2094, app/assets/stylesheets/main.scss */
.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

/* line 2105, app/assets/stylesheets/main.scss */
.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

/* line 2110, app/assets/stylesheets/main.scss */
.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

/* line 2116, app/assets/stylesheets/main.scss */
.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

/* line 2120, app/assets/stylesheets/main.scss */
.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
/* line 2127, app/assets/stylesheets/main.scss */
.team {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1000px;
}

/* line 2132, app/assets/stylesheets/main.scss */
.team .member {
  background: #ffffff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* line 2143, app/assets/stylesheets/main.scss */
.team .member:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* line 2148, app/assets/stylesheets/main.scss */
.team .member .member-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.1;
}

/* line 2154, app/assets/stylesheets/main.scss */
.team .member .member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* line 2161, app/assets/stylesheets/main.scss */
.team .member:hover .member-img img {
  transform: scale(1.05);
}

/* line 2165, app/assets/stylesheets/main.scss */
.team .member .social {
  position: absolute;
  left: 0;
  bottom: -50px;
  right: 0;
  height: 50px;
  background: rgba(152, 130, 87, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: bottom 0.4s ease;
  backdrop-filter: blur(5px);
}

/* line 2179, app/assets/stylesheets/main.scss */
.team .member:hover .social {
  bottom: 0;
}

/* line 2183, app/assets/stylesheets/main.scss */
.team .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  font-size: 20px;
}

/* line 2190, app/assets/stylesheets/main.scss */
.team .member .social a:hover {
  color: #333;
}

/* line 2194, app/assets/stylesheets/main.scss */
.team .member .member-info {
  padding: 25px 20px;
  text-align: center;
}

/* line 2199, app/assets/stylesheets/main.scss */
.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--heading-color);
}

/* line 2206, app/assets/stylesheets/main.scss */
.team .member span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* line 2216, app/assets/stylesheets/main.scss */
.team .member .creci {
  font-size: 11px;
  color: #aaa;
  margin: 0;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* line 2226, app/assets/stylesheets/main.scss */
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

/* line 2232, app/assets/stylesheets/main.scss */
.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

/* line 2247, app/assets/stylesheets/main.scss */
.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

/* line 2255, app/assets/stylesheets/main.scss */
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

/* line 2261, app/assets/stylesheets/main.scss */
.contact .property-form {
  background-color: transparent;
  height: 100%;
  padding: 1.5rem !important;
  border: none !important;
  box-shadow: none;
}

@media (max-width: 575px) {
  /* line 2270, app/assets/stylesheets/main.scss */
  .contact .property-form {
    padding: 20px;
  }
}

/* line 2275, app/assets/stylesheets/main.scss */
.contact .property-form input[type=text],
.contact .property-form input[type=email],
.contact .property-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

/* line 2287, app/assets/stylesheets/main.scss */
.contact .property-form input[type=text]:focus,
.contact .property-form input[type=email]:focus,
.contact .property-form textarea:focus {
  border-color: var(--accent-color);
}

/* line 2293, app/assets/stylesheets/main.scss */
.contact .property-form input[type=text]::placeholder,
.contact .property-form input[type=email]::placeholder,
.contact .property-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/* line 2299, app/assets/stylesheets/main.scss */
.contact .property-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: var(--border-radius);
}

/* line 2308, app/assets/stylesheets/main.scss */
.contact .property-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
/* line 2315, app/assets/stylesheets/main.scss */
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

/* line 2319, app/assets/stylesheets/main.scss */
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

/* line 2324, app/assets/stylesheets/main.scss */
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

/* line 2331, app/assets/stylesheets/main.scss */
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/* line 2335, app/assets/stylesheets/main.scss */
.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

/* line 2341, app/assets/stylesheets/main.scss */
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

/* line 2349, app/assets/stylesheets/main.scss */
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

/* line 2355, app/assets/stylesheets/main.scss */
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

/* line 2359, app/assets/stylesheets/main.scss */
.portfolio-details .portfolio-description {
  padding-top: 30px;
}

/* line 2363, app/assets/stylesheets/main.scss */
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* line 2369, app/assets/stylesheets/main.scss */
.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
/* line 2377, app/assets/stylesheets/main.scss */
.service-details .services-list {
  border-radius: 8px;
  margin-bottom: 20px;
  background-color: var(--bs-border-color);
}

/* line 2383, app/assets/stylesheets/main.scss */
.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

/* line 2393, app/assets/stylesheets/main.scss */
.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

/* line 2399, app/assets/stylesheets/main.scss */
.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

/* line 2403, app/assets/stylesheets/main.scss */
.service-details .services-img {
  margin-bottom: 20px;
}

/* line 2407, app/assets/stylesheets/main.scss */
.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

/* line 2412, app/assets/stylesheets/main.scss */
.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

/* line 2417, app/assets/stylesheets/main.scss */
.service-details p {
  font-size: 15px;
}

/* line 2421, app/assets/stylesheets/main.scss */
.service-details ul {
  list-style: none;
  padding: 30px 31px;
  font-size: 15px;
  border: 0px solid;
}

/* line 2428, app/assets/stylesheets/main.scss */
.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

/* line 2434, app/assets/stylesheets/main.scss */
.service-details ul li strong {
  color: var(--accent-color);
}

/* line 2438, app/assets/stylesheets/main.scss */
.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* line 2447, app/assets/stylesheets/main.scss */
.starter-section {
  /* Add your styles here */
}

/* line 2453, app/assets/stylesheets/main.scss */
.alert-float-center {
  position: fixed;
  top: 130px;
  z-index: 9999;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* line 2461, app/assets/stylesheets/main.scss */
.fade-out {
  opacity: 1;
  animation: fadeOut 1s ease-out 3s forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* line 2476, app/assets/stylesheets/main.scss */
.premium-form .form-control {
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  background: #fafafa;
  font-size: 15px;
  transition: all 0.3s;
}

/* line 2484, app/assets/stylesheets/main.scss */
.premium-form .form-control:focus {
  background: #fff;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(152, 130, 87, 0.1);
}

/* line 2490, app/assets/stylesheets/main.scss */
.premium-form label {
  font-size: 13px;
  color: #888;
}

/* line 2495, app/assets/stylesheets/main.scss */
.btn-submit-premium {
  width: 100%;
  padding: 16px;
  background: var(--heading-color);
  color: var(--accent-color);
  border: none;
  border-radius: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  margin-bottom: 10px;
}

/* line 2509, app/assets/stylesheets/main.scss */
.btn-submit-premium:hover {
  background: #1d2b38;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* line 2515, app/assets/stylesheets/main.scss */
.ts-wrapper .ts-dropdown .option.active {
  background-color: var(--bs-border-color) !important;
}

/* Tom Select Premium Evolution Styles */
/* line 2521, app/assets/stylesheets/main.scss */
.ts-wrapper.form-control {
  padding: 0 !important;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: 12px !important;
  background: transparent !important;
  height: auto !important;
  min-height: 42px;
}

/* line 2530, app/assets/stylesheets/main.scss */
.ts-wrapper .ts-control {
  border: 1px solid #dee2e6 !important;
  border-radius: 12px !important;
  padding: 8px 12px !important;
  background-color: #fafafa !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  min-height: 42px;
}

/* line 2542, app/assets/stylesheets/main.scss */
.ts-wrapper .ts-control input {
  background: var(--bs-border-color) !important;
  color: black !important;
  border-radius: 50px !important;
  padding: 3px 12px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  display: flex !important;
  align-items: center !important;
  border: none !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  width: 28% !important;
  /* Usando !important para sobressair ao Tom Select dinâmico se necessário */
}

/* line 2561, app/assets/stylesheets/main.scss */
.ts-wrapper .ts-control .item {
  background: var(--heading-color) !important;
  color: white !important;
  border-radius: 50px !important;
  padding: 3px 12px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  display: flex !important;
  align-items: center !important;
  border: none !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* line 2573, app/assets/stylesheets/main.scss */
.ts-wrapper .ts-control .item .remove {
  border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
  margin-left: 8px !important;
  padding-left: 8px !important;
  font-size: 14px !important;
  line-height: 1 !important;
  color: white !important;
  opacity: 0.6 !important;
}

/* line 2582, app/assets/stylesheets/main.scss */
.ts-wrapper .ts-control .item .remove:hover {
  opacity: 1 !important;
  background: transparent !important;
}

/* line 2590, app/assets/stylesheets/main.scss */
.ts-wrapper.focus .ts-control {
  background-color: #fff !important;
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 0 4px rgba(152, 130, 87, 0.1) !important;
}

/* line 2596, app/assets/stylesheets/main.scss */
.ts-wrapper .ts-dropdown {
  border: 1px solid #dee2e6 !important;
  border-radius: 12px !important;
  margin-top: 5px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
  background: #fff !important;
  z-index: 1000 !important;
  overflow: hidden !important;
}

/* line 2605, app/assets/stylesheets/main.scss */
.ts-wrapper .ts-dropdown .create {
  padding: 10px 15px !important;
  font-size: 13px !important;
  background: #f8f9fa !important;
  border-bottom: 1px solid #eee !important;
  color: var(--heading-color) !important;
  font-weight: 500 !important;
}

/* line 2613, app/assets/stylesheets/main.scss */
.ts-wrapper .ts-dropdown .create:hover {
  background: #eee !important;
}

/* line 2617, app/assets/stylesheets/main.scss */
.ts-wrapper .ts-dropdown .create strong {
  color: var(--accent-color) !important;
}

/* line 2622, app/assets/stylesheets/main.scss */
.ts-wrapper .ts-dropdown .no-results {
  padding: 15px !important;
  font-size: 13px !important;
  color: #999 !important;
}

/* line 2628, app/assets/stylesheets/main.scss */
.ts-wrapper .ts-dropdown .option {
  padding: 10px 15px !important;
  font-size: 14px !important;
  cursor: pointer !important;
}

/* line 2633, app/assets/stylesheets/main.scss */
.ts-wrapper .ts-dropdown .option.active {
  background-color: var(--accent-color) !important;
  color: white !important;
}

/* Fix for Input Groups - Enhanced */
/* line 2643, app/assets/stylesheets/main.scss */
.input-group .ts-wrapper {
  flex: 1 1 auto;
  width: 1%;
}

/* line 2647, app/assets/stylesheets/main.scss */
.input-group .ts-wrapper .ts-control {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

/* Restoring Horizontal Layout Borders in Site Pages */
/* line 2655, app/assets/stylesheets/main.scss */
.input-group-text {
  background-color: #f8f9fa !important;
  border-color: #dee2e6 !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

/* Hiding original input completely to prevent ghosting */
/* line 2663, app/assets/stylesheets/main.scss */
input[data-controller="tom-select"],
textarea[data-controller="tom-select"] {
  display: none !important;
}

/* Animation Pulse */
/* line 2669, app/assets/stylesheets/main.scss */
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%,
100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

/* Integrations Cards
------------------------------*/
/* line 2686, app/assets/stylesheets/main.scss */
.integration-group-title {
  color: #425975;
  letter-spacing: 0.04em;
  font-size: 0.86rem;
}

/* line 2692, app/assets/stylesheets/main.scss */
.integration-card-visual {
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #d7dde6 !important;
  box-shadow: 0 4px 14px rgba(19, 32, 52, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

/* line 2700, app/assets/stylesheets/main.scss */
.integration-card-visual .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* line 2706, app/assets/stylesheets/main.scss */
.integration-card-visual:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(19, 32, 52, 0.14);
  border-color: #bcc8d8 !important;
}

/* line 2712, app/assets/stylesheets/main.scss */
.integration-icon-wrap {
  width: 42px;
  height: 42px;
  background: linear-gradient(180deg, #f7f9fc 0%, #edf2f8 100%);
  border: 1px solid #dce4ef;
}

/* line 2719, app/assets/stylesheets/main.scss */
.integration-icon {
  font-size: 1rem;
  color: #34495f;
}

/* line 2724, app/assets/stylesheets/main.scss */
.integration-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

/* line 2731, app/assets/stylesheets/main.scss */
.integration-card-title {
  font-size: 1.05rem;
  color: #2c3e50;
  line-height: 1.15;
}

/* line 2737, app/assets/stylesheets/main.scss */
.integration-card-subtitle {
  font-size: 0.78rem;
  line-height: 1.2;
}

/* line 2742, app/assets/stylesheets/main.scss */
.integration-status-badge {
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
}

/* line 2749, app/assets/stylesheets/main.scss */
.integration-summary-wrap {
  background: #f7f9fc;
  border: 1px solid #e3e9f2;
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
  min-height: 48px;
}

/* line 2757, app/assets/stylesheets/main.scss */
.integration-summary {
  font-size: 0.8rem;
  line-height: 1.25;
  color: #53677f !important;
}

/* line 2763, app/assets/stylesheets/main.scss */
.integration-activity-text {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  color: #45607d;
}

/* line 2770, app/assets/stylesheets/main.scss */
.integration-last-updated {
  font-size: 0.75rem;
  color: #6c7f96 !important;
}

/* line 2775, app/assets/stylesheets/main.scss */
.integration-state-badges {
  min-height: 22px;
}

/* line 2779, app/assets/stylesheets/main.scss */
.integration-sub-badge {
  font-size: 0.66rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.28rem 0.52rem;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

/* line 2790, app/assets/stylesheets/main.scss */
.integration-sub-badge-icon {
  font-size: 0.72rem;
  line-height: 1;
}

/* line 2795, app/assets/stylesheets/main.scss */
.integration-sub-badge-warning {
  color: #8a5600;
  background: #fff3cd;
  border-color: #f7d88a;
}

/* line 2801, app/assets/stylesheets/main.scss */
.integration-sub-badge-success {
  color: #0e5f3a;
  background: #d1f3e0;
  border-color: #9cd9bc;
}

/* line 2807, app/assets/stylesheets/main.scss */
.integration-sub-badge-danger {
  color: #842029;
  background: #f8d7da;
  border-color: #efb5bb;
}

/* line 2813, app/assets/stylesheets/main.scss */
.integration-sub-badge-secondary {
  color: #41566e;
  background: #e9eef5;
  border-color: #d2dbe8;
}

/* line 2819, app/assets/stylesheets/main.scss */
.integration-progress-wrap {
  background: #f3f7fb;
  border: 1px solid #dfe7f2;
  border-radius: 10px;
  padding: 0.4rem 0.55rem;
}

/* line 2826, app/assets/stylesheets/main.scss */
.integration-progress-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #5a6f88;
  letter-spacing: 0.01em;
}

/* line 2833, app/assets/stylesheets/main.scss */
.integration-progress-bar {
  height: 8px;
  background: #dbe5f2;
}

/* line 2838, app/assets/stylesheets/main.scss */
.integration-progress-bar .progress-bar {
  background: linear-gradient(90deg, #3f7cc6 0%, #58a0e8 100%);
}

/* line 2842, app/assets/stylesheets/main.scss */
.integration-config-modal {
  z-index: 100002 !important;
}

/* line 2846, app/assets/stylesheets/main.scss */
.integration-advanced-fields {
  border: 1px solid #dbe4f0;
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  background: #f8fbff;
}

/* line 2853, app/assets/stylesheets/main.scss */
.integration-advanced-summary {
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  color: #3f5772;
}

/* line 2860, app/assets/stylesheets/main.scss */
.integration-setup-guide {
  border: 1px solid #d9e5f4;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  background: #f7fbff;
}

/* line 2867, app/assets/stylesheets/main.scss */
.integration-setup-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: #2f4a67;
  margin-bottom: 0.2rem;
}

/* line 2874, app/assets/stylesheets/main.scss */
.integration-setup-subtitle {
  font-size: 0.76rem;
  color: #5b718a;
  margin-bottom: 0.55rem;
}

/* line 2880, app/assets/stylesheets/main.scss */
.integration-setup-steps {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* line 2886, app/assets/stylesheets/main.scss */
.integration-setup-step {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: #47607b;
}

/* line 2894, app/assets/stylesheets/main.scss */
.integration-setup-step i {
  color: #7a8fa8;
}

/* line 2898, app/assets/stylesheets/main.scss */
.integration-setup-step.is-done i {
  color: #198754;
}
