* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
}

.color3 {
  background-color: #1a5365;
}

.logo-size {
  display: flex;
  justify-content: start;
  margin-left: -1rem;
  height: 5rem;
  border-radius: 5rem;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.295));
}
@media (min-width: 768px) and (max-width: 991px) {
  .logo-size {
    height: 8rem;
    width: 12rem;
  }
}
@media (min-width: 992px) {
  .logo-size {
    height: 12rem;
    width: 15rem;
    margin-right: 5rem;
  }
}

.list-color {
  color: white;
  border: 2px solid blue;
  border-radius: 1rem;
  padding: 5px;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.288);
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-color {
    font-size: 1.5rem;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    text-shadow: 2.2px 2.2px rgba(0, 0, 0, 0.288);
  }
}
@media (min-width: 992px) {
  .list-color {
    font-size: 1.8rem;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    text-shadow: 3px 3px rgba(0, 0, 0, 0.288);
  }
}

/* Estilos del Header*/

.bg-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wpp-num {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem; 
  p {
    margin-left: 0.5rem;
    margin-top: 1rem;
  } 
}
.wpp-button {
  
  max-width: 100%;
  width: 15%;
}

/* Remove border from toggler */
.navbar-toggler {
    border: 0 ;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none ;
    box-shadow: none ;
    border: 0 ;
}

/* Lines of the Toggler */
.toggler-icon{
    width: 30px;
    height: 3px;
    background-color: #e74c3c;
    display: block;
    transition: all 0.2s;
}

/* Adds Space between the lines */
.middle-bar{
    margin: 5px auto;
}

/* State when navbar is opened (START) */
.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
}
/* State when navbar is opened (END) */

/* State when navbar is collapsed (START) */
.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
}
/* State when navbar is collapsed (END) */

/* Color of Toggler when collapsed */
.navbar-toggler.collapsed .toggler-icon {
    background-color: #ffffff;
}


.styles-h1 {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-self: center;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  margin-right: 1rem;
  color: white;
}
@media (min-width: 768px) and (max-width: 991px) {
  .styles-h1 {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .styles-h1 {
    font-size: 2rem;
  }
}


/* Subtitulo Section */

.subtitle-image{ 
  background-image: url('../img/navimg.jpg');
  background-size: cover;
  background-position: center;
  padding: 0 0;
}

.subtitle-section {
  background-color: rgba(0, 0, 0, 0.462);
  color: white;
  text-align: center;
  padding: 3rem 1rem 1rem 1rem ;
}

.btn-menu {
  background-color: transparent;
  border: none;
}

.marginbutton {
  margin-left: 3rem;
}

.marginbutton2 {
  margin: 0 3rem 0 0;
}

.button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0, 107, 179);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 10px;
  font-weight: bold;
  border: 3px solid rgba(255, 255, 255, 0.3019607843);
  outline: none;
  overflow: hidden;
  font-size: 15px;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.6);
}

.button:hover .icon {
  transform: translate(4px);
}

.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }
  60% {
    left: 100%;
  }
  to {
    left: 100%;
  }
}
.button-size {
  width: 15%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .button-size {
    width: 6%;
  }
}
@media (min-width: 992px) {
  .button-size {
    width: 6%;
  }
}


.p-inicio {
  font-size: 1rem;
  margin: 2rem 0 1rem 0;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .p-inicio {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .p-inicio {
    font-size: 1.5rem;
  }
}

.roboto {
  font-family: "Roboto", sans-serif;
}

.carousel-item img {
  height: 300px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .carousel-item {
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
    min-height: 100%;
    height: 400px;
    width: 100%;
  }
  .carousel-item img {
    height: 400px;
  }
}
@media (min-width: 992px) {
  .carousel-item {
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
    min-height: 100%;
    height: 600px;
    width: 100%;
  }
  .carousel-item img {
    height: 600px;
  }
}

.carousel-size {
  margin: 0 0 2rem 0;
}

.carousel-inner .carousel-item {
  transition: opacity 1s ease;
}

.position-preguntas {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.size_img_p {
  width: 16%;
}

.size-p-info {
  font-size: 1rem;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .size-p-info {
    font-size: 1.1rem;
  }
}
@media (min-width: 992px) {
  .size-p-info {
    font-size: 1.5rem;
  }
}

.map-size {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 40vh;
}

.fs-mapa {
  font-size: 12px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .fs-mapa {
    font-size: 1rem;
    font-weight: 400;
  }
}
@media (min-width: 992px) {
  .fs-mapa {
    font-size: 1.5rem;
    font-weight: 500;
  }
}

.card-section {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  flex: 0 0 auto;
}
@media (min-width: 992px) {
  .card-section {
    width: 50%;
  }
}
.card-section div {
  min-width: 60%;
  text-align: center;
}
@media (min-width: 992px) {
  .card-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 1rem;
    max-width: 100%;
    min-width: 25%;
  }
}

.metodos-pago {
  width: 100%;
}
@media (min-width: 992px) {
  .metodos-pago {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .section-galeria {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

.gallery {
  display: flex;
  gap: 2px;
}
.gallery img {
  width: 50%;
}

.card-servicio {
  margin: 10px;
  padding: 1rem;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.452);
  background-color: rgb(250, 250, 250);
  text-align: center;
}
@media (min-width: 992px) {
  .card-servicio {
    width: 100%;
  }
}

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


footer {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*ESTILOS ELECTRICIDAD*/

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hover-zoom {
  transition: transform 0.3s ease;
}

.hover-zoom:hover {
  transform: scale(1.05);
}


/*Carousel*/
.carousel-container {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-snap-type: mandatory;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  position: relative;
  padding: 10px;
}

.carousel-track {
  display: inline-flex;
  gap: 16px;
  scroll-behavior: smooth;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none; /* Firefox */
}
.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome */
}

.carousel-track img {
  max-height: 100%;
  max-width: 100%;
  flex: 0 0 auto;
  width: auto;
  height: 300px;
  object-fit: contain;
  scroll-snap-align: start;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.carousel-track img:hover {
  transform: scale(1.10);
}

/*Firma de ute*/
.firma-ute {
  background-color: #198754; 
  border-top: 4px solid #145c32;
  border-bottom: 4px solid #145c32;
  font-size: 1.2rem;
}


/* Estilos calculadora */
#calculadora {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}

#calculadora.visible {
  max-height: 1000px; 
  opacity: 1;
}
