/*!***********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs/index.js??ruleSet[1].rules[1].use[2]!./sass/main.scss ***!
  \***********************************************************************************************************************************************************************/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: "Roboto", sans-serif;
  color: #1A1A1B;
  background: #FFFFFF;
}
body.menu-open {
  overflow: hidden;
}

input,
textarea {
  width: 100%;
  padding: 20px;
  background: #111111;
  border: 1px solid #333333;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
}
input:focus,
textarea:focus {
  border-color: #E31E24;
  outline: none;
}

h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  margin-bottom: 25px;
  padding-left: 20px;
  margin-bottom: 60px;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

.section-padding {
  padding: 80px 60px;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 15px;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  text-transform: uppercase;
}

.linea-roja {
  width: 80px;
  height: 5px;
  background-color: #E31E24;
  margin: 25px auto 0;
}

header {
  background: #FFFFFF;
  border-bottom: 4px solid #E31E24;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo > img {
  max-height: 70px;
}
.logo span {
  color: #E31E24;
}

.nav-menu a {
  text-decoration: none;
  color: #1A1A1B;
  font-weight: 700;
  font-size: 13px;
  margin-left: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.nav-menu a:hover {
  color: #E31E24;
}
@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  background-color: #E31E24;
  z-index: 9999;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 4px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
  display: block;
}
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
}

.menu-open .hamburger {
  position: fixed;
  right: 20px;
  top: 15px;
}
.menu-open .hamburger span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: #FFFFFF;
}
.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}
.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: #FFFFFF;
}
.menu-open .mobile-menu {
  right: 0;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #1A1A1B;
  display: flex;
  flex-direction: column;
  padding: 100px 40px;
  gap: 25px;
  transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
  z-index: 1500;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}
.mobile-menu a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

footer {
  padding: 20px 0;
  background: #b3161b;
  border-top: 1px solid #222;
  color: #fff;
  text-align: center;
}
footer .redes-sociales {
  margin-top: 20px;
}
footer .redes-sociales a {
  color: #fff;
  text-decoration: none;
}
footer .redes-sociales a:hover {
  color: #E31E24;
}

.btn {
  display: inline-block;
  padding: 18px 35px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-rojo {
  background: #E31E24;
  color: #FFFFFF;
}
.btn-rojo:hover {
  background: #b3161b;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
}

.btn-wsp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #008069;
  color: #FFFFFF;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-up {
  position: fixed;
  bottom: 110px;
  right: 35px;
  z-index: 9999;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E31E24;
  color: #FFFFFF;
  width: 45px;
  height: 45px;
  text-decoration: none;
  font-size: 20px;
}

.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: transparent;
  color: gray;
  border: none;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.arrow:hover {
  color: #E31E24;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.arrow.prev {
  left: 10px;
}
.arrow.next {
  right: 10px;
}

.arrow-obras {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: transparent;
  color: gray;
  border: none;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.arrow-obras:hover {
  color: #E31E24;
}
.arrow-obras {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}
.arrow-obras.prev {
  left: -25px;
}
.arrow-obras.next {
  right: -25px;
}
@media (max-width: 768px) {
  .arrow-obras {
    display: none;
  }
}

.card {
  background: #FFFFFF;
  padding: 50px 40px;
  transition: all 0.3s ease;
  border-bottom: 0 solid #E31E24;
  text-align: left;
}
.card:hover {
  transform: translateY(-10px);
  border-bottom-width: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.card h3 {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 15px;
  font-size: 20px;
}
.card p {
  color: #666666;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 15px;
}

.gallery-item {
  height: 350px;
  background-color: #1A1A1B;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.8;
}
.gallery-item:hover img {
  transform: scale(1.1);
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  width: 100%;
  color: #FFFFFF;
}

.carousel-container {
  position: relative;
  padding: 0 10px;
}

.gallery-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.gallery-carousel::-webkit-scrollbar {
  display: none;
}
.gallery-carousel .gallery-item {
  min-width: calc(50% - 10px);
  scroll-snap-align: start;
}
@media (max-width: 768px) {
  .gallery-carousel .gallery-item {
    min-width: 100%;
  }
}

.form-group {
  margin-bottom: 20px;
}

.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.hero-content {
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .hero h1 {
    font-size: clamp(28px, 4vw, 32px);
  }
}
.hero p {
  font-size: clamp(22px, 2vw, 28px);
  max-width: 800px;
  margin: 0 auto 40px;
  font-weight: 300;
  color: #ddd;
}

.section-about {
  padding: 100px 0;
  background-color: #F5F5F5;
}
.section-about .container:has(.content-about-grid) {
  display: flex;
  align-items: stretch;
  gap: 30px;
}
@media (max-width: 992px) {
  .section-about .container:has(.content-about-grid) {
    flex-direction: column;
  }
}

.content-about-grid {
  width: 60%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .content-about-grid {
    width: 100%;
  }
}

.content-about-vide {
  width: 40%;
}
@media (max-width: 992px) {
  .content-about-vide {
    width: 100%;
  }
}
.content-about-vide .about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-grid {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  height: 100%;
  gap: 20px;
}

.v2-card {
  background: #FFFFFF;
  padding: 30px 40px;
  border-bottom: 8px solid #E31E24;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.v2-card p {
  color: #666666;
  line-height: 1.7;
}

.empresa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 992px) {
  .empresa-grid {
    grid-template-columns: 1fr;
  }
}

.empresa-text p {
  font-size: 18px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.empresa-img {
  height: 450px;
  background: #F8F9FA url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=800&q=80") center/cover;
  position: relative;
}
.empresa-img::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 10px solid #E31E24;
  z-index: -1;
}

.section-services {
  padding: 100px 20px;
  border-bottom: 2px solid #bbb;
}
.section-services p {
  color: #444;
  line-height: 1.7;
  margin: 0;
}

.servicios-grid-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .servicios-grid-3 {
    grid-template-columns: 1fr;
  }
}
.servicios-grid-3 > div:first-child {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.servicios-grid-3 > div:first-child .servicios-img {
  width: 100%;
  height: 420px;
  margin-bottom: 0;
}
.servicios-grid-3 > div:first-child .servicio-featured-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.servicios-grid-3 > div:first-child .servicio-featured-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #1A1A1B;
  margin: 0;
}
@media (max-width: 992px) {
  .servicios-grid-3 > div:first-child {
    grid-template-columns: 1fr;
  }
  .servicios-grid-3 > div:first-child .servicios-img {
    height: 260px;
  }
}

.servicios-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.servicios-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.servicios-item {
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}
.servicios-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: #b3161b;
}

.section-works-done {
  padding: 100px 0;
  background: #333;
}

.obras-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}
.obras-container h2 {
  color: #FFFFFF;
}

.obras-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.obra-row {
  display: flex;
  align-items: stretch;
  min-height: 380px;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.obra-row--reverse {
  flex-direction: row-reverse;
}
.obra-row--reverse .obras-text {
  border-left: none;
  border-right: 8px solid #E31E24;
}
.obra-row--reverse .obras-text::before {
  left: auto;
  right: 0;
  border-width: 60px 0 0 60px;
  border-color: #E31E24 transparent transparent transparent;
}
.obra-row--reverse .obras-text::after {
  right: auto;
  left: 0;
  border-width: 0 60px 60px 0;
  border-color: transparent transparent #E31E24 transparent;
}
@media (max-width: 992px) {
  .obra-row {
    flex-direction: column !important;
    min-height: auto;
  }
  .obra-row .obras-text {
    border-left: 8px solid #E31E24 !important;
    border-right: none !important;
  }
  .obra-row .obras-text::before {
    left: 0 !important;
    right: auto !important;
    border-width: 60px 60px 0 0 !important;
    border-color: #E31E24 transparent transparent transparent !important;
  }
  .obra-row .obras-text::after {
    right: 0 !important;
    left: auto !important;
    border-width: 0 0 60px 60px !important;
    border-color: transparent transparent #E31E24 transparent !important;
  }
}

.obra-img-wrap {
  width: 60%;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .obra-img-wrap {
    width: 100%;
    height: 280px;
  }
}

.obras-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.obra-row:hover .obras-img {
  transform: scale(1.04);
}

.obras-text {
  width: 40%;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FFFFFF;
  border-left: 8px solid #E31E24;
  position: relative;
  overflow: hidden;
}
.obras-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 60px 60px 0 0;
  border-color: #E31E24 transparent transparent transparent;
}
.obras-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 60px 60px;
  border-color: transparent transparent #E31E24 transparent;
}
.obras-text h3 {
  color: #1A1A1B;
}
@media (max-width: 992px) {
  .obras-text {
    width: 100%;
    padding: 30px 40px;
  }
}

.obras-loc {
  color: #666666;
  font-size: 18px;
  line-height: 1.5;
}

.clientes {
  padding: 100px 0 80px;
  background-color: #FFFFFF;
}

.clientes-header {
  text-align: center;
  margin-bottom: 60px;
}
.clientes-header .sub-title {
  display: block;
  color: #E31E24;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  margin-bottom: 12px;
}
.clientes-header h2 {
  font-size: clamp(28px, 4vw, 36px);
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
}

.linea-roja {
  width: 80px;
  height: 5px;
  background-color: #E31E24;
  margin: 25px auto 0;
}

.clientes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px 40px;
  align-items: center;
}
@media (max-width: 992px) {
  .clientes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cliente-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cliente-item:hover {
  transform: translateY(-5px);
}
.cliente-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  opacity: 1;
  transition: all 0.3s ease;
}

.contacto {
  background: #000000;
  color: #FFFFFF;
  border-top: 5px solid #E31E24;
}
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 992px) {
  .contacto-grid {
    grid-template-columns: 1fr;
  }
}
.contacto-info h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  color: #E31E24;
  padding-left: 0;
  margin-bottom: 30px;
}
.contacto-info p {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 300;
}

/*# sourceMappingURL=main.css.map*/