@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;700&display=swap");

/* ============================================
   VARIABLES CSS
   ============================================ */
:root {
  /* Colores principales */
  --primary-blue: #003363;
  --primary-green: #235836;
  --accent-green: #27ae60;
  --light-green: #58d68d;
  --success-green: #07db50;
  --bright-green: #00dc8f;
  --nature-green: #4a7c59;

  /* Colores secundarios */
  --white: #ffffff;
  --black: #000000;
  --gray-light: #f8f9fa;
  --gray-medium: #8e8e8e;
  --gray-dark: #4a5568;
  --gray-darker: #2d3748;
  --text-muted: #5d6d7e;

  /* Colores de acento */
  --red: #ff0000;
  --blue-accent: #3f51b5;
  --cyan: #03a9f4;
  --dark-blue: #1b4f72;

  /* Fuentes */
  --font-primary: "Open Sans", Helvetica, Arial, sans-serif;
  --font-heading: "Montserrat", sans-serif;
  --font-accent: "Poppins", sans-serif;

  /* Espaciado */
  --spacing-xs: 10px;
  --spacing-sm: 15px;
  --spacing-md: 20px;
  --spacing-lg: 30px;
  --spacing-xl: 40px;
  --spacing-xxl: 70px;

  /* Transiciones */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.5s ease;

  /* Sombras */
  --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 25px 50px rgba(39, 174, 96, 0.15);
  --shadow-dark: 0 0 20px rgba(0, 0, 0, 0.25);

  /* Bordes */
  --border-radius: 8px;
  --border-radius-sm: 5px;
  --border-radius-lg: 15px;
  --border-radius-xl: 20px;
  --border-radius-full: 50px;
}

/* ============================================
     RESET Y BASE
     ============================================ */
html,
body {
  position: relative;
  font: 16px/30px var(--font-primary);
  scrollbar-width: thin;
  scrollbar-color: var(--primary-green);
}

/* ::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--primary-green);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
} */

body.none {
  overflow: hidden;
}

/* ============================================
     ANIMACIONES
     ============================================ */
@keyframes phoneVibrate {
  0%,
  100% {
    transform: translateX(0);
  }

  10% {
    transform: translateX(-3px) rotate(-1deg);
  }

  20% {
    transform: translateX(3px) rotate(1deg);
  }

  30% {
    transform: translateX(-3px) rotate(-1deg);
  }

  40% {
    transform: translateX(3px) rotate(1deg);
  }

  50% {
    transform: translateX(-2px) rotate(-0.5deg);
  }

  60% {
    transform: translateX(2px) rotate(0.5deg);
  }

  70% {
    transform: translateX(-1px) rotate(-0.5deg);
  }

  80% {
    transform: translateX(1px) rotate(0.5deg);
  }

  90% {
    transform: translateX(-1px);
  }
}

/* ============================================
     TIPOGRAFÍA
     ============================================ */
h1 {
  font-weight: 100;
  font-size: 3em;
  margin: 0;
  padding: 0.2em 0 0.5em;
  letter-spacing: -0.01em;
}

h2 {
  font-weight: 100;
  font-size: 3em;
  margin: 0;
  padding: 0.2em 0 0.4em;
}

h3 {
  font-weight: 100;
  font-size: 1.6em;
  line-height: 1.6em;
  margin: 0;
  padding: 0.2em 0 1.2em;
}

h4 {
  font: normal 1.5em/1.5em var(--font-heading);
  text-transform: uppercase;
  padding: 0.4em 0 0.7em;
  margin: 0;
}

.text-1 {
  font-style: italic;
  font-weight: 100;
  font-size: 25px;
  line-height: 40px;
}

.text-color {
  color: var(--red);
}

p.text-color {
  font-size: 16px;
  color: var(--gray-medium);
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-green);
  padding: 0;
}

.highlight-text {
  color: var(--nature-green);
  font-weight: 600;
}

/* ============================================
     COLORES DE FONDO
     ============================================ */
.bg-blue {
  background-color: var(--primary-blue);
  color: var(--white);
}

.bg-green {
  background-color: var(--primary-green);
  color: var(--white);
}

.bg-white {
  padding-top: var(--spacing-xxl);
  padding-bottom: var(--spacing-xxl);
}

.transparent {
  background-color: transparent;
}

/* ============================================
  NAVEGACIÓN
  ============================================ */
#navbar-desktop {
  display: none;
  position: sticky;
  top: 0;
  z-index: 2;
  width: 100%;
  padding: 10px 0;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}

.stuck_container {
  margin: 0px auto;
}

.stuck_container .logo {
  margin: 0;
  padding: 0;
  line-height: 1em;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: normal;
  font-size: 1em;
  color: #fff;
  text-decoration: none;
  letter-spacing: -1.9px;
}

.nav-option {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--spacing-md);
}

.nav-option a {
  position: relative;
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--white);
  display: inline-block;
  text-decoration: none;
}

.isStuck {
  background-color: rgba(0, 0, 0, 0.5);
  padding-top: var(--spacing-md);
  padding-bottom: var(--spacing-md);
}

#navbar-hidden-web {
  width: 100%;
  background-color: var(--primary-blue);
  z-index: 3;
  position: sticky;
  top: 0;
}

#navbar-hidden-web ul li {
  padding: 0 20px;
}

#navbar-hidden-web .navHeaderCollapse > ul > li > a,
#navbar-hidden-web .navHeaderCollapse > ul > li > div > a {
  color: #fff;
  text-decoration: none;
}

.dropdown-menu li a {
  color: var(--primary-blue);
  text-decoration: none;
}

.navbar-inverse .navbar-brand {
  font-family: var(--font-heading);
  font-weight: bold;
}

.navbar-toggle {
  background: transparent;
  border: none;
  padding: 4px 6px;
  cursor: pointer;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--white);
  border-radius: 1px;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
  margin: 4px 0;
}

.navbar-toggle.collapsed .icon-bar:nth-child(1) {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
}

.navbar-toggle.collapsed .icon-bar:nth-child(2) {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
}

.navbar-toggle.collapsed .icon-bar:nth-child(3) {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
}

.navbar-toggle:not(.collapsed) .icon-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.navbar-toggle:not(.collapsed) .icon-bar:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.navbar-toggle:not(.collapsed) .icon-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.navbar-toggle:hover .icon-bar {
  background-color: var(--white);
}
.navbar-toggle .icon-bar {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.3s ease, background-color 0.2s ease;
}

#navbar-desktop.navbar-fixed-top {
  background: rgb(0 0 0 /0.5);
  backdrop-filter: blur(10px);
  padding: 10px 0;
}

.links {
  position: relative;
}

.links .sublinks {
  display: none;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  color: var(--primary-blue);
  padding: 20px 10px;
  border-radius: 5px;
  max-width: 300px;
  width: 300px;
  text-align: start;
  list-style: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sublinks li {
  margin-bottom: 10px;
}

.sublinks li:last-of-type {
  margin-bottom: 0;
}

.links .sublinks a {
  color: var(--primary-blue);
  width: 100%;
}

.links .sublinks a::before {
  background-color: var(--primary-blue);
}

.links:hover .sublinks,
.sublinks:hover {
  display: block;
}

/* ============================================
  FOOTER
  ============================================ */

.footer-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  padding: 0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #b8d4c2;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-section ul li a::before,
.nav-option a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: #ffffff;
  transition: width 0.3s ease;
}

.footer-section ul li a:hover::before,
.nav-option a:hover::before,
.nav-option a.active::before {
  width: 100%;
}

.company-section {
  text-align: left;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-bottom: 20px;
}

.logo-footer {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-footer::before {
  content: "LM";
  font-size: 24px;
  font-weight: bold;
  color: #2d5016;
}

.company-name {
  font-size: 20px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

.company-description {
  color: #b8d4c2;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 16px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info {
  color: #b8d4c2;
  line-height: 1.8;
  font-size: 16px;
}

.contact-info strong {
  color: white;
  display: block;
  margin-bottom: 5px;
}

.contact-info a {
  color: #b8d4c2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 30px;
  padding-bottom: 30px;
  align-items: center;
}

.footer-bottom a {
  color: #b8d4c2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: white;
}

/* ============================================
  BANNER Y BREADCRUMB
  ============================================ */
.banner-area {
  position: relative;
  background-image: url(../images/home/we-re-ready-to-make-your-landscaping-dreams-come-true.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  color: var(--white);
}

.banner-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.breadcrumb-banner {
  --bg-image: url(../images/banners/banner.webp);
  background: var(--bg-image);
  background-size: cover;
  background-position: center;
  padding: 60px 0 !important;
  color: var(--white);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: var(--font-heading);
}

@media (min-width: 992px) {
  .breadcrumb-banner {
    margin-top: -132px;
    padding: 185px 0 80px !important;
  }
}

.breadcrumb-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
}

.breadcrumb-title {
  line-height: 1em;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: normal;
  font-size: 3rem;
  letter-spacing: -1.9px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 1.1rem;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.breadcrumb-nav a:hover {
  color: var(--light-green);
}

.breadcrumb-nav .separator {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.breadcrumb-nav .current {
  color: var(--light-green);
  font-weight: 600;
}

/* ============================================
  SERVICIOS
============================================ */
.services {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.services img {
  width: 100px;
  border: 2px solid var(--primary-green);
  border-radius: 100%;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-xl) var(--spacing-lg);
  text-align: center;
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(39, 174, 96, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: var(--primary-blue);
  transition: left var(--transition-slow);
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-green);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-blue);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all var(--transition-medium);
  position: relative;
}

.service-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-full);
  background: var(--primary-blue);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.service-card:hover .service-icon::after {
  opacity: 1;
}

.service-icon img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  filter: brightness(0) invert(1);
}

.service-title {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: var(--spacing-sm);
  transition: color var(--transition-fast);
}

.service-card:hover .service-title {
  color: var(--primary-green);
}

.service-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
}

.service-btn {
  background: var(--primary-green);
  color: var(--white);
  padding: 12px var(--spacing-lg);
  border: none;
  border-radius: var(--border-radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.service-btn:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 79, 114, 0.3);
}

/* V2 */

.service-card-v2 {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.service-card-v2:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

.service-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  text-align: center;
  height: calc(100% - 200px);
}

.icon-container {
  width: 80px;
  height: 80px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -50px auto 20px;
  box-shadow: 0 5px 15px rgba(30, 74, 102, 0.3);
  position: relative;
  z-index: 2;
}

.icon {
  width: 100%;
  filter: brightness(0) invert(1);
}

.service-card-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-card-description {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-card-read-more-btn {
  background: var(--primary-green);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.service-card-read-more-btn:hover {
  background: var(--primary-blue);
}

/* ============================================
  ABOUT US
  ============================================ */
.story-content {
  padding: var(--spacing-xl) var(--spacing-md);
  border-radius: var(--spacing-sm);
  position: relative;
}

.story-title {
  font-size: 1.8rem;
  color: var(--gray-darker);
  font-weight: 600;
}

.story-text {
  font-size: 1.1rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

/* ============================================
  IMÁGENES Y MEDIA
  ============================================ */
img.logo-sysall {
  border-radius: 100%;
  width: 50%;
}

.google-map-api,
.gmap {
  min-height: 500px;
}

.reviews-icons img {
  border-radius: var(--spacing-xs);
}

a.reviews-icons img {
  width: 100%;
  margin-bottom: var(--spacing-md);
}

.map {
  position: relative;
}

.map::after {
  content: "";
  position: absolute;
  background: url(../images/lamora_logo_transparent.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100px;
  height: 100px;
  left: var(--spacing-sm);
  bottom: var(--spacing-sm);
}

.map_img {
  object-fit: cover;
  object-position: center;
  width: 100%;
}

/* ============================================
  CONTACT US
  ============================================ */
.contact-card {
  border-radius: 20px 20px 0 0;
  padding: 20px 35px;
  height: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border-bottom: 5px solid var(--primary-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
  margin: 0 auto;
  padding: 5px;
  border: 3px solid var(--primary-green);
}

.contact-card-icon svg {
  width: 100%;
  height: 100%;
  padding: 10px;
  background: var(--primary-green);
}

.contact-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 30px;
  text-align: center;
}

.contact-card-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2c5f41;
  margin-bottom: 15px;
  padding-bottom: 0;
  line-height: 1.3;
}

.contact-card-content p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.invert.contact-card {
  border-color: var(--primary-blue) !important;
}

.invert .contact-card-icon {
  border-color: var(--primary-blue);
}

.invert .contact-card-icon svg {
  background: var(--primary-blue);
}

.invert .contact-card-content h3 {
  color: var(--primary-blue);
}

/* ============================================
  BOTONES
  ============================================ */
.btn-default.btn3.btn-submit {
  background-color: var(--primary-green);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-lg);
  font-weight: 700;
}

.theme-btn.btn {
  padding: var(--spacing-xs) var(--spacing-lg);
  background-color: var(--primary-green);
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--white);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-btn.invert {
  background-color: var(--white);
  color: var(--primary-green);
}

.theme-btn.btn:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-action {
  background-color: var(--primary-green);
  font-size: var(--spacing-xxl);
  width: 120px;
  height: 120px;
  border-radius: 100%;
  color: var(--white);
  animation: phoneVibrate 0.6s ease-in-out infinite;
}

.btn-action:hover {
  background-color: var(--white);
  color: var(--primary-green);
}

/* ============================================
Reviews
============================================ */

.review-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 35px;
  position: relative;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06); */
  transition: all 0.4s ease;
  border-left: 5px solid transparent;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.review-platform {
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: bold;
  color: var(--white);
  font-size: 18px;
}

.reviewer-info h4 {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 5px;
  padding: 0;
}

.stars {
  display: flex;
  gap: 3px;
}

.star {
  color: #ffd700;
  font-size: 16px;
}

.review-text {
  color: #5d6d7e;
  line-height: 1.7;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  height: 165px;
  overflow-y: overlay;
}

.review-text::before {
  content: '"';
  font-size: 60px;
  color: #27ae60;
  position: absolute;
  left: -10px;
  top: -20px;
  font-family: serif;
  opacity: 0.3;
}

.reviews-cta {
  text-align: center;
  margin-top: 50px;
}

/* ============================================
Portafolio
============================================ */

.showcase-item {
  position: relative;
  display: block;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.marco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #aeabab;
  opacity: 0.9;
  width: 90%;
  height: 90%;
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover .marco {
  opacity: 1;
  width: 100%;
  height: 100%;
}

.showcase-item:hover .showcase-image {
  transform: scale(1.08);
  filter: brightness(0.6);
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 60px 40px 40px;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover .showcase-overlay {
  transform: translateY(0);
}

.showcase-title {
  color: white;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.showcase-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
     UTILIDADES
     ============================================ */
.slogan {
  display: none;
}

.new-content {
  text-align: right;
}

.invert {
  border-color: var(--primary-green) !important;
}

.image-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.icon-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  font-size: 100px;
  padding: 10px;
  border-radius: 100%;
  margin: 0 auto;
  background: rgb(0 0 0 / 0.3);
  margin-bottom: 10px;
}

.section-special {
  padding-top: 50px !important;
}

.section-special > .container {
  /* border: 15px solid #fff; */
  border-radius: 20px;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.06);
}

.section-special .bg-style {
  border-radius: 20px;
  overflow: hidden;
}

.section-special + .footer {
  padding-top: 200px !important;
}

.slider-header .camera_wrap {
  height: 100vh;
}

@media (min-width: 992px) {
  .slider-header {
    margin-top: -113px;
    height: 100vh;
  }
}

/* @media (min-width: 2000px) {
  .slider-header {
    margin-top: -140px;
    height: 80vh;
  }
} */

#rev_slider_24_1_forcefullwidth {
  height: 100% !important;
}

.blockquote {
  background-color: #f8f9fa;
  border-left: 4px solid var(--primary-green);
  margin: 20px 0;
  padding: 20px 30px;
  position: relative;
  font-style: italic;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blockquote p {
  margin: 0 0 15px 0;
  font-size: 18px;
  color: var(--primary-green);
  line-height: 1.7;
}

.blockquote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--primary-green);
  font-size: 14px;
  text-align: right;
  margin-top: 10px;
}

.widget-section {
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  height: 100%;
  box-shadow: 0 8px 32px rgba(35, 88, 54, 0.1);
  border: 1px solid rgba(35, 88, 54, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.widget-title {
  color: #235836;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px;
}

.widget-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-list li {
  text-align: start;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.widget-list li a {
  color: #495057;
  text-decoration: none;
  /* padding: 12px 16px; */
  display: block;
  /* border-radius: 10px; */
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.widget-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: width 0.3s ease;
}

.widget-list li a:hover::before,
.widget-list li.active a::before {
  width: 100%;
}

.widget-list li a:hover,
.widget-list li.active a {
  color: #235836;
}

.la-mora {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: calc(2rem + 1vw);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  padding: 0;
}

.la-mora .first-letter {
  font-size: 1.5em;
}

.landscaping {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin: 0;
  padding: 0;
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 0;
  margin-bottom: 0 !important;
  transition: all 0.3s ease;
}

.icon-custom-contact {
  color: #235836 !important;
  background: rgba(35, 88, 54, 0.1);
  padding: 12px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item a {
  color: #495057;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #235836;
}

.social-list {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-list li a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-green);
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(35, 88, 54, 0.2);
}

.social-list li a:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.service-areas .widget-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
}

.service-areas .widget-list li {
  margin-bottom: 0;
}

.service-areas .widget-list li a {
  padding: 8px 16px;
  background: rgba(35, 88, 54, 0.05);
  color: #235836;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  border: 1px solid rgba(35, 88, 54, 0.1);
}

.service-areas .widget-list li a:hover {
  background: transparent;
  color: var(--primary-green);
  border-radius: 0;
  border-color: transparent;
}

.widget-description {
  color: #6c757d;
  margin-bottom: 20px;
  font-style: italic;
}

hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #235836, transparent);
  margin: 10px 0;
}

.radius-20 {
  border-radius: 16px;
}

section {
  padding: 120px 0 !important;
  overflow: hidden;
}

section.new-footer {
  display: none;
}

section.bg-green {
  padding-bottom: 80px;
}

a.links {
  color: var(--white);
}

.bg-white ul li {
  margin-top: var(--spacing-xs);
  margin-bottom: var(--spacing-xs);
  padding-bottom: var(--spacing-xs);
}

.splide__arrow {
  top: 10%;
}

div#fixed-contact {
  display: none;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: #4a7c59;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title {
  position: relative;
  font-size: 2.5rem;
  color: #2d3748;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--primary-green);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-title.start::after {
  left: 0;
  transform: translateX(0);
}

.section-title.end::after {
  right: 0;
  left: initial;
  transform: none;
}

.section-description {
  font-size: 1.2rem;
  color: #718096;
  margin: 0 auto;
  line-height: 1.7;
}

.bg-green:not(.transparent) .section-subtitle {
  color: #86efac;
}

.bg-green:not(.transparent) .section-title {
  color: #ffffff;
}

.bg-green:not(.transparent) .section-title::after {
  background: #86efac;
}

.bg-blue:not(.transparent) .section-subtitle {
  color: #7dd3fc;
}

.bg-blue:not(.transparent) .section-title {
  color: #ffffff;
}

.bg-blue:not(.transparent) .section-title::after {
  background: #7dd3fc;
}

/* ============================================
  RESPONSIVE DESIGN
============================================ */

.tp-title {
  font-size: 1.2rem !important;
  letter-spacing: 0 !important;
  line-height: initial !important;
}

.tp-title br {
  display: none !important;
}

@media (min-width: 576px) {
  .img-center-custom {
    width: 80%;
  }
  .img-top {
    position: absolute;
    top: 0;
  }
  .img-bottom {
    position: absolute;
    bottom: 0;
  }
  .img-left {
    position: absolute;
    left: 0;
  }
  .img-right {
    position: absolute;
    right: 0;
  }
  .content-img {
    border-radius: 12px;
    border: var(--spacing-sm) solid var(--primary-blue);
  }

  .tp-title {
    font-size: 2rem !important;
    letter-spacing: 0 !important;
    line-height: initial !important;
  }

  .tp-title br {
    display: block !important;
  }
}

@media (min-width: 768px) {
  .tp-title {
    font-size: 2.6rem !important;
  }
}

@media (min-width: 992px) {
  .img-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .stuck_container .logo {
    font-size: 1.4em;
  }

  #navbar-desktop {
    display: block;
    height: 113px;
  }

  #navbar-hidden-web {
    display: none;
  }
}

@media (min-width: 1200px) {
  .stuck_container .logo {
    font-size: 1.75em;
  }
  .tp-title {
    font-size: 4rem !important;
  }
}

@media (min-width: 1400px) {
  .tp-title {
    font-size: 5.5rem !important;
    line-height: 95px !important;
  }
}

.metric-card {
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: end;
}

.metric-icon {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 0.3);
  border: 4px solid #fff;
  transition: transform 0.3s ease;
}

.metric-icon svg {
  --box-icon: 50px;
  width: var(--box-icon);
  height: var(--box-icon);
}

.metric-value {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}

.metric-label {
  font-size: 1.125rem;
  color: #b1b1b1;
  font-weight: 500;
  margin-bottom: 16px;
}

.bg-blue .metric-label {
  color: #7dd3fc;
}

.bg-green .metric-label {
  color: #86efac;
}

.bg-custom {
  position: relative;
  background: url(../images/home/years-of-experience.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@supports (-webkit-touch-callout: none) {
  .bg-custom,
  .banner-area {
    background-attachment: scroll;
  }
}

.bg-custom:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 /0.7);
}

#show-dropdown {
  color: #fff;
}

/* Comparation */

div.juxtapose {
  position: relative;
  border-radius: 12px;
  border: 7px solid var(--primary-green);
  margin: 0 auto;
  max-width: 500px;
  z-index: 1;
  width: 100% !important;
  height: 350px !important;
}

@media (min-width: 576px) {
  div.juxtapose {
    height: 500px !important;
  }
}

div.jx-slider {
  border-radius: 5px;
}

div.juxtapose div.jx-controller,
div.juxtapose div.jx-control {
  background-color: var(--primary-green);
}

.slider-comparation .slider-new,
div.jx-controller {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: absolute;
  width: 1px;
  margin-left: 0;
  cursor: pointer;
  z-index: 3;
  transition: opacity 0.5s ease;
}

.slider-comparation .slider-new #circle {
  position: absolute;
  display: flex;
  align-items: center;
  width: 50px;
  height: 50px;
  justify-content: space-between;
  padding: 5px;
  border: 2px solid rgb(255 255 255 / 0.4);
  border-radius: 50%;
  background: var(--primary-green);
}

.slider-comparation .after,
.slider-comparation .before,
div.jx-image div.jx-label {
  position: absolute;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  top: 50%;
  transform: translateY(-50%);
  background: #1b1b1b90;
  border: 1px solid rgb(255 255 255 / 0.4);
  color: #fff !important;
  line-height: 38px;
  padding: 0 20px;
  border-radius: 2px;
  transition: top 0.5s ease;
}

.slider-comparation .before,
div.jx-image.jx-left div.jx-label {
  left: 10px;
}

.slider-comparation .after,
div.jx-image.jx-right div.jx-label {
  right: 10px;
}

.jx-knightlab {
  display: none !important;
}

.mxw-150 {
  width: 100px !important;
  max-width: 150px !important;
  height: 100px !important;
}

.contain-elements-slides {
  display: flex !important;
  /* flex-direction: column !important; */
  gap: 20px;
  align-items: center;
}

@media (min-width: 992px) {
  .contain-elements-slides {
    /* flex-direction: row !important; */
  }
}

.button-slider {
  padding: 0 20px !important;
  white-space: nowrap;
  font-size: 18px;
  line-height: 60px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  font-family: Open Sans;
  background-color: #235836;
  border-color: rgba(0, 0, 0, 1);
  border-radius: 30px 30px 30px 30px;
  outline: none;
  box-shadow: none;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
}
img.img_top {
    position: relative;
    margin-top: 70%;
}
img.img_bottom {
    position: relative;
    margin-bottom: 75%;
}
img.img_ssl {
    border-radius: 100%;
}
.content_ssl {
    position: relative;
    top: 10px;
}
.rounded-16 {
  border-radius: 16px !important;
}
.img-center-custom {
  position: relative; /* contenedor relativo para que el hijo absoluto se posicione dentro */
}

.content_google {
  position: absolute;
  bottom: 10px; /* ajusta según lo cerca que quieras */
  right: 10px;  /* ajusta según lo cerca que quieras */
}
img.logo_veri_why {
    border-radius: 100%;
    width: 180px;
}
/* NEW REVIEWS DESING */

.review-card-new {
  background: white;
  border-radius: 20px;
  width: 100%;
  padding: 0px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgb(0 0 0 / 25%);
  position: relative;
  margin-bottom: 60px;
}
.review-card-new .stars {
    display: inline-block;
}
.banner-card-new {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner-card-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-card-new::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.2));
}

.type-logo-new {
  position: relative;
  width: 60px;
  height: 60px;
  margin: -31px auto 0;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.type-logo-new img {
  width: 40px !important;
  height: 40px !important;
}

.content-new {
  padding: 10px 20px 20px;
  text-align: center;
}

.name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.stars {
  color: #fbbc05;
  font-size: 20px;
  margin-bottom: 12px;
}

.review-new {
  color: #444;
  font-size: 13pt;
  line-height: 1.6;
  margin-bottom: 20px;
  height: 120px;
  overflow: overlay;
  text-align: left;
}
img.review-platform {
  margin: auto;
}
.img-top {
    top: 80px;
}
.img-center-custom-new {
    left: 0%;
    position: relative;
    top: 22%;
}
.img-bottom-new {
    position: absolute;
    top: 60%;
}
.img-bottom-home {
    position: absolute;
    top: 70%;
}


@keyframes coinFlip {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.coin-flip {
  animation: coinFlip 2s linear 1 forwards;
  transform-style: preserve-3d;
  backface-visibility: visible;
}

.perspective-wrapper {
  perspective: 1000px;
}
img.img_reviews_page {
    width: 100%;
    margin-bottom: 15px;
  }

@media (max-width: 991px) {
  .img-center-custom-new {
    left: 0%;
    position: relative;
    top: 0;
  }
  img.img_reviews_page {
    width: 100%;
    margin-bottom: 15px;
  }
  .img-center-custom-new {
      left: 0%;
      position: relative;
      top: 0%;
  }
  .content-text-about {
    margin-top: 65px;
  }
  .rev-btn {
    margin-top: 30px !important;
  }
}

@media (max-width: 992px) {
  .img-center-custom-new {
    left: 0%;
    position: relative;
    top: 16%;
  }

  .img-bottom-new {
    position: absolute;
    top: 35%;
  }
  .img-bottom-home {
    position: absolute;
    top: 50%;
  }
}