/**
* Template Name: FlexStart
* Template URL: https://bootstrapmade.com/flexstart-bootstrap-startup-template/
* Updated: Nov 01 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
/*:root {
  --default-font: "Montserrat",  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: "Nunito",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}*/

:root {
  --default-font: "Montserrat", sans-serif;
  --heading-font: "Rubik", sans-serif;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# BOTON WATTSAP
--------------------------------------------------------------*/
       /* Botón flotante de WhatsApp */
       .whatsapp-button {
        position: fixed;
        bottom: 70px;
        right: 13px;
        width: 50px;
        height: 50px;
        background-color: #25D366;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        text-decoration: none;
        font-size: 30px;
        z-index: 9999;
        transition: transform 0.2s ease, background 0.3s ease;
     }

      /* Efecto hover */
      .whatsapp-button:hover {
          background-color: #1ebe5d;
          transform: scale(1.1);
      }

      /* Icono dentro del botón */
      .whatsapp-button img {
          width: 30px;
          height: 30px;
      }




/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: rgba(255, 255, 255, 0.9);  /* TRANSPARECNCIA DE MENU */
  padding: 15px 0;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  
}

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

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: #283F2B;
  font-size: 15px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {

}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop   >= 1200px*/
@media (min-width: 992px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    font-family: var(--heading-font);
    color: #282727;
    padding: 18px 12px;
    font-size: 16px;    
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

 
/* === EFECTO SUBTITULO ======*/



}

/* Navmenu - Mobile  <= 1199px */
@media (max-width: 991px) {
    
  .navmenu {
    margin-top: 1rem;
    }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: .7rem 1rem 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
  
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/


.footer {
  color: #fff;
  background-color: #283F2B;
  border-top: 1px solid rgba(250,250,250,0.15);
  font-size: 14px;
  text-align: center;
  padding: 50px 10px;
  position: relative;
  
}

.footer .footer-top {
  padding-top: 10px;

}

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

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: #5e8463;
  border: 1px solid #5e8463;
}

.footer h4 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #FFF;
}


.footer .footer-escribenos {
  margin-bottom: 30px;
  text-align: center;
}

.footer .footer-escribenos ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center; /* Esto centra todos los <li> dentro del ul */
}

.footer .footer-escribenos ul i {
  margin-right: 15px;
  font-size: 1.5rem;
  line-height: 0;
  color: #fff;
}

.footer .footer-escribenos ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  
}

.footer .footer-escribenos ul li:first-child {
  padding-top: 0;
}

.footer .footer-escribenos ul a {
  display: inline-block;
  color: #FFF;
  line-height: 1;
  text-align: left; /* Asegura que el texto del link esté alineado con el icono */
}

.footer .footer-escribenos ul a:hover {
  color: #5e8463;
}


.footer .footer-links {
  margin-bottom: 30px;
  padding-left: 5%;
  text-align: center;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center; /* Esto centra todos los <li> dentro del ul */
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 1rem;
  line-height: 0;
  color: #5e8463;
}

.footer .footer-links ul a {
  display: inline-block;
  color: #FFF;
  line-height: 1;
  text-align: left; /* Asegura que el texto del link esté alineado con el icono */
}

.footer .footer-links ul a:hover {
  color: #5e8463;
}


.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  text-align: justify;
  font-size: .75rem;
}

.footer .redes {
  margin-bottom: 5px;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  max-height: 100%;
  overflow: hidden;  
  padding: 0 0;  
  background: #EFE9E4;
}

#bg-video {
  min-width: 100%;
  min-height: 100vh;
  max-width: 100%;
  max-height: 100vh;
  object-fit: cover;
  z-index: -1;
}

#bg-video::-webkit-media-controls {
  display: none !important;
}

/* Ocultar controles en iOS cuando se muestran */
#bg-video[controls] {
  pointer-events: none;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# FORMULARIO FLOTANTE
--------------------------------------------------------------*/

.hero .floating-form {
  position: absolute;
  top: 60%;
  right: 50%;
  width: 70%;
  transform: translate(50%, -50%);
  background-color: rgba(0, 0, 0, 0.8); /* Transparencia */
  padding: 1.7rem;    
  color: white;
  border-radius: 5px;
  z-index: 10;
}

.hero .floating-form h2 {
  font-size: 1rem;
  font-weight: 100;
  text-align: center;
  margin-bottom: 1.3rem;
  color: #fff;
}

.hero .form-flotante .etiqueta-flotante {
  position: relative;
  margin-bottom: 1.2rem;  
}

.hero .form-flotante .etiqueta-flotante label {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
  font-size: .7rem;
  color: #282727;
  transition: all 0.3s ease;
  pointer-events: none;
  
}

.hero .form-flotante .etiqueta-flotante .form-control {
  width: 100%;
  padding: 8px 8px;
  border: 1px solid #858484;
  border-width: 0.5px;  
  font-size: .8rem;
  color: #282727;
  background-color: #fff;
  transition: all 0.3s ease;
  outline: none;
  height: auto;
  border-radius: 3px;
}

.hero .form-flotante .etiqueta-flotante .form-control:focus,
.etiqueta-flotante .form-control:not(:placeholder-shown) {
  border-color:#fff;
  border-width: 0.5px; /* Grosor del borde más delgado */
  box-shadow: 0 0 7px rgb(40, 63, 43, 0.5);  
}

/* Cuando el input está enfocado, tiene texto o es válido */
.hero .form-flotante .etiqueta-flotante .form-control:focus + label,
.etiqueta-flotante .form-control:not(:placeholder-shown) + label {
    top: -3px;
    left: 20px;
    font-size: .6rem;
    color: #fff;
    background: rgba(22, 21, 21, 0.9); /* Fondo siempre que suba (con texto o focus) */
    padding: 0 5px;
    border-radius: 3px;
}


/* Estilos para el select */
.hero .form-flotante .etiqueta-flotante select.form-control {
  appearance: none;
  background-color: #fff; /* Fondo blanco */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23283F2B'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  padding-right: 35px;
  border: 1px solid #fff; /* Opcional: borde para mejor visibilidad */
  color: #282727;
}


.hero .form-flotante button[type="submit"] {
  background: #283F2B;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.hero .form-flotante button[type="submit"]:hover {
  background: #2a3e2c;
}

.hero .form-flotante .custom-checkbox {
  margin-bottom: 1rem;
  font-size: .6rem;
}

/*============== sm: ≥576px ======================= */
@media (min-width: 576px) {

  .hero .floating-form {    
    top: 70%;
    right: 50%;
    width: 55%;
  }

  .hero .form-flotante .custom-checkbox {
    font-size: .8rem;
  }
}

/*============== md: ≥768px ======================= */
@media (min-width: 768px) {

  .hero .floating-form {    
    top: 70%;
    right: 50%;
    width: 45%;    
  }
}

/*============== lg: ≥992px ======================= */
@media (min-width: 992px) {

  .hero .floating-form {    
    top: 50%;
    right: 18%;
    width: 30%;       
  }
}

/*============== xl: ≥1200px ======================= */
@media (min-width: 1200px) {

  .hero .floating-form {    
    top: 55%;
    right: 15%;
    width: 23%;    
  }
}


/*============== xl: ≥1400px ======================= */
@media (min-width: 1400px) {

  .hero .floating-form {    
    top: 50%;
    right: 13%;
    width: 19%;    
  }
}


/*--------------------------------------------------------------
# NUESTROS PROYECTOS
--------------------------------------------------------------*/
/* Estilos base (mobile-first, xs: <576px) */

.section-nuestros-proyectos{
  text-align: center;
  color: #283F2B;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 1rem;
}

.nuestros-proyectos {
  background: #EFE9E4;
  padding: 2rem 0;
}

.nuestros-proyectos .item {
  position: relative;
  background: #fff;  
  box-shadow: 3px 4px 5px rgba(107, 107, 107, 0.3);
  overflow: hidden;
  border-radius: 10px;  
  width: 100%;  
  padding-bottom: 1rem;
  z-index: 1; /* Asegura que las tarjetas estén detrás de los controles */
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.nuestros-proyectos .owl-stage-outer{
  border-right: 3rem;
}

.nuestros-proyectos img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* rellena el espacio sin distorsión */  
  transition: transform 0.4s ease-in-out;
}

.nuestros-proyectos .item .post-etiqueta {
  position: absolute; 
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #283F2B;
  color:#FFF;
  text-transform: uppercase;
  font-size: .7rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 6px 12px;
  font-weight: 500;
}

.nuestros-proyectos img:hover {
  transform: scale(1.05);
}

.nuestros-proyectos .informacion {
  background: #fff;
  padding: .5rem 1rem;
  
}

.nuestros-proyectos .informacion .title-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: hsla(128, 22%, 20%, 1);
  padding: 10px;
  text-align: center;  
  z-index: 2;
}

.nuestros-proyectos .informacion .title-overlay h4 {
  color: #fff;
  margin: 0;
  font-weight: 500;
  font-size: 1.8rem;
}

.nuestros-proyectos .informacion .salto-nombre-proyecto{
  display: none;
}

.hr-titulo{
  display: none;
}

.nuestros-proyectos .informacion .datos .location{
  line-height: 1.3;
}

.nuestros-proyectos .informacion .datos .location, .area, .habitaciones, .precio{
  text-align: center;  
  font-weight: 600;
  margin-bottom: .5rem;
}

.nuestros-proyectos .informacion .datos .location i, .area i, .habitaciones i {  
  display: inline;
  font-size: 1.5rem;
  color: #283F2B;
  margin-right: .3rem;   
}

.nuestros-proyectos .informacion .datos .location p, .area p, .habitaciones p, .precio p{  
  display: inline;
  font-size: 1rem; 
  font-weight: 500;     
}

.nuestros-proyectos .informacion .datos .habitaciones .completo{
  display: none;
}


.nuestros-proyectos .item .precio .desde{  
  font-size: 1.2rem;  
  color: #283F2B;  
  line-height: 1.5;
}

.nuestros-proyectos .item .precio .monto{
  font-size: 1.5rem;
  font-weight: 600;
  color: #283F2B;  
}
 /* Botón */
 .nuestros-proyectos .item .view-project {
  display: block;
  text-align: center;
  background: #283F2B;
  color: #fff;  
  font-size: 1rem; 
  border-radius: 5px;
  padding: .6rem 0;
  margin: 0 1rem;
  text-decoration: none;
  transition: background 0.3s;
}

.nuestros-proyectos .item .view-project:hover {
  background: #2a482e;
}


/* Definir la animación de crecer y reducir */
@keyframes growShrink {
  0% { transform: scale(1); } /* Tamaño normal */
  50% { transform: scale(1.1); } /* Crece un 20% */
  100% { transform: scale(1); } /* Regresa al tamaño normal */
}

/* Aplicar la animación al div con la clase 'animacion' */
.animacion {
  animation: growShrink 2s ease-in-out infinite; /* Animación infinita de 2 segundos */
}

.nuestros-proyectos .informacion .animacion i{
  font-size: 1.9rem;
}


/*============== sm: ≥576px ======================= */
@media (min-width: 576px) {

  .section-nuestros-proyectos{    
    font-size: 1.8rem;       
  }  

  .nuestros-proyectos .informacion .datos .location{
    line-height: 1.3;
  }

  .nuestros-proyectos .informacion .datos .location i, .area i, .habitaciones i {  
    font-size: 1.8rem;    
  }
  .nuestros-proyectos .informacion .datos .location p, .area p, .habitaciones p, .precio p{  
    font-size: 1.4rem;
    font-weight: 500;    
  }

  .hr-titulo{
    display: none;
  }
  
  .nuestros-proyectos .informacion .animacion i{
    font-size: 2.3rem;
  }
}

/*================ md: ≥768px ======================*/
@media (min-width: 768px) {

  .nuestros-proyectos .informacion .datos .location p, .area p, .habitaciones p, .precio p{  
    font-size: 1.1rem;
    font-weight: 500;
  }

  .nuestros-proyectos .item .view-project {
    font-size: 1rem;
  }

  .hr-titulo{
    display: none;
  }

    
  .nuestros-proyectos .informacion .animacion i{
    font-size: 2.7rem;
  }
}

/*================  lg: ≥992px ===================== */
@media (min-width: 992px) {

  .section-nuestros-proyectos{   
    text-align: left; 
    font-size: 1.5rem;       
  }  

  .nuestros-proyectos .item {
    padding-bottom: 0;
  }

  .nuestros-proyectos .informacion {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    padding: .5rem 0 .8rem 0;    
  }

  .nuestros-proyectos .item .informacion .title-overlay {
    position: static; /* Elemento fluye normalmente */
    background: transparent; /* Sin fondo oscuro */
    padding: 0; /* Sin padding adicional */
    text-align: center; /* Centrado */
    margin: .5rem 0;
  }

  .nuestros-proyectos .item .informacion .title-overlay h4 {
    color: #283F2B; /* Color de tu proyecto */
    font-size: 1.3rem;
    font-weight: 900;
  }

  .nuestros-proyectos .informacion .salto-nombre-proyecto{
    display: block;
  }

  .hr-titulo{
    display: block;
    margin: 0;
  }

  .nuestros-proyectos .informacion .datos{
    padding: 1rem .7rem;
  }

  .nuestros-proyectos .informacion .datos .location{
    line-height: 1;
  }

  .nuestros-proyectos .informacion .datos .location i, .area i {  
    display: block;
    font-size: 1.1rem;    
    
  }
  
  .nuestros-proyectos .informacion .datos .location i{
    margin-bottom:.5rem ;
  }

  .nuestros-proyectos .informacion .datos .habitaciones i {  
    display: block;
    font-size: 1.1rem;    
    margin-bottom: .5rem;
  }

  .nuestros-proyectos .informacion .datos .location p, .area p, .habitaciones p, .precio p{  
    font-size: .7rem;
    font-weight: 500;
  }

  .nuestros-proyectos .informacion .datos .habitaciones .completo{
    display: block;
  }

  .nuestros-proyectos .informacion .datos .habitaciones .incompleto{
    display: none;
  }
  
  .nuestros-proyectos .item .precio .desde{  
    font-size: .7rem;      
  }
  
  .nuestros-proyectos .item .precio .monto{
    font-size: .9rem;
    font-weight: 600;  
  }

  .nuestros-proyectos .item .view-project {
    font-size: .6rem;
    padding: .3rem 0;
    margin: 0 1rem;
  }

  .nuestros-proyectos .informacion .animacion i{
    font-size: 2.2rem;
  }
}

/*================ xl: ≥1200px =====================*/
@media (min-width: 1200px) {
 
   .nuestros-proyectos .item .informacion .title-overlay h4 {
    font-size: 1.3rem;
    font-weight: 900;
  }

  .nuestros-proyectos .informacion {
    padding: .5rem 0 1.3rem 0;    
  }

  .nuestros-proyectos .informacion .datos{
    padding: 1rem .7rem;
  }
  .nuestros-proyectos .informacion .datos .location{
    line-height: 1.3;
  }

  .nuestros-proyectos .informacion .datos .location, .area, .habitaciones {    
    padding-bottom: .8rem;
  }

  .nuestros-proyectos .informacion .datos .location i, .area i {  
    display: block;
    font-size: 1.6rem;    
  }

  .nuestros-proyectos .informacion .datos .habitaciones i {  
    display: block;
    font-size: 1.6rem;   
    margin-bottom: .7rem; 
  }

  .nuestros-proyectos .informacion .datos .location i{
    margin-bottom:.5rem ;
  }

  .nuestros-proyectos .informacion .datos .location p, .area p, .habitaciones p, .precio p{  
    font-size: .8rem;
    font-weight: 500;
    line-height: 1;    
  }

  .nuestros-proyectos .item .precio .desde{  
    font-size: 1rem;      
  }
  
  .nuestros-proyectos .item .precio .monto{
    font-size: 1rem;
    font-weight: 600;  
  }

  .nuestros-proyectos .item .view-project {
    font-size: .7rem;
    padding: .3rem 0;
    margin: 0 1rem;
  }

  .nuestros-proyectos .informacion .animacion i{
    font-size: 1.25rem;
  }
  
}

/*================ xxl: ≥1400px ====================*/
@media (min-width: 1400px) {

  .nuestros-proyectos .item .informacion .title-overlay h4 {
    font-size: 1.5rem;
    font-weight: 900;
    /*margin-top: 1rem;*/
    margin: 1rem 0 0.5rem 0; /* Más consistente */
  }

  .nuestros-proyectos .informacion {
    padding: 0.5rem 0 1.3rem 0;    
  }

  .nuestros-proyectos .informacion .datos{
    padding: 1rem 0.7rem;
  }

  /*.nuestros-proyectos .informacion .datos .location{
    line-height: 1.3;
  }

  .nuestros-proyectos .informacion .datos .location, .area, .habitaciones {    
    padding-bottom: 1rem;
  }*/
  
    /* ESTILOS MEJORADOS PARA LOS ELEMENTOS CON ICONOS */
  .nuestros-proyectos .informacion .datos .location,
  .nuestros-proyectos .informacion .datos .area,
  .nuestros-proyectos .informacion .datos .habitaciones {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem; /* Espaciado más consistente */
    padding-bottom: 0; /* Eliminado el padding-bottom individual */
  }


 /* .nuestros-proyectos .informacion .datos .location i, .area i{  
    display: block;
    font-size: 1.5rem;    
  }*/

/*  .nuestros-proyectos .informacion .datos .habitaciones i{  
    display: block;
    font-size: 1.5rem;  
    margin-bottom: .9rem;  
  }*/

 /* .nuestros-proyectos .informacion .datos .location i{
    margin-bottom:.7rem ;
  }*/
  
  .nuestros-proyectos .informacion .datos .location i,
  .nuestros-proyectos .informacion .datos .area i,
  .nuestros-proyectos .informacion .datos .habitaciones i {  
    display: block;
    font-size: 1.8rem; /* Tamaño aumentado para pantallas grandes */
    margin-bottom: 0.5rem; /* Espaciado uniforme */
    color: #283F2B;
  }

  /*.nuestros-proyectos .informacion .datos .location p, .area p, .habitaciones p, .precio p{  
    font-size: 1rem;
    font-weight: 500;
    line-height: 0;    
  }*/
  
  .nuestros-proyectos .informacion .datos .location p,
  .nuestros-proyectos .informacion .datos .area p,
  .nuestros-proyectos .informacion .datos .habitaciones p {  
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4; /* Line-height aumentado para mejor legibilidad */
    margin: 0;
    text-align: center;
    width: 100%;
  }
  
  /* ESTILOS PARA PRECIO 
  .nuestros-proyectos .item .precio {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    margin: 1rem 0;
  }*/
  
  
  .nuestros-proyectos .item .precio .desde{  
    font-size: 1rem;      
    line-height: 1.2;  
  }
  
  .nuestros-proyectos .item .precio .monto{
    font-size: 1.2rem;
    font-weight: 600;  
    line-height: 1.2;
  }

  .nuestros-proyectos .item .view-project {
    font-size: 0.8rem;
    padding: 0.5rem 0;
    margin: 0 1rem;
  }
  
  .nuestros-proyectos .informacion .animacion i{
    font-size: 1.8rem;
  }
}



/*--------------------------------------------------------------
# PROYECTOS ALL
--------------------------------------------------------------*/

.container-proyectos-all{
  background: #EFE9E4;
  padding: 2.5rem .8rem 5.8rem .8rem;
}

.container-proyectos-all-gris{
  background: #282727;
  padding: 0 .8rem 3rem .8rem;
}

.proyectos-all{
  background: #EFE9E4 ;
  margin-top: 2rem;
}

/* --- Estilo del enlace principal --- */
.proyectos-all .post-item-link {  
  text-decoration: none;
  color: inherit; /* Evita el color azul de los enlaces */
}

.proyectos-all .post-item {
  background-color: #FFF;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
  border-radius: 10px;
  position: relative;
  overflow: hidden;  
}

.proyectos-all .post-item .post-estado {
  position: absolute; 
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #283F2B;
  color:#FFF;
  text-transform: uppercase;
  font-size: .9rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 6px 6px;
  font-weight: 500;
}

.proyectos-all .post-item .post-img img {
  width: 100%;
  height: 50%;
  display: block;
  transition: 0.5s;
}

.proyectos-all .post-item .post-content {
  background: #EFE9E4; /* Suave transparencia */
  color: #283F2B;  
  padding: .8rem 0 .8rem 0;
}

.proyectos-all .post-item .post-content .titulo-proyecto-all h4{
  text-align: center;
  font-size: 2rem;
  color: #283f2B;
  margin: 0;
  font-weight: 900;
}

.proyectos-all .post-item .post-content .hr-proyecto-all{
  background-color: #059652;
  margin: .5rem 0;
}

.proyectos-all .post-item .post-content .location-all{
  text-align: center;  
  padding: 0 .6rem;  
}

.proyectos-all .post-item .post-content .location-all i{
  display: inline;
  font-size: 1.2rem;  
}

.proyectos-all .post-item .post-content .location-all p{
  display: inline;
  font-size: 1rem; 
  font-weight: 600; 
  color: #282727;
}

.proyectos-all .post-item .post-content .meta{
  display: flex;
  flex-direction: row;
  justify-content: space-around;  
  padding: 0 1rem;
  margin: .5rem 0;
  font-size: 1rem;  
  font-weight: 600;
}

.proyectos-all .post-item .post-content .salto-proyectos-all{
  display: none;
}

.proyectos-all .post-item .post-content .meta i{
  font-size: 1.5rem;
  margin-right: 1rem;
  text-align: center;
}

.proyectos-all .post-item .post-content .meta span{
  color: #282727;
}

.proyectos-all .post-item .post-content .precio{
  margin: .5rem 0;
}

.proyectos-all .post-item .post-content .precio .desde{
  font-size: 1rem;
  font-weight: 500;  
}

.proyectos-all .post-item .post-content .precio .precioDesde{
  font-size: 1.3rem;
  font-weight: 600;  
}

.proyectos-all .post-item .post-content .btn-getstarted
{  
  display: block;
  text-align: center;
  background: #283F2B;
  color: #fff;  
  font-size: .9rem; 
  border-radius: 5px;
  padding: .6rem 0;
  margin: 0 1rem;
  text-decoration: none;
  transition: background 0.3s;
}

.proyectos-all .post-item .post-content .animacion-all {
  animation: growShrink 2s ease-in-out infinite; /* Animación infinita de 2 segundos */
}
.proyectos-all .post-item .post-content .animacion-all i{
  font-size: 1.9rem;
}

/*============= sm: ≥576px =====================*/
@media (min-width: 576px) {

  .container-proyectos-all{
    
    padding: 2.5rem .8rem 5.8rem .8rem;
  }
  
  .container-proyectos-all-gris{
    
    padding: 0 .8rem 3rem .8rem;
  }

    .proyectos-all .post-item .post-content .location-all i{
      display: inline;
      font-size: 1.8rem;  
    }

    .proyectos-all .post-item .post-content .location-all p{
      font-size: 1.3rem;  
    }

    .proyectos-all .post-item .post-content .meta{
      padding: 0 1.5rem;
      font-size: 1.3rem;
    }

    .proyectos-all .post-item .post-content .meta i{
      font-size: 1.8rem;
      margin-right: .7rem;
    }

    .proyectos-all .post-item .post-content .precio {
      margin: .5rem 0;
    }
    .proyectos-all .post-item .post-content .precio .desde{
      font-size: 1.3rem;
      font-weight: 500;  
    }

    .proyectos-all .post-item .post-content .precio .precioDesde{
      font-size: 1.5rem;
      font-weight: 600;  
    }
    
    .proyectos-all .post-item .post-content .btn-getstarted{
      font-size: 1rem; 
    }

    .proyectos-all .post-item .post-content .animacion-all i{
      font-size: 2.5rem;
    }
  }

/*============= md: ≥768px ====================*/
@media (min-width: 768px) {

  .proyectos-all .post-item .post-content .salto-proyectos-all{
    display: block;
  }

  .proyectos-all .post-item .post-estado {
    font-size: .5rem;
  }
  .proyectos-all .post-item .post-content .titulo-proyecto-all h4{
    font-weight: 900;
    font-size: 1.5rem;
  }

  .proyectos-all .post-item .post-content .location-all i{    
    font-size: 1.2rem;  
  }

  .proyectos-all .post-item .post-content .location-all p{
    font-size: .9rem;      
  }

  .proyectos-all .post-item .post-content .meta{
    text-align: center;
    padding: 0 .7rem;
    font-size: .9rem;
  }

  .proyectos-all .post-item .post-content .meta i{
    font-size: 1.3rem;
    margin-right: .7rem;
  }

  .proyectos-all .post-item .post-content .precio {
    margin: .6rem 0;
  }

  .proyectos-all .post-item .post-content .precio .desde{
    font-size: 1rem;
    font-weight: 500;  
  }

  .proyectos-all .post-item .post-content .precio .precioDesde{
    font-size: 1.3rem;
    font-weight: 600;  
  }
  
  .proyectos-all .post-item .post-content .btn-getstarted{
    font-size: .8rem; 
  }

  .proyectos-all .post-item .post-content .animacion-all i{
    font-size: 1.8rem;
  }
        
}

/*============= lg: ≥992px ====================*/
@media (min-width: 992px) {

  .proyectos-all .post-item .post-estado {
    font-size: .8rem;
  }

  .proyectos-all .post-item .post-content .location-all{ 
    padding: 0 .7rem;
  }

  .proyectos-all .post-item .post-content .location-all i{    
    font-size: 1.3rem;  
  }

  .proyectos-all .post-item .post-content .location-all p{
    font-size: 1rem;  
  }

  .proyectos-all .post-item .post-content .meta{    
    padding: 0 1.5rem;
    font-size: 1rem;
  }

  .proyectos-all .post-item .post-content .meta i{
    font-size: 1.5rem;
    margin-right: .7rem;
  }

  .proyectos-all .post-item .post-content .precio{
    margin: .5rem 0;
  }

  .proyectos-all .post-item .post-content .precio .desde{
    font-size: 1.2rem;
    font-weight: 500;  
  }

  .proyectos-all .post-item .post-content .precio .precioDesde{
    font-size: 1.5rem;
    font-weight: 600;  
  }
  
  .proyectos-all .post-item .post-content .btn-getstarted{
    font-size: 1rem; 
  }

}

/*============= xl: ≥1200px ===================*/
@media (min-width: 1200px) {

  .proyectos-all .post-item .post-content .salto-proyectos-all{
    display: none;
  }

  .container-proyectos-all{
    padding: 3.5rem 4.5rem 5.8rem 4.5rem;
  }

  .container-proyectos-all-gris{    
    padding: 0 4.5rem 3rem 4.5rem;
  }

  .proyectos-all .post-item .post-content .titulo-proyecto-all h4{
    font-size: 1.7rem;      
  }

  .proyectos-all .post-item .post-content .location-all{ 
    padding: 0 .7rem;
  }

  .proyectos-all .post-item .post-content .location-all i{    
    font-size: 1.2rem;  
  }

  .proyectos-all .post-item .post-content .location-all p{
    font-size: 1rem;  
  }

  .proyectos-all .post-item .post-content .meta{    
    justify-content: space-around;  
    padding: 0 1rem;
    font-size: 1.1rem;
  }

  .proyectos-all .post-item .post-content .meta i{
    font-size: 1.2rem;
    margin-right: .7rem;
  }

  .proyectos-all .post-item .post-content .precio{
    margin: .5rem 0;
  }

  .proyectos-all .post-item .post-content .precio .desde{
    font-size: 1.1rem;
    font-weight: 500;  
  }

  .proyectos-all .post-item .post-content .precio .precioDesde{
    font-size: 1.3rem;
    font-weight: 600;  
  }
  
  .proyectos-all .post-item .post-content .btn-getstarted{
    font-size: 1rem; 
  }

                  /* --- Estilos para el efecto hover --- */
                  .container-proyectos-all .post-item {
                    background: #EFE9E4;
                    overflow: hidden; /* Para que el contenido no se salga */
                    position: relative;
                    transition: all 0.2s ease; /* Transición suave */
                    height: auto;
                    cursor: pointer;                    
                  }

                  .container-proyectos-all-gris .post-item {
                    background: #EFE9E4;
                  }

                  .post-content {
                    transition: transform 0.4s ease; /* Animación de desplazamiento */
                    background: white; /* Fondo sólido (ajusta según tu diseño) */
                    position: relative;
                    z-index: 2;           
                  }
        
                  /* Ocultar botón inicialmente */
                  .post-content .btn-getstarted {
                    position: absolute;
                    bottom: -2rem;
                    left: 0;
                    right: 0;
                    opacity: 0;
                    transform: translateY(50px);
                    transition: all 0.3s ease;
                  }
        
                  /* Efecto hover en la tarjeta */
                  .col-md-4:hover .post-content {
                    transform: translateY(-50px); /* Sube el contenido */
                  }
        
                  .col-md-4:hover .btn-getstarted {
                    opacity: 1;
                    transform: translateY(0);
                  }
                 
 .proyectos-all .post-item .post-content .animacion-all br{
   display: none;
  }

}

/*============= xxl: ≥1300px ===================*/
@media (min-width: 1300px) {

  .container-proyectos-all{
    background: #EFE9E4;
    padding: 3.5rem 8rem 5.8rem 8rem;
  }
  
  .container-proyectos-all-gris{
    background: #282727;
    padding: 0 8rem 4rem 8rem;
  }

  .proyectos-all .post-item .post-content .animacion-all i{
    font-size: 1.5rem;
  }
}

/*============= xxl: ≥1400px ===================*/
@media (min-width: 1400px) {

  .container-proyectos-all{
    background: #EFE9E4;
    padding: 3.5rem 8rem 5.8rem 8rem;
  }
  
  .container-proyectos-all-gris{
    background: #282727;
    padding: 0 8rem 4rem 8rem;
  }
}

/*============= xxxl: ≥1600px ===================*/
@media (min-width: 1600px) {

  .container-proyectos-all{
    background: #EFE9E4;
    padding: 3.5rem 12rem 5.8rem 12rem;
  }
  
  .container-proyectos-all-gris{
    background: #282727;
    padding: 0 12rem 4rem 12rem;
  }
}

/*============= xxxl: ≥1800px ===================*/
@media (min-width: 1800px) {

  .container-proyectos-all{
    background: #EFE9E4;
    padding: 3.5rem 18rem 5.8rem 18rem;
  }
  
  .container-proyectos-all-gris{
    background: #282727;
    padding: 0 18rem 4rem 18rem;
  }
}

/*============= xxxl: ≥1900px ===================*/
@media (min-width: 1900px) {

  .container-proyectos-all{
    background: #EFE9E4;
    padding: 3.5rem 20rem 5.8rem 20rem;
  }
  
  .container-proyectos-all-gris{
    background: #282727;
    padding: 0 20rem 4rem 20rem;
  }
}

/*============= xxxl: ≥2000px ===================*/
@media (min-width: 2000px) {

  .container-proyectos-all{
    background: #EFE9E4;
    padding: 3.5rem 26rem 5.8rem 26rem;
  }
  
  .container-proyectos-all-gris{
    background: #282727;
    padding: 0 26rem 4rem 26rem;
  }
}


/*--------------------------------------------------------------
# CONTADORES SECTION 
--------------------------------------------------------------*/
.counters{
  background: #283F2B;
  color: #fff;
}
.counter-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  text-align: center;
  gap: 0;
  flex-wrap: wrap;
}

.counter-box .top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.counter-box .symbol,
.counter-box .number {
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: bold;
  color: #fff;
}

.counter-box .symbol {
  animation: bounce 1s ease-in-out infinite alternate;
}

.counter-box .description {
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  line-height: 1.4;
  max-width: 300px;
}

/* Animación del símbolo */
@keyframes bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-5px); }
}

/* Versión móvil: apila en 2 filas (top arriba, texto abajo) */
@media (max-width: 768px) {
  .counter-box {
    flex-direction: column;
    gap: 10px;
  }

  .counter-box .top {
    justify-content: center;
  }
  .counter-box .description{
    text-align: center;
  }
}



    #quienesSomosCarousel {
        position: relative;
      }

    /* Estilo para el carrusel */
    #quienesSomosCarousel .item {
      position: relative;
      overflow: hidden;
      border-radius: 1px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }
    
    #quienesSomosCarousel .owl-lazy {
      width: 100%;
      height: auto;
      object-fit: cover;
      transition: transform 0.4s ease-in-out;
    }
    
    #quienesSomosCarousel .item:hover .owl-lazy {
      transform: scale(1.03);
    }
    
    /* Botones nav */
    #quienesSomosCarousel .owl-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      pointer-events: none;
    }
    
    #quienesSomosCarousel .owl-nav button {
      background: rgba(255, 255, 255, 0.3);
      border: none;
      border-radius: 10%;
      width: 40px;
      height: 40px;
      font-size: 18px;
      pointer-events: auto;
      color: #283F2B;
      transition: background 0.3s ease, color 0.3s ease;
    }
    
    #quienesSomosCarousel .owl-nav button:hover {
      background: rgba(255, 255, 255, 0.4);
      color: #283F2B;
    }
    
    /* Dots */
    #quienesSomosCarousel .owl-dots {
      position: absolute;
      bottom: 15px; /* Espaciado desde la parte inferior */
      width: 100%;
      text-align: center;
      z-index: 10;      
      margin-top: 12px;
    }
    
    #quienesSomosCarousel .owl-dot span {
      background: rgba(255, 255, 255, 0.6); /* Puntos semi transparentes */
      width: 10px;
      height: 10px;
      display: inline-block;
      margin: 3px;
      border-radius: 50%;
      transition: background 0.3s;
    }
    
    #quienesSomosCarousel .owl-dot.active span {
      background: #fff; /* Punto activo */
    }
    
    
/* 
---------------------------------------------
SECCION COTIZACIONES
--------------------------------------------- 
*/

section.cotizacion {
  background: #EFE9E4;
  padding: 30px 0;
}

section.cotizacion #contact {
  background-color: #EFE9E4;
  border-radius: 20px;
  padding: 5px 10px;
}

section.cotizacion h5 {  
  color: #283f2B;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;  
  font-size: 20px;
  font-weight: 600;
}

/*=========== FORMULARIO ============*/

section.cotizacion #contact select {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  background-color: #EFE9E4;
  outline: none;
  border: solid 1px #283f2B;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  color: #7a7a7a;
  padding: 0px 15px;
  margin-bottom: 20px;
}

section.cotizacion #contact input[type="text"], input[type="email"] {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  background-color: #EFE9E4;
  outline: none;
  border: solid 1px #283f2B;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  color: #7a7a7a;
  padding: 0px 15px;
  margin-bottom: 20px;
}

section.cotizacion #contact textarea {
  width: 100%;
  min-height: 100px;
  max-height: 130px;
  border-radius: 10px;
  background-color: #EFE9E4;
  outline: none;
  border: solid 1px #283F2B;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  color: #7a7a7a;
  padding: 15px;
  margin-bottom: 10px;
}

section.cotizacion #contact button {
  font-size: 13px;
  color: #fff;
  background-color: #283F2B;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
  border: none;
  outline: none;
}

section.cotizacion #contact button:hover {
  opacity: 0.9;
}

section.cotizacion .right-info {
  background-color: #a12c2f;
  border-radius: 20px;
  padding: 40px;
}

section.cotizacion .right-info ul li {
  display: inline-block;
  border-bottom: 1px solid rgba(250,250,250,0.15);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

section.cotizacion .right-info ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

section.cotizacion .right-info ul li h6 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

section.cotizacion .right-info ul li span {
  display: block;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}


.btn-dormitorio {
  background: #283F2B;
  color: #EFE9E4;
}

.btn-dormitorio-free{
  background: #EFE9E4;
  color: #283F2B;
}

.btn-dormitorio:hover {
  background: #2e4832;        
}

.btn-dormitorio:focus {
  outline: none;            /* Quita el borde por defecto */
  background-color: #283F2B; /* Cambia el color al enfocar (opcional) */
  box-shadow: 0 0 0 1px rgba(40, 63, 43, 0.5); /* Sombra sutil */
}

.btn-dormitorio-free:hover{
  background: #283F2B;
  color: #EFE9E4;
}

#slider-image {
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}

#slider-image.fade-out {
  opacity: 0;
}

.slider-btn {
  font-size: 14px;      /* Tamaño del símbolo < o > */
  padding: 5px 10px;    /* Espaciado interno más pequeño */
  background-color: #283f2b;
  color: #EFE9E4;
  border-radius: 8px;
  border: none;
  transition: background-color 0.3s ease;
}

.slider-btn:hover {
  background-color: #2e4832;
  color: #EFE9E4;
}

    
.slider-btn:focus {
outline: none;            /* Quita el borde por defecto */
background-color: #283F2B; /* Cambia el color al enfocar (opcional) */
box-shadow: 0 0 0 2px rgba(40, 63, 43, 0.5); /* Sombra sutil */
}


/* Estilo del overlay modal */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  animation: fadeIn 0.3s ease;
}

/* Imagen dentro del modal */
.custom-modal .modal-content {
  margin: 5% auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  animation: zoomIn 0.4s ease;
  border-radius: 10px;
}

/* Botón cerrar */
.custom-modal .close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1100;
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Ícono de lupa al hacer hover */
#slider-image {
  position: relative;
  cursor: zoom-in;
  transition: 0.3s ease;
}

#slider-image:hover::after {
  content: "\f002"; /* Ícono lupa Font Awesome */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: white;
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.5);
  padding: 20px;
  border-radius: 50%;
}


/*--------------------------------------------------------------
# Values Section
--------------------------------------------------------------*/
.values .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
}

.values .card img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.values .card:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/

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

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

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

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

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

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

/*--------------------------------------------------------------
# Alt Features Section
--------------------------------------------------------------*/
.alt-features .icon-box {
  display: flex;
}

.alt-features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.alt-features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.alt-features .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: #EFE9E4;  
}

.about .content {
  padding: 1rem;
  text-align: justify;
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #283F2B;
  text-transform: uppercase;

}

.about .content h2 {
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.5;
  color: #282727;
  text-align: justify;
}

.about .content p {
  font-size: .8rem;  
  line-height: 1.5;
  color: #282727;
  text-align: justify;
}


.about .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

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

.about .content .btn-read-more:hover i {
  transform: translateX(5px);
}

/*================  lg: ≥992px ===================== */
@media (min-width: 992px) {

  #quienesSomosCarousel{
    margin-top: 1rem;
  }
  
  .about .content {
    padding: 1rem 3rem 1rem 1rem;
  }

}

/*============= xl: ≥1200px ===================*/
@media (min-width: 1200px) {

  .about .content h2{
    font-size: 1rem;        
  }

  .about .content p {
    font-size: .9rem;  
    line-height: 1.8;    
  }

}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.preguntas{
  background: #272828;
}

.preguntas .section-title{
  padding-bottom: 1.3rem;
}

.preguntas .section-title p{
  color: #EFE9E4;
}

.preguntas .section-title .resolvemos{
  color: #EFE9E4;
  font-size: 1.3rem;
  font-weight: 300;
}

.preguntas .service-item {
  background-color: #EFE9E4;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.preguntas .service-item .icon {
  font-size: 36px;
  padding: 20px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.preguntas .service-item h3 {
  font-size: 24px;
  font-weight: 700;
}

.preguntas .btn-revisar{
  
  width: 10%;          /* Ocupar todo el ancho del padre */
  text-align: center;
  color: #283F2B;
  background: #EFE9E4;
  font-size: 1rem;
  padding: 8px 25px;
  margin: 0 0 5px 0;
  border-radius: 4px;  
  font-weight: 500;
}

.preguntas .btn-revisar:hover{
  background: #283F2B;
  color: #EFE9E4;
}


.preguntas .service-item .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.preguntas .service-item .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
  color: #EFE9E4;
}

.preguntas .service-item.item-dinabusa {
  
  border-bottom: 3px solid #283f2B;
}

.preguntas .service-item.item-dinabusa .icon {
  color: #283f2B;
  background: rgba(40, 63, 43, .2);
}

.preguntas .service-item.item-dinabusa .read-more {
  color: #283f2B;
}

.preguntas .service-item.item-dinabusa:hover {
  background: #283f2B;
}

.preguntas .service-item:hover h3,
.preguntas .service-item:hover p,
.preguntas .service-item:hover .read-more {
  color: #EFE9E4;
}

.preguntas .service-item:hover .icon {
  background: #EFE9E4;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-tem {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

@media (min-width: 1200px) {
  .pricing .pricing-tem:hover {
    transform: scale(1.1);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  }
}

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing .price {
  font-size: 36px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .icon {
  padding: 20px 0;
}

.pricing .icon i {
  font-size: 48px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

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

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq{
  margin-top: 5rem;
  margin-bottom: 0;
  padding-top: .7rem;
  padding-bottom: 0;
  background: #EFE9E4;
}



.faq .faq-img .preguntas{
  font-family: var(--heading-font);
  background: transparent;
  font-size: 2.9rem;
  color: #fff;
  font-weight: 500;

}

.faq .faq-img .frecuentes{
  font-family: var(--heading-font);
  -webkit-text-stroke: 2px white; /* Para navegadores WebKit (Chrome, Safari) */    
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  line-height:.5;
  
}

.faq .preguntas-list{
  background: #EFE9E4;

}

.faq .faq-container .faq-item {  
  
  background: #fff;
  position: relative;
  padding: 0.5rem 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
  margin: 1rem 0;
  border-radius: .5rem;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  background: #fff;
  color: #282727;
  font-weight: 400;
  font-size: 1rem;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-left: .5rem;
  border-radius: .5rem;
}

.faq .faq-container .faq-item h3 .num {
  color: #283F2B;
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  background: #fff;
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  padding-top: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  padding: 0 1rem;
  text-align: justify;
  font-size: .8rem;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: .75rem;
  right: .6rem;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: #3d5840;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}


/*============= lg: 992px ===================*/
@media (min-width: 992px) {

  .faq .container{
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .faq .preguntas-list{
    background: #EFE9E4;
    padding-left: 2rem;  
  }

  .faq .faq-container .faq-item {  
   width: 105%;
  }

}
/*============= xl: ≥1200px ===================*/
@media (min-width: 1200px) {



  .faq .faq-container .faq-item {
    margin: 1.5rem 0;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 1rem;
  }

  .faq .faq-container .faq-item .faq-content p {
    font-size: .9rem;
  }

}

/*============= xxl: ≥1400px ===================*/
@media (min-width: 1400px) {

  .faq .faq-img .preguntas{
    font-size: 4rem;
  }

  .faq .faq-img .frecuentes{
    font-size: 4.5rem;

  }
}

@media (min-width: 1600px) {
  .faq .faq-container .faq-item {  
    width: 125%;
   }

}



/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.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;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.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;
}

.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);
}

.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);
}

.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;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.team .team-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  z-index: 2;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.team .team-member .social a:hover {
  color: var(--default-color);
}

.team .team-member .social i {
  font-size: 18px;
}

.team .team-member .member-info {
  padding: 10px 15px 20px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.team .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.team .team-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  transition: 0.3s;
  opacity: 0.5;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

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

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

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

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


/*--------------------------------------------------------------
# TODOS LOS PROYECTOS
--------------------------------------------------------------*/





/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

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

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

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

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

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

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

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




/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}



.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}


/*========================== NUEVA SECCION DE COTICACION PRINCIPAL ================================*/


  .cotizacion-principal{
    background: #fff;
  }

  .cotizacion-principal .form-cotiza{
    background: #fff;
    padding: 1rem 1rem 1rem 1rem;
  }

  .cotizacion-principal h5{
    font-size: 1rem;
  }

/* Estilos para los labels flotantes */

  .cotizacion-principal .form-cotiza .floating-label {
    position: relative;
    margin-bottom: 20px;  
  }

  .cotizacion-principal .form-cotiza .floating-label label {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    font-size: .8rem;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .cotizacion-principal .form-cotiza .floating-label .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #485c4b;
    border-width: 0.5px;
    border-radius: 5px;
    font-size: .9rem;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    outline: none;
    height: auto;
  }
  
  .cotizacion-principal .form-cotiza .floating-label .form-control:focus,
  .floating-label .form-control:not(:placeholder-shown) {
    border-color:#283F2B;
    border-width: 0.5px; /* Grosor del borde más delgado */
    box-shadow: 0 0 7px rgb(40, 63, 43, 0.5);
  }

  .cotizacion-principal .form-cotiza .floating-label .form-control:focus + label,
  .floating-label .form-control:not(:placeholder-shown) + label {
      top: 0;
      left: 20px;
      font-size: 12px;
      color: #283F2B;
      background-color: #fff;
      padding: 0 5px;
}

  /* Estilos para el select */
  .cotizacion-principal .form-cotiza .floating-label select.form-control {
    appearance: none;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23283F2B'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e") no-repeat right 15px center/18px;
    padding-right: 35px;
  }

  .cotizacion-principal .form-cotiza button[type="submit"] {
    background: #283F2B;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
  }
  
  .cotizacion-principal .form-cotiza button[type="submit"]:hover {
    background: #2a3e2c;
  }

  .cotizacion-principal .form-cotiza .checkbox-text{
    font-size: .8rem;
  }

/*============== md: ≥768px ======================= */
@media (min-width: 768px) {

  .cotizacion-principal h5{
    font-size: 1.3rem;
  }
}

/*============== lg: ≥992px ======================= */
@media (min-width: 992px) {

  .cotizacion-principal h5{
    font-size: 1rem;
  }
}

/*============== xl: ≥ 1200px ======================= */
@media (min-width: 1200px) {

  .cotizacion-principal h5{
    font-size: 1.3rem;
  }
}

/*============== xxl: ≥ 1400px ======================= */
@media (min-width: 1400px) {

  .cotizacion-principal h5{
    font-size: 1.5rem;
  }
}

/* 

/*===================================================================
  ESTILO LIBRO DE RECLAMACIONES
====================================================================*/


.reclamaciones{
 padding: 6rem 1rem 2rem 1rem;
}

.reclamaciones h2{
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
}

.reclamaciones p{
  font-size: .8rem;
  text-align: center;
}

.reclamaciones .form-reclamaciones h6{
  font-size: .8rem;
  text-align: left;
  margin-bottom: 1.3rem;
}

.reclamaciones .form-reclamaciones .nota{
  font-size: .7rem;
  text-align: left;
  font-weight: 600;
  margin-bottom: 2rem;
}

.reclamaciones .form-reclamaciones .floating-input {
  position: relative;
  margin-bottom: 1.5rem;  
}

.reclamaciones .form-reclamaciones .floating-input label{
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  font-size: .8rem;
  color: #999;
  transition: all 0.3s ease;
  pointer-events: none;
}

.reclamaciones .form-reclamaciones .floating-input .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #485c4b;
  border-width: 0.5px;
  border-radius: 5px;
  font-size: .9rem;
  color: #333;
  background-color: #fff;
  transition: all 0.3s ease;
  outline: none;
  height: auto;
}

.reclamaciones .form-reclamaciones .floating-input .form-control:focus,
.floating-input .form-control:not(:placeholder-shown) {
  border-color:#283F2B;
  border-width: 0.5px; /* Grosor del borde más delgado */
  box-shadow: 0 0 7px rgb(40, 63, 43, 0.5);
}

.reclamaciones .form-reclamaciones .floating-input .form-control:focus + label,
.floating-input .form-control:not(:placeholder-shown) + label {
    top: 0;
    left: 20px;
    font-size: 12px;
    color: #283F2B;
    background-color: #fff;
    padding: 0 5px;
}

/* Estilos para el select */
.reclamaciones .form-reclamaciones .floating-input select.form-control {
  appearance: none;
  background-color: #fff; /* Fondo blanco */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23283F2B'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  padding-right: 35px;
  border: 1px solid #282727; /* Opcional: borde para mejor visibilidad */
  color: #282727;
}

.form-check-input {
  background-color: #adb5bd; /* Gris claro */
  border-color: #adb5bd;
}
.form-check-input:checked {
  background-color: #283F2B; /* Rojo */
  border-color: #283F2B;
}
.form-check-label {
  color: #283F2B; /* Rojo para etiquetas */
}

.reclamaciones .form-reclamaciones button[type="submit"] {
  background: #283F2B;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.reclamaciones .form-reclamaciones button[type="submit"]:hover {
  background: #2a3e2c;
}

.reclamaciones .form-reclamaciones .checkbox-text{
  font-size: .8rem;
}

/*============== md: ≥768px ======================= */
@media (min-width: 768px) {

  .reclamaciones .contenedor-reclamaciones{
  padding: 1rem 2rem 0 2rem;
  }
}

/*============== xl: ≥1200px ======================= */
@media (min-width: 1200px) {

  .reclamaciones .contenedor-reclamaciones{
  padding: 1rem 12rem 0 12rem;
  }

}


/*===================================================================
  ESTILO LIBRO DE POLITICAS DE PRIV
====================================================================*/

  .politicas{
    padding: 6rem 1rem 2rem 1rem;
  }
 
 .politicas h2{
   font-size: 1.5rem;
   font-weight: 400;
   text-align: center;
   margin-bottom: 2rem;
 }
 
 .politicas p{
   font-size: .8rem;
   text-align: justify;
 }

 .politicas .subtitulo{
  padding-left: 1.5rem;
  text-align: justify;
}
 
 .politicas h6{
   font-size: 1rem;
   text-align: left;
   margin-bottom: 1.3rem;
 }

 .politicas   table, th, td {
  border: 1px solid black !important;
  border-collapse: collapse;
}

.politicas td {
  font-weight: 400 !important; /* Quita negrita de los td */
}

/*============== md: ≥768px ======================= */
@media (min-width: 768px) {

  .politicas .contenedor-politicas{
  padding: 1rem 2rem 0 2rem;
  }
}

/*============== xl: ≥1200px ======================= */
@media (min-width: 1200px) {

  .politicas .contenedor-politicas{
  padding: 1rem 12rem 0 12rem;
  }

}


/*===================================================================
  PROMOCIONES
====================================================================*/

.promo-modal .modal-content { background: transparent; border: none; }
.promo-modal img { max-width: 100%; height: auto; border-radius: 0; }
/* Tamaño personalizado (opcional) */
.modal-custom-size .modal-dialog { max-width: 600px; } /* Cambia este valor para ajustar */


.promo-modal .custom-close-btn {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    opacity: 0.8;
    transition: opacity 0.3s, background-color 0.3s;
    position: absolute;
    top: 15px;
    right: -5px;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1050;
    /* Elimina el filtro SVG de Bootstrap que causa bordes negros */
    filter: none !important;
    
}
  
.promo-modal .custom-close-btn::before {
    content: '\2715'; /* Unicode para "X" */
    color: #fff; /* Blanco puro */
    font-size: 1rem;
    font-family: Arial, sans-serif;
    font-weight: bold; /* Asegura que la "X" sea más nítida */
    /* Elimina sombras o bordes heredados */
    text-shadow: none;
    -webkit-text-stroke: 0; /* Para Safari/Chrome */
}

/* Efecto hover opcional */
.promo-modal .custom-close-btn:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.4); /* Cambia el color al pasar el mouse */
}

.promo-modal .btn-close { position: absolute; background: #282727; color:#fff; border-radius: 50%;}


.notificacion {
  position: fixed;
  top: 7rem;
  right: 20px;
  background: #283F2B;
  color: #fff;
  padding: 15px;
  border-radius: 5px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 9999;
}

.notificacion.mostrar {
  transform: translateY(0);
  opacity: 1;
}

.error {
  color: #ff4444;
  margin-top: 10px;
  padding: 10px;
  background: #ffebee;
  border-radius: 4px;
}

