@charset "UTF-8";
:root {
  /* Colors*/
  --primary: #DD0000;
  --secondary: #000000;
  --dark: #000000;
  --gray: #5D5D5D;
  --gray-2: #E8E8E8;
  --light: #F8F8F8;
  --yellow: #EDE947;
  --white: #FFFFFF;
  --success: #00A700;
  --light-success: #D9FFEB;
  --danger: #F72100;
  --light-danger: #FFECEC;
  --warning: #EDB620;
  --light-warning: #FFFAE8;
  --bs-border-color: var(--gray);
  /* Font/text values */
  --font-family: 'Poppins';
}

/* Character Styles */
h1,
.h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.72px;
  color: var(--dark, #000);
}

h2,
.h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: -0.48px;
  color: var(--dark, #000);
}

h3,
.h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.4px;
  color: var(--dark, #000);
}

h4,
.h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: -0.36px;
  color: var(--dark, #000);
}

h5,
.h5 {
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: -0.28px;
  color: var(--dark, #000);
}

p,
.p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.16px;
  color: var(--gray, #5D5D5D);
}

a,
.link {
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.3px;
  text-decoration: none;
  color: var(--dark, #000);
}
a:hover,
.link:hover {
  color: var(--primary);
}

/* Text colors */
.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.text-success {
  color: var(--success) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.text-warning {
  color: var(--warning) !important;
}

.text-muted {
  color: var(--gray) !important;
}

.dropdown .dropdown-menu {
  padding: 1.875rem;
  margin-top: 0.5rem !important;
  border-radius: 1rem;
  border: 1px solid var(--light);
  box-shadow: 0px 3px 39px rgba(0, 0, 0, 0.1215686275);
}
.dropdown .dropdown-hours {
  min-width: 16rem;
}

.form-control,
.form-select {
  border: 0;
  border-bottom: 1px solid var(--dark);
  border-radius: 0;
  padding: 14px 0;
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
}
.form-control:focus,
.form-select:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--primary);
}
.form-control::placeholder,
.form-select::placeholder {
  color: var(--gray);
}

.form-floating .form-control,
.form-floating .form-select {
  border: 0;
  border-bottom: 1px solid var(--dark);
  border-radius: 0;
  padding: 14px 0;
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
}
.form-floating .form-control:focus,
.form-floating .form-select:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--primary);
}
.form-floating label {
  padding: 20px 0;
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
}
.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label,
.form-floating .form-select ~ label {
  font-size: 0.7rem;
  top: 0.9rem;
  background: transparent;
  padding: 0;
  height: auto;
  margin-left: -3px;
}

.form-check {
  margin-top: 12px;
  margin-bottom: 12px;
}
.form-check .form-check-input {
  width: 20px;
  height: 20px;
  border-color: var(--light-2);
  background-color: var(--light-2);
}
.form-check .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}
.form-check .form-check-input:focus, .form-check .form-check-input:active {
  outline: none;
  box-shadow: none;
}
.form-check .form-check-label {
  margin-left: 12px;
  font-size: 14px;
}

/* 
.form-switch {
    padding-left: 0;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    .form-check-input {
        min-width: 48px;
        height: 24px;
        margin: 0;
        border-color: $secondary;
        background-color: $secondary;
        float: none;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");

        &:checked {
            background-color: $primary;
            border-color: $primary;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
        }

        &:focus,
        &:active {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
        }
    }

    .form-check-label {
        margin-left: 0;
        padding-right: 20px;
    }
} */
.card {
  border-radius: 20px;
  border: 2px solid var(--light, #F8F8F8);
  box-shadow: 0px 2px 14px rgba(94, 94, 94, 0.0509803922);
}
.card .card-img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 18px;
  overflow: hidden;
}
.card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card .card-body {
  padding: 25px;
}
.card .card-body h4 {
  margin-bottom: 20px;
}
.card .card-body .btn-outline-primary {
  margin-bottom: 5px;
}
.card a:hover .h2 {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  /* .card {
      .card-img-top {
          width: 180px;
          height: 180px;
      }
  } */
}
.carousel .grid-controls {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
}
.carousel .grid-controls .carousel-indicators,
.carousel .grid-controls .carousel-control-prev,
.carousel .grid-controls .carousel-control-next {
  position: relative;
}
.carousel .grid-controls .carousel-indicators {
  margin: 0 27px 0 0;
  align-items: center;
  gap: 5px;
}
.carousel .grid-controls .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 4px;
  border-radius: 40px;
  background-color: var(--white);
  background-clip: initial;
  border: 0;
  opacity: 0.34;
  margin: 0;
}
.carousel .grid-controls .carousel-indicators [data-bs-target].active {
  width: 38px;
  opacity: 1;
}
.carousel .grid-controls .carousel-control-next,
.carousel .grid-controls .carousel-control-prev {
  width: 40px;
  height: 40px;
  border-radius: 15px;
  background-color: var(--white);
  opacity: 1;
  /*   svg {
        path {
            fill: var(--primary);
        }
    } */
}
.carousel .grid-controls .carousel-control-next {
  margin-right: 0;
}
.carousel .grid-controls .carousel-control-prev {
  margin-right: 8px;
}
.carousel .carousel-inner {
  border-radius: 15px;
  overflow: hidden;
}
.carousel .carousel-inner .carousel-item img {
  width: 100%;
}
.carousel .indicators-photo {
  margin-top: 20px;
}
.carousel .indicators-photo .carousel-indicators {
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}
.carousel .indicators-photo .carousel-indicators [data-bs-target] {
  display: flex;
  width: 90px;
  height: 90px;
  text-align: center;
  border: 0;
  outline: 2px solid var(--light-2);
  opacity: 1;
  border-radius: 13px;
  overflow: hidden;
  box-sizing: border-box;
  background: var(--light-2);
  margin-left: 0;
  margin-right: 12px;
}
.carousel .indicators-photo .carousel-indicators [data-bs-target].active {
  outline-color: var(--primary);
}
.carousel .indicators-photo .carousel-indicators [data-bs-target] img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar {
  position: sticky;
  top: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #ffffff;
  box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--light);
  min-height: 95px;
  z-index: 100;
}
.navbar .navbar-brand {
  width: 188px;
}
.navbar .navbar-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.navbar .nav-item .nav-link {
  padding: 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.28px;
  color: var(--dark);
}
.navbar .nav-item .nav-link.active {
  color: var(--primary);
  background-color: transparent;
}
.navbar .navbar-toggler {
  width: 60px;
  height: 60px;
  border-radius: 16px;
}
.navbar .navbar-toggler:active, .navbar .navbar-toggler:focus {
  outline: 0 !important;
  box-shadow: none !important;
}
.navbar .country .dropdown .btn-secondary,
.navbar .country .dropdown .dropdown-item {
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 15px;
  border: 1px solid var(--light, #F8F8F8);
  background: var(--light, #F8F8F8);
  padding: 10px 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.28px;
  color: var(--dark, #000);
}
.navbar .country .dropdown .btn-secondary {
  min-width: 190px;
}
.navbar .country .dropdown .dropdown-toggle::after {
  margin-left: auto;
  border-top: 0.4em solid var(--dark);
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: 0.4em solid transparent;
  opacity: 0.5;
}
.navbar .country .dropdown .country-flag {
  width: 30px;
  height: 30px;
}
.navbar .country .dropdown .country-flag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.navbar .country .dropdown .dropdown-menu {
  padding: 10px;
  width: 100%;
}
.navbar .country .dropdown .dropdown-menu .dropdown-item {
  background-color: var(--white);
}
.navbar .country .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: var(--light);
}

@media (max-width: 767.98px) {
  /* .navbar {
      .navbar-brand {
          width: 155px;
      }
  } */
}
footer {
  padding-top: 70px;
  padding-bottom: 30px;
  background-color: var(--light);
}
footer h4 {
  margin-bottom: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr 1.5fr;
  gap: 45px;
  padding-bottom: 45px;
}

.footer-logo img {
  height: 44px;
  width: auto;
}

.footer-tagline {
  margin-top: 22px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.2px;
  color: var(--gray);
  max-width: 300px;
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  margin-bottom: 22px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 13px;
}
.footer-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover {
  color: var(--primary);
}

.grid-contact-footer {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
  text-decoration: none;
}
.grid-contact-footer svg {
  flex-shrink: 0;
  margin-top: 1px;
}
.grid-contact-footer p {
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.3px;
  color: var(--dark, #000);
  margin-top: 0;
  margin-bottom: 0;
}
.grid-contact-footer span {
  font-size: 13px;
  color: var(--primary);
}
.grid-contact-footer:hover p {
  color: var(--primary, #D00);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
  border-radius: 16px;
  filter: grayscale(0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 26px;
  border-top: 1px solid var(--gray-2);
}
.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: var(--gray);
}
.footer-bottom a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-map {
    grid-column: 1/-1;
  }
}
@media (max-width: 575px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.btn {
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: -0.28px;
  padding: 16px 30px;
  border-radius: 15px;
  --bs-btn-active-bg: var(--primary);
  --bs-btn-active-border-color: var(--primary);
}
.btn:focus, .btn:active {
  outline: 0;
  box-shadow: none;
  background-color: transparent;
}

.btn-icon {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: max-content;
  align-items: center;
  padding-left: 16px;
  padding-right: 19px;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn-primary svg path {
  fill: var(--white);
}
.btn-primary:hover {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.btn-primary:hover svg path {
  fill: var(--white);
}
.btn-primary:active, .btn-primary:focus {
  background-color: var(--white) !important;
  border-color: var(--white) !important;
  color: var(--primary) !important;
  outline: 0 !important;
  box-shadow: none !important;
}
.btn-primary:active svg path, .btn-primary:focus svg path {
  fill: var(--primary);
}
.btn-primary:disabled {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.btn-secondary:hover {
  background-color: var(--light);
  border-color: var(--light);
  color: var(--dark);
}
.btn-secondary:hover svg path {
  fill: var(--dark);
}
.btn-secondary:active, .btn-secondary:focus {
  background-color: var(--light);
  border-color: var(--light);
  color: var(--dark);
  outline: 0 !important;
  box-shadow: none !important;
}
.btn-secondary:active svg path, .btn-secondary:focus svg path {
  fill: var(--dark);
}
.btn-secondary:disabled {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.btn-outline-primary {
  background-color: var(--white);
  border-color: var(--primary) y;
  color: var(--primary);
  --bs-btn-active-bg: var(--primary);
  --bs-btn-active-border-color: var(--primary);
}
.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn-outline-primary:hover svg path {
  fill: var(--white);
}
.btn-outline-primary:active, .btn-outline-primary:focus {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn-outline-primary:disabled {
  background-color: var(--white);
  border-color: var(--primary) y;
  color: var(--primary);
}

.btn-outline-secondary:hover {
  background-color: var(--dark);
  color: var(--white);
}
.btn-outline-secondary:hover svg path {
  fill: var(--white);
}
.btn-outline-secondary:active, .btn-outline-secondary:focus {
  background-color: var(--dark);
  color: var(--white);
  outline: 0 !important;
  box-shadow: none !important;
}
.btn-outline-secondary:active svg path, .btn-outline-secondary:focus svg path {
  fill: var(--white);
}

.btn-whatsapp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  border-color: var(--success) y;
  color: var(--success);
}
.btn-whatsapp:hover {
  background-color: var(--success);
  border-color: var(--success);
  color: var(--white);
}
.btn-whatsapp:hover svg path {
  fill: var(--white);
}
.btn-whatsapp:active, .btn-whatsapp:focus {
  background-color: var(--success);
  border-color: var(--success);
  color: var(--white);
}
.btn-whatsapp:active svg path, .btn-whatsapp:focus svg path {
  fill: var(--white);
}
.btn-whatsapp:disabled {
  background-color: var(--white);
  border-color: var(--success) y;
  color: var(--success);
}

.btn-light {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--dark);
}
.btn-light svg path {
  fill: var(--dark);
}
.btn-light:hover {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.btn-light:hover svg path {
  fill: var(--white);
}
.btn-light:active, .btn-light:focus {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  outline: 0 !important;
  box-shadow: none !important;
}
.btn-light:active svg path, .btn-light:focus svg path {
  fill: var(--white);
}
.btn-light:disabled {
  background-color: var(--light);
  border-color: var(--light);
  color: var(--gray);
}

.btn-outline-light {
  border-color: var(--light-2);
  color: var(--dark);
}
.btn-outline-light:hover {
  background-color: var(--light-2);
  border-color: var(--light-2);
  color: var(--dark);
}
.btn-outline-light:active, .btn-outline-light:focus {
  background-color: var(--light-2);
  border-color: var(--light-2);
  color: var(--dark);
  outline: 0 !important;
  box-shadow: none !important;
}

.btn-close {
  background-size: 0.7rem;
}
.btn-close:focus, .btn-close:active {
  box-shadow: none;
}

.btn:focus-visible,
.btn-close:focus-visible,
.nav-link:focus-visible,
.navbar-toggler:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
  outline: 3px solid var(--primary) !important;
  outline-offset: 2px;
  box-shadow: none;
}

.modal .modal-content {
  border-radius: 1.0625rem;
  border-color: var(--light);
}
.modal .modal-header,
.modal .modal-footer {
  border-color: var(--light);
  border-width: 1px;
  padding: 1.25rem;
}
.modal .modal-footer {
  padding: 10px;
}
.modal .modal-footer button {
  margin-top: 0;
  margin-bottom: 0;
}
.modal .modal-body {
  padding: 1.875rem;
}
.modal .modal-lg {
  --bs-modal-width: 700px;
}

@media (max-width: 575.98px) {
  .modal .modal-body {
    padding: 1.5rem 0.875rem;
  }
}
.accordion {
  --bs-accordion-border-color: var(--light-2);
  --bs-accordion-border-width: 2px;
}
.accordion .accordion-button {
  padding: var(--bs-accordion-btn-padding-x);
}
.accordion .accordion-button:focus, .accordion .accordion-button:active {
  box-shadow: none;
}
.accordion .accordion-button:focus.accordion-button:not(.collapsed), .accordion .accordion-button:active.accordion-button:not(.collapsed) {
  box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color);
}
.accordion .accordion-button.accordion-button:not(.collapsed) {
  background-color: var(--white);
}
.accordion .accordion-button.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-icon);
}

/* convertir variables */
/* @import "carousel"; */
body {
  font-family: var(--font-family), sans-serif;
  font-weight: var(--font-weight-normal);
  min-height: 100vh;
  overflow-x: hidden;
}

.progress {
  --bs-progress-bar-bg: var(--primary);
}

/* utilities */
.line-v {
  width: 2px;
  height: 25px;
  background-color: var(--light);
}

.line-w {
  width: 100%;
  height: 2px;
  background-color: var(--light);
}

hr {
  color: var(--light);
  opacity: 1;
}

.overflow-x-auto {
  overflow-x: auto;
}

/* background */
.bg-primary {
  background-color: var(--primary) !important;
}

.bg-success {
  background-color: var(--light-success) !important;
}

.bg-danger {
  background-color: var(--light-danger) !important;
}

.bg-warning {
  background-color: var(--light-warning) !important;
}

/* svg colors */
.svg-success svg path {
  fill: var(--success);
}

.svg-danger svg path {
  fill: var(--danger);
}

.breadcrumb {
  align-items: center;
}
.breadcrumb .breadcrumb-item {
  line-height: 1;
  margin-bottom: 0;
  color: var(--gray);
}
.breadcrumb .breadcrumb-item a {
  color: var(--gray);
}
.breadcrumb .breadcrumb-item a:hover {
  color: var(--primary);
}

.badge {
  border-radius: 6px;
  display: flex;
  align-items: center;
  width: max-content;
}
.badge.bg-primary {
  margin-top: 0.3rem;
  margin-left: -0.7rem;
}

.popover {
  border-radius: 16px;
  border-color: var(--light);
}
.popover .popover-body {
  padding: 12px 16px;
  font-family: var(--font-family-poppins), sans-serif;
}
.popover .popover-arrow::before {
  border-top-color: var(--light);
}

.grid-social {
  display: flex;
  gap: 30px;
  margin-top: 8px;
}
.grid-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  width: 24px;
  height: 24px;
  transition: ease-in-out 0.2s;
}
.grid-social a svg path {
  fill: var(--dark);
}
.grid-social a:hover svg path {
  fill: var(--primary);
}
.grid-social a:hover {
  background-color: var(--light-pink);
}

.hero {
  scroll-margin-top: 150px;
  margin-bottom: 110px;
}
.hero .carousel-hero .carousel-caption {
  text-align: start;
  left: 7%;
  right: 7%;
  top: 24%;
  bottom: auto;
  max-width: 780px;
  z-index: 1;
}
.hero .carousel-hero .carousel-caption h1,
.hero .carousel-hero .carousel-caption h2 {
  color: var(--white, #FFF);
}
.hero .carousel-hero .carousel-caption h1 {
  margin-bottom: 20px;
}
.hero .carousel-hero .carousel-caption h2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.4px;
  margin-bottom: 40px;
}
.hero .carousel-hero .carousel-inner {
  border-radius: 0;
}
.hero .carousel-hero .carousel-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  background: var(--dark, #101010);
}
.hero .carousel-hero .carousel-inner .carousel-item {
  min-height: 500px;
  height: calc(100vh - 90px);
}
.hero .carousel-hero .carousel-inner img {
  height: 100%;
  object-fit: cover;
}

.service-hero {
  scroll-margin-top: 150px;
  margin-bottom: 120px;
}
.service-hero .h1 {
  text-align: center;
  margin-bottom: 78px;
}
.service-hero .service-items {
  padding-top: 80px;
  padding-bottom: 100px;
  background-color: var(--light);
}
.service-hero .service-items .card {
  height: 100%;
}
.service-hero .service-items .card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-hero .btn-services {
  margin-top: -25px;
}

.about {
  margin-bottom: 145px;
}
.about .grid-photo-about {
  display: flex;
  gap: 12px;
  margin-top: 65px;
  margin-bottom: 70px;
}
.about .grid-photo-about .photo-about {
  width: 100%;
  height: 310px;
  border-radius: 15px;
  overflow: hidden;
}
.about .grid-photo-about .photo-about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .grid-photo-about .photo-about:first-child {
  width: 430px;
}

.about-numbers .fs1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.4px;
  color: var(--dark, #000);
  margin-right: 18px;
}

.about-page {
  margin-top: 80px;
}
.about-page .grid-backlight {
  position: relative;
  margin-top: 120px;
  margin-bottom: 100px;
  padding-bottom: 80px;
  background-color: var(--light);
}
.about-page .grid-backlight img {
  margin-top: -50px;
  border-radius: 15px;
}
.about-page .grid-backlight .about-numbers {
  position: absolute;
  bottom: 0;
  margin-bottom: 50px;
}
.about-page .grid-certification {
  margin-bottom: 100px;
}
.about-page .grid-certification .header {
  position: sticky;
  top: 150px;
}
.about-page .directory {
  background-color: var(--light);
  padding-top: 80px;
  padding-bottom: 50px;
  margin-bottom: 100px;
}
.about-page .cta-contact {
  margin-bottom: 150px;
}

.projects {
  padding-top: 70px;
  padding-bottom: 50px;
  margin-bottom: 90px;
  background-color: var(--light);
}
.projects .carousel-projects {
  margin-top: 50px;
}
.projects .carousel-projects .grid-controls {
  position: relative;
  bottom: 0;
  right: 0;
  justify-content: center;
  margin-top: 50px;
}
.projects .carousel-projects .grid-controls .carousel-indicators {
  margin: 0 27px 0 0;
  align-items: center;
  gap: 5px;
}
.projects .carousel-projects .grid-controls .carousel-indicators [data-bs-target] {
  background-color: var(--dark);
}
.projects .carousel-projects .grid-controls .carousel-indicators [data-bs-target].active {
  background-color: var(--primary);
}
.projects .carousel-projects .grid-controls .carousel-control-next,
.projects .carousel-projects .grid-controls .carousel-control-prev {
  background-color: var(--dark);
}
.projects .carousel-projects .grid-controls .carousel-control-next svg path,
.projects .carousel-projects .grid-controls .carousel-control-prev svg path {
  fill: var(--white);
}
.projects .carousel-projects .carousel-caption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  text-align: start;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 30px;
  z-index: 3;
}
.projects .carousel-projects .carousel-caption h5,
.projects .carousel-projects .carousel-caption p {
  color: var(--white);
}
.projects .carousel-projects .carousel-caption h5 {
  max-width: 400px;
  margin-bottom: 20px;
}
.projects .carousel-projects .carousel-caption .btn {
  height: max-content;
}
.projects .carousel-projects .carousel-inner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, #000 29.25%, rgba(0, 0, 0, 0) 97.55%);
  opacity: 0.7;
  z-index: 1;
}
.projects .carousel-projects .carousel-inner .carousel-item {
  min-height: 450px;
}
.projects .carousel-projects .carousel-inner .carousel-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  min-width: 85px;
  height: 85px;
  border-radius: 20px;
  background-color: var(--light, #F8F8F8);
  margin-right: 12px;
}

.contact {
  scroll-margin-top: 150px;
  margin-top: 110px;
  margin-bottom: 150px;
}
.contact .form-floating {
  margin-bottom: 30px;
}
.contact .h1 {
  margin-bottom: 18px;
}
.contact .h3 {
  margin-bottom: 60px;
}
.contact .btn {
  margin: 50px auto 0 auto;
}

.newsletter {
  padding: 60px;
  border-radius: 20px;
  background-color: var(--dark, #000);
  margin-bottom: 140px;
}
.newsletter .h1 {
  font-size: 32px;
  color: var(--white);
}
.newsletter .form-floating {
  width: 100%;
}
.newsletter .form-floating label,
.newsletter .form-floating input {
  color: var(--white);
}
.newsletter .form-floating input {
  background-color: transparent;
  border-color: var(--white);
}

.projects-page {
  margin-top: 80px;
  margin-bottom: 120px;
}
.projects-page .h1 {
  margin-bottom: 28px;
}
.projects-page .nav-pills {
  gap: 12px;
  margin-bottom: 60px;
}
.projects-page .nav-pills .nav-link {
  color: var(--primary, #D00);
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: -0.28px;
  padding: 16px 30px;
  border: 1px solid var(--primary, #D00);
  border-radius: 15px;
}
.projects-page .nav-pills .nav-link.active {
  color: var(--white, #FFF);
  background-color: var(--primary, #D00);
}
.projects-page .card-project {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 500px;
  margin-bottom: 30px;
}
.projects-page .card-project .card-text {
  position: absolute;
  bottom: 0;
  padding: 30px;
  z-index: 3;
  width: 100%;
}
.projects-page .card-project .card-text h3,
.projects-page .card-project .card-text h5 {
  color: var(--white);
}
.projects-page .card-project .card-text h3 {
  margin-bottom: 30px;
}
.projects-page .card-project .card-text h5 {
  margin-bottom: 0;
}
.projects-page .card-project .card-text .d-flex {
  align-items: center;
  justify-content: space-between;
}
.projects-page .card-project .card-img {
  border-radius: 0;
  height: 100%;
}
.projects-page .card-project .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects-page .card-project .card-img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #000 29.25%, rgba(0, 0, 0, 0) 97.55%);
  opacity: 0.7;
}

.projects-detail .header-project {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
  margin-bottom: 50px;
}
.projects-detail .header-project .name-project h1 {
  margin-bottom: 20px;
}
.projects-detail .header-project .name-project h3 {
  margin-bottom: 0;
}
.projects-detail .header-project .name-project {
  max-width: 600px;
}
.projects-detail .carousel-project {
  margin-bottom: 50px;
}
.projects-detail .cta-contact {
  margin-top: 140px;
  margin-bottom: 160px;
}

.grid-buttons {
  display: flex;
  flex-wrap: wrap-reverse;
  gap: 10px;
}

.service {
  margin-bottom: 130px;
}
.service .header-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
  margin-bottom: 50px;
}
.service .header-service .name-service .h1 {
  margin-bottom: 20px;
}
.service .header-service .name-service h3 {
  margin-bottom: 0;
}
.service .header-service .name-service {
  max-width: 830px;
}
.service .carousel-service {
  margin-bottom: 60px;
}
.service .carousel-service .carousel-inner {
  border-radius: 0;
}
.service .cta-contact {
  margin-top: 150px;
  margin-bottom: 160px;
}
.service .grid-icons {
  margin-bottom: 70px;
}
.service .agend-service {
  scroll-margin-top: 150px;
  margin-top: 130px;
  text-align: center;
}
.service .agend-service .h1 {
  margin-bottom: 80px;
}
.service .agend-service .form-floating {
  margin-bottom: 30px;
}
.service .grid-buttons {
  justify-content: center;
  margin-top: 70px;
}

.blog {
  margin-bottom: 160px;
}
.blog .h1 {
  padding-top: 70px;
  margin-bottom: 50px;
}
.blog .header-blog {
  margin-top: 70px;
}
.blog .header-blog h1 {
  margin-bottom: 50px;
}
.blog .banner-blog {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 50px;
}
.blog .share-post {
  display: flex;
  gap: 10px;
  margin-top: 60px;
}
.blog .share-post .btn-outline-secondary {
  padding-right: 16px;
}
.blog .blog-highlight {
  background: var(--light, #F8F8F8);
  padding-bottom: 75px;
}
.blog .blog-highlight .blog-aside .card-blog:hover {
  background-color: var(--white);
}
.blog .card-blog {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px;
  border-radius: 20px;
  border: 2px solid var(--light, #F8F8F8);
  transition: ease-in-out 0.5s;
}
.blog .card-blog:hover {
  box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.05);
}
.blog .card-blog:hover .h5 {
  color: var(--dark) !important;
}
.blog .card-blog:hover h4 {
  color: var(--primary);
}
.blog .card-blog:hover img {
  scale: 1.5 1.5;
}
.blog .card-blog h4,
.blog .card-blog .h5 {
  transition: 0.5s;
}
.blog .card-blog .h5 {
  font-size: 13px;
  letter-spacing: -0.26px;
}
.blog .card-blog h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: -0.28px;
  padding-right: 10px;
}
.blog .card-blog .blog-img {
  width: 180px;
  min-width: 180px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
}
.blog .card-blog .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.blog .card-blog-large {
  padding: 0;
  transition: 0.5s;
}
.blog .card-blog-large:hover .h5 {
  color: var(--dark) !important;
}
.blog .card-blog-large:hover h4 {
  color: var(--primary);
}
.blog .card-blog-large:hover img {
  scale: 1.5 1.5;
}
.blog .card-blog-large .blog-img {
  width: 100%;
  height: 330px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
.blog .card-blog-large .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.blog .card-blog-large .h5 {
  font-size: 13px;
  letter-spacing: -0.26px;
  margin-bottom: 10px;
  transition: 0.5s;
}
.blog .card-blog-large h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: -0.36px;
  margin-bottom: 0;
  transition: 0.5s;
}
.blog .news-post {
  margin-top: 75px;
  margin-bottom: 120px;
}
.blog .news-post .h2 {
  margin-bottom: 50px;
}

.paginacion {
  margin-top: 50px;
}
.paginacion .paginacion-lista {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.paginacion .paginacion-enlace {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--primary, #D00);
  border-radius: 15px;
  color: var(--primary, #D00);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.28px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.paginacion a.paginacion-enlace:hover {
  background-color: var(--primary, #D00);
  color: var(--white, #FFF);
}
.paginacion .paginacion-item.active .paginacion-enlace {
  background-color: var(--primary, #D00);
  color: var(--white, #FFF);
}
.paginacion .paginacion-item.disabled .paginacion-enlace {
  border-color: var(--gray-2, #E8E8E8);
  color: var(--gray, #5D5D5D);
  opacity: 0.6;
}

.faqs {
  background-color: var(--light);
  margin-bottom: 4px;
}
.faqs h1 {
  margin-top: 80px;
  margin-bottom: 50px;
}
.faqs .accordion {
  border-radius: 15px;
  margin-bottom: 120px;
  overflow: hidden;
}
.faqs .accordion .accordion-header {
  margin-bottom: 2px;
}
.faqs .accordion .accordion-body {
  margin-bottom: 3px;
}

.cta-contact {
  text-align: center;
}
.cta-contact .h1 {
  margin-bottom: 14px;
}
.cta-contact .grid-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.cursor-pointer:hover {
  cursor: pointer;
}

.solutions {
  margin-top: 80px;
  margin-bottom: 170px;
}
.solutions h1 {
  margin-bottom: 40px;
}
.solutions .nav-solution {
  position: sticky;
  top: 135px;
  padding: 24px;
  border-radius: 20px;
  background: var(--light, #F8F8F8);
}
.solutions .nav-solution .nav-pills {
  flex-direction: column;
}
.solutions .nav-solution .nav-pills .nav-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.28px;
  padding: 13px 25px;
  color: var(--dark);
  background-color: var(--white, #FFF);
  border-radius: 15px;
  margin-bottom: 10px;
}
.solutions .nav-solution .nav-pills .nav-link:last-child {
  margin-bottom: 0;
}
.solutions .nav-solution .nav-pills .nav-link.active {
  color: var(--white, #FFF);
  background-color: var(--primary, #D00);
}
.solutions .img-solution {
  width: 100%;
  height: 340px;
  margin-top: 30px;
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
}
.solutions .img-solution img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solutions .grid-buttons {
  margin-top: 40px;
}

@media (max-width: 767.98px) {
  .hero .carousel-hero .carousel-caption {
    top: 12%;
  }
  .hero .carousel-hero .carousel-inner .carousel-item {
    min-height: 70vh;
  }
  .btn {
    width: 100%;
  }
  .carousel-projects .text {
    margin-bottom: 20px;
  }
  .newsletter {
    padding: 60px 40px;
  }
  .grid-buttons {
    flex-direction: column;
  }
  .service .header-service {
    margin-top: 40px;
    flex-direction: column;
    gap: 20px;
  }
  .projects-detail .header-project {
    margin-top: 40px;
    flex-direction: column;
    gap: 20px;
  }
  .carousel-service .carousel-item,
  .carousel-project .carousel-item {
    height: 350px;
  }
  .carousel-service .carousel-item img,
  .carousel-project .carousel-item img {
    height: 100%;
    object-fit: cover;
  }
  .projects-page {
    margin-top: 40px;
  }
  .projects-page .card-project .card-text .d-flex {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  .blog .h1 {
    padding-top: 40px;
  }
  .blog .card-blog {
    gap: 14px;
  }
  .blog .card-blog .blog-img {
    min-width: 90px;
  }
  .blog .card-blog-large {
    margin-bottom: 50px;
  }
  .blog .blog-highlight {
    padding-bottom: 30px;
  }
  .blog .news-post {
    margin-top: 55px;
    margin-bottom: 60px;
  }
  .blog .header-blog {
    margin-top: 50px;
  }
  .blog .banner-blog {
    height: 350px;
  }
  .blog .banner-blog img {
    height: 100%;
    object-fit: cover;
  }
  .blog .share-post .btn {
    width: auto;
  }
}
@media (max-width: 991.98px) {
  h1,
  .h1 {
    font-size: 27px;
    line-height: 32px;
  }
  h2,
  .h2 {
    font-size: 21px;
    line-height: 25px;
  }
  .nav-solution {
    display: none;
  }
  .hero {
    margin-bottom: 90px;
  }
  .hero .carousel-hero .carousel-caption h2 {
    font-size: 16px;
    line-height: 24px;
  }
  .hero .carousel-hero .carousel-inner .carousel-item {
    height: calc(60vh - 90px);
  }
  .projects-page .nav-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .about-page .grid-backlight .about-numbers {
    position: relative;
    margin-top: 60px;
  }
}
@media (min-width: 1399.98px) {
  .container {
    max-width: 1440px;
  }
}
/* EXPRESS Home Section Styles */
.express-home-section {
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 120px;
}

/* Desktop: diagonal gradient */
@media (min-width: 768px) {
  .express-home-section::before {
    content: "";
    position: absolute;
    top: -70%;
    right: 45%;
    width: 60%;
    height: 220%;
    background: linear-gradient(135deg, #B30000 20%, var(--primary) 80%);
    transform: rotate(25deg);
    z-index: 1;
  }
}
/* Mobile: full red background */
@media (max-width: 767px) {
  .express-home-section {
    background: var(--primary) !important;
  }
  .express-title {
    color: var(--white) !important;
  }
  .express-title-accent {
    color: #FFE6E6 !important;
  }
  .express-description {
    color: #F0F0F0 !important;
  }
  .express-features span {
    color: var(--white) !important;
  }
  /* Badges visibility in mobile */
  .express-badge .badge {
    border: 2px solid white !important;
  }
  .express-badge .badge:first-child {
    background-color: var(--white) !important;
    color: var(--primary) !important;
  }
  .express-badge .badge:last-child {
    background-color: transparent !important;
    color: var(--white) !important;
  }
  /* Button styling for mobile */
  .express-home-section .btn-primary {
    background-color: var(--white) !important;
    border-color: var(--white) !important;
    color: var(--primary) !important;
    font-weight: 600;
  }
  .express-home-section .btn-primary:hover {
    background-color: var(--dark) !important;
    border-color: var(--dark) !important;
    color: var(--white) !important;
  }
  .express-home-section .btn-primary svg path {
    fill: var(--primary) !important;
  }
  .express-home-section .btn-primary:hover svg path {
    fill: var(--white) !important;
  }
}
/* Desktop text colors */
@media (min-width: 768px) {
  .express-title {
    color: var(--dark) !important;
  }
  .express-title-accent {
    color: var(--primary) !important;
  }
  .express-description {
    color: var(--gray) !important;
  }
  .express-features span {
    color: var(--dark) !important;
  }
}
.express-home-section .container {
  position: relative;
  z-index: 2;
}

.express-badge .badge {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.express-preview-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.express-preview-card:hover {
  transform: translateY(-5px);
}

.express-preview-card .card {
  transition: all 0.3s ease;
  border-radius: 20px;
}

.express-preview-card:hover .card {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.express-text-overlay {
  position: relative;
  z-index: 3;
}

.express-features span {
  font-size: 15px;
  color: var(--gray);
}

/* Desktop only - text adjustments for red background */
@media (min-width: 992px) {
  .express-text-overlay .express-badge .badge:first-child {
    background-color: var(--white) !important;
    color: var(--primary) !important;
  }
  .express-text-overlay .express-badge .badge:last-child {
    background-color: transparent !important;
    color: var(--white) !important;
    border-color: var(--white) !important;
  }
  .express-text-overlay .express-features span {
    color: var(--white) !important;
  }
  .express-text-overlay .express-features i {
    color: var(--white) !important;
  }
  .express-text-overlay .lead {
    color: var(--white) !important;
  }
  .express-text-overlay h2 {
    color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  .express-text-overlay h2 span {
    color: var(--white) !important;
  }
  .express-text-overlay .btn-primary {
    background-color: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 2px solid var(--white) !important;
    color: var(--white) !important;
    font-weight: 600;
  }
  .express-text-overlay .btn-primary:hover {
    background-color: var(--white) !important;
    color: var(--primary) !important;
    border-color: var(--white) !important;
  }
}
.express-card-img {
  height: 120px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.express-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.express-preview-card:hover .express-card-img img {
  transform: scale(1.05);
}

.min-vh-50 {
  min-height: 50vh;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .express-home-section::before {
    display: none;
  }
  .express-home-section {
    background: var(--light);
  }
  .min-vh-50 {
    min-height: auto;
    padding: 2rem 0;
  }
}
@media (max-width: 767.98px) {
  .express-badge .badge {
    font-size: 13px;
    padding: 0.4rem 0.8rem !important;
  }
  .display-5 {
    font-size: 2rem;
  }
  .express-preview-card .card-body {
    padding: 1.5rem !important;
  }
}
.select-page {
  /* Express Landing Specific Styles — reused for Select */
}
.select-page .hero-express {
  position: relative;
  min-height: 100vh;
  background-image: url("/images/select/nmfire-sala-bombas-pioneros.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.select-page .hero-express::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary) 55%, transparent 55%);
  z-index: 1;
}
.select-page .hero-express .container {
  position: relative;
  z-index: 2;
}
.select-page .hero-content {
  color: var(--white);
  padding-right: 2rem;
}
.select-page .btn-express-cta {
  background-color: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  font-weight: 600;
}
.select-page .btn-express-cta:hover {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.select-page .hero-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.select-page .hero-subtitle {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--white);
  opacity: 0.95;
}
.select-page .services-express {
  background: var(--white);
}
.select-page .service-image {
  position: relative;
  overflow: hidden;
  box-shadow: 0px 2px 14px rgba(94, 94, 94, 0.05);
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .select-page .service-image {
    height: 100%;
    width: 103%;
  }
}
.select-page .service-item {
  padding: 2rem 0;
}
@media (min-width: 992px) {
  .select-page .service-item {
    padding: 0;
  }
}
.select-page .service-image:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 24px rgba(94, 94, 94, 0.12);
}
.select-page .service-image img {
  transition: transform 0.3s ease;
}
.select-page .service-image:hover img {
  transform: scale(1.05);
}
.select-page .service-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.03);
  z-index: 1;
  pointer-events: none;
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.select-page .service-image:hover::before {
  opacity: 1;
}
.select-page {
  /* Placeholder de imagen pendiente */
}
.select-page .image-placeholder {
  width: 100%;
  min-height: 300px;
  background: var(--light);
  border: 2px dashed var(--gray-2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
@media (min-width: 992px) {
  .select-page .image-placeholder {
    min-height: 400px;
  }
}
.select-page .placeholder-content {
  text-align: center;
  color: var(--gray);
}
.select-page .placeholder-content svg {
  margin-bottom: 12px;
  opacity: 0.5;
}
.select-page .placeholder-text {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  color: var(--gray);
  letter-spacing: 0.3px;
}
.select-page .service-content {
  position: relative;
}
.select-page .service-title {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
  position: relative;
}
.select-page .service-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff4444);
  border-radius: 2px;
}
.select-page .service-description {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.select-page .btn-outline-primary.btn-icon {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.select-page .btn-outline-primary.btn-icon:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(221, 0, 0, 0.2);
}
.select-page {
  /* Responsive */
}
@media (max-width: 991.98px) {
  .select-page .hero-express::after {
    display: none;
  }
  .select-page .hero-express {
    background: var(--primary);
    text-align: center;
    min-height: 70vh;
    padding: 3rem 0;
  }
  .select-page .hero-express .row {
    min-height: auto;
  }
  .select-page .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .select-page .hero-title {
    font-size: 36px;
    margin-bottom: 1.5rem;
  }
  .select-page .hero-subtitle {
    font-size: 20px;
    margin-bottom: 2rem;
  }
  .select-page .hero-image-mobile .hero-image-bg {
    display: block;
    height: 300px;
    background-image: url("/images/select/nmfire-sala-bombas-pioneros.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media (max-width: 767.98px) {
  .select-page .hero-express {
    min-height: 60vh;
    padding: 2rem 0;
  }
  .select-page .hero-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .select-page .hero-subtitle {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  .select-page .btn-express-cta {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 16px;
  }
  .select-page .services-express .service-item {
    text-align: center;
  }
  .select-page .services-express .service-content {
    margin-bottom: 2rem;
  }
  .select-page .service-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.select-page {
  /* Welcome Section */
}
.select-page .welcome-express {
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
  position: relative;
}
.select-page .welcome-badge .badge {
  font-size: 14px;
  letter-spacing: 0.5px;
}
.select-page .welcome-content h2 {
  line-height: 1.2;
}
.select-page .welcome-features {
  margin-top: 2rem;
}
.select-page .welcome-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.select-page .bullet-point {
  color: var(--primary);
  font-size: 20px;
  font-weight: bold;
  width: 20px;
  text-align: center;
}
.select-page .welcome-image {
  position: relative;
}
.select-page .welcome-image::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #B30000 100%);
  border-radius: 20px;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .select-page .welcome-express {
    text-align: center;
  }
  .select-page .welcome-features {
    text-align: left;
    max-width: 400px;
    margin: 2rem auto 0;
  }
}
.select-page {
  /* Services Intro */
}
.select-page .services-intro {
  background: var(--light);
}
.select-page .services-intro-title {
  font-weight: 600;
  color: var(--dark);
  font-size: 36px;
}
.select-page .services-intro-subtitle {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}
.select-page .services-intro-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.select-page .divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}
@media (max-width: 575.98px) {
  .select-page .hero-express {
    padding: 1.5rem 0;
  }
  .select-page .hero-title {
    font-size: 24px;
  }
  .select-page .hero-subtitle {
    font-size: 15px;
  }
  .select-page .services-intro-title {
    font-size: 28px;
  }
  .select-page .services-intro-subtitle {
    font-size: 16px;
  }
  .select-page .divider-line {
    width: 40px;
  }
  .select-page .btn-express-cta {
    font-size: 16px;
    padding: 0.875rem 1.5rem;
  }
  .select-page .service-title {
    font-size: 20px;
  }
  .select-page .service-description {
    font-size: 15px;
  }
}
.select-page {
  /* Express Service Professional Styles — reused for Select */
  /* Hero Section with Background Image */
}
.select-page .express-service-hero {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
}
.select-page .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.select-page .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.select-page .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(221, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}
.select-page .express-service-hero .container {
  z-index: 3;
}
.select-page .service-hero-title {
  font-weight: 600;
  line-height: 1.2;
  font-size: 36px;
}
.select-page .service-hero-description {
  font-size: 20px;
  max-width: 600px;
}
.select-page .hero-badges .badge {
  font-size: 14px;
  padding: 0.5rem 1rem;
}
.select-page .breadcrumb {
  background: none;
  padding: 0;
}
.select-page .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: rgba(255, 255, 255, 0.7);
}
.select-page {
  /* Product Overview */
}
.select-page .express-service-overview {
  background: var(--white);
}
.select-page .product-image-container img {
  transition: transform 0.3s ease;
}
.select-page .product-image-container:hover img {
  transform: scale(1.02);
}
.select-page .specifications-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-2);
}
.select-page .specifications-list li:last-child {
  border-bottom: none;
}
.select-page {
  /* Benefits */
}
.select-page .express-service-benefits {
  background: var(--light);
}
.select-page .benefit-card {
  border: 1px solid var(--gray-2);
  transition: all 0.3s ease;
}
.select-page .benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 24px rgba(94, 94, 94, 0.12) !important;
}
.select-page .benefit-icon i {
  font-size: 24px;
  width: 24px;
  height: 24px;
}
.select-page {
  /* Applications */
}
.select-page .express-service-applications {
  background: var(--white);
}
.select-page .application-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 2px 14px rgba(94, 94, 94, 0.05);
  transition: all 0.3s ease;
}
.select-page .application-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 24px rgba(94, 94, 94, 0.12);
}
.select-page .application-image img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.select-page {
  /* CTA */
}
.select-page .express-service-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #B30000 100%);
  color: var(--white) !important;
}
.select-page .express-service-cta h3 {
  color: var(--white) !important;
  font-weight: 600;
}
.select-page .express-service-cta p {
  color: var(--white) !important;
}
.select-page .express-service-cta .lead {
  color: rgba(255, 255, 255, 0.95) !important;
}
.select-page .cta-image-container img {
  max-height: 300px;
  object-fit: cover;
  width: 100%;
}
.select-page .cta-buttons .btn {
  min-width: 200px;
  font-weight: 600;
}
.select-page .cta-buttons .btn-light {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary) !important;
  font-weight: 600;
}
.select-page .cta-buttons .btn-light:hover {
  background-color: var(--light);
  border-color: var(--light);
  color: #B30000 !important;
  transform: translateY(-2px);
}
.select-page .cta-buttons .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white) !important;
  background-color: transparent;
}
.select-page .cta-buttons .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white) !important;
  transform: translateY(-2px);
}
.select-page .contact-info {
  font-size: 15px;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.9) !important;
}
.select-page .contact-info p {
  color: rgba(255, 255, 255, 0.9) !important;
}
.select-page .contact-info i {
  width: 20px;
  color: rgba(255, 255, 255, 0.8) !important;
}
.select-page {
  /* Back */
}
.select-page .express-service-back {
  background: var(--light);
}
.select-page {
  /* Hero sin imagen — fondo plano sólido */
}
.select-page .express-service-hero.hero-no-image {
  background: linear-gradient(135deg, var(--primary) 0%, #B30000 100%);
  min-height: 50vh;
}
.select-page {
  /* (placeholder .image-placeholder definido una sola vez en la sección Listado Select) */
  /* FAQ */
}
.select-page .accordion-button:not(.collapsed) {
  background: #fff5f5;
  color: #B30000;
  box-shadow: none;
}
.select-page .accordion-button:focus {
  box-shadow: none;
}
.select-page {
  /* Responsive */
}
@media (max-width: 991.98px) {
  .select-page .service-hero-title {
    font-size: 2rem;
  }
  .select-page .hero-badges {
    text-align: center;
    margin-top: 1rem;
  }
  .select-page .product-info {
    padding-left: 0 !important;
    margin-top: 2rem;
  }
  .select-page .cta-content {
    padding-left: 0 !important;
    text-align: center;
    margin-top: 2rem;
  }
  .select-page .cta-buttons .btn {
    min-width: auto;
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767.98px) {
  .select-page .service-hero-title {
    font-size: 28px;
  }
  .select-page .service-hero-description {
    font-size: 16px;
  }
  .select-page .express-service-hero {
    min-height: 50vh;
  }
  .select-page .application-image img {
    height: 150px;
  }
  .select-page .benefit-card {
    margin-bottom: 1rem;
  }
}
.select-page {
  /* Animations */
}
.select-page .product-image-container, .select-page .application-card, .select-page .benefit-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.select-page .product-image-container {
  animation-delay: 0.2s;
}
.select-page .benefit-card:nth-child(odd) {
  animation-delay: 0.3s;
}
.select-page .benefit-card:nth-child(even) {
  animation-delay: 0.4s;
}
.select-page .application-card:nth-child(1) {
  animation-delay: 0.2s;
}
.select-page .application-card:nth-child(2) {
  animation-delay: 0.3s;
}
.select-page .application-card:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.select-page .benefit-card,
.select-page .application-card,
.select-page .card {
  border-radius: 20px;
  border: 2px solid var(--light);
  box-shadow: 0px 2px 14px rgba(94, 94, 94, 0.05);
}
.select-page .application-card:hover,
.select-page .benefit-card:hover {
  box-shadow: 0px 8px 24px rgba(94, 94, 94, 0.12) !important;
}
.select-page .express-service-overview.py-5,
.select-page .express-service-benefits.py-5,
.select-page .express-service-applications.py-5,
.select-page .express-service-cta.py-5,
.select-page .select-inquiry-form.py-5,
.select-page .services-express.py-5,
.select-page .welcome-express.py-5,
.select-page .services-intro.py-5 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.select-page section.py-5.bg-light {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

@media (max-width: 767.98px) {
  .select-page .express-service-overview.py-5,
  .select-page .express-service-benefits.py-5,
  .select-page .express-service-applications.py-5,
  .select-page .express-service-cta.py-5,
  .select-page .select-inquiry-form.py-5,
  .select-page .services-express.py-5,
  .select-page .welcome-express.py-5,
  .select-page .services-intro.py-5 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .select-page section.py-5.bg-light {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}
.select-page .select-media {
  border-radius: 15px;
  box-shadow: 0px 2px 14px rgba(94, 94, 94, 0.05);
}
.select-page .process-card {
  border-radius: 20px;
  border: 2px solid var(--light);
  box-shadow: 0px 2px 14px rgba(94, 94, 94, 0.05);
}

.select-page .select-note {
  background: var(--light);
  border-left: 4px solid var(--primary);
  border-radius: 15px;
  padding: 16px 20px;
}
.select-page .select-note small,
.select-page .select-note p {
  display: block;
  margin: 0;
  font-size: 15px;
  line-height: 22px;
  color: var(--gray);
}

.select-page .badge {
  display: inline-block;
  max-width: 100%;
  white-space: normal;
  text-align: left;
}
