/* COLOR DE FONDO */
.fondo-uniforme {
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.15), transparent 60%),
                linear-gradient(135deg, #d3eafd, #b5d8f6);
    position: relative;
    overflow: hidden;
    color: #000;
}

.colorblue{
    color:  #044b83;
}

.colorlightblue{
    color:  #d4ecfc;
}

/* Opcional: efectos decorativos sutiles como en .promo-fondo */
.fondo-uniforme::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    filter: blur(20px);
    transform: rotate(15deg);
    z-index: 0;
}

.fondo-uniforme::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    filter: blur(15px);
    transform: rotate(-10deg);
    z-index: 0;
}

/* NAVBAR */
.custom-navbar {
    max-width: 1200px;
    border-radius: 50px;
}

.btnPortfolio{
    border-radius: 15px;
    background-color: #054b83;
    color: white;
}
.btnPortfolio:hover{
    font-weight: 500;
    background-color: #1064a8;
    color: white;
}

.nav-link{
    font-weight: 500;
}

.logoNav{
    height: 50px;
}

.badge-custom {
    position: absolute;
    top: 10px;
    right: 10px;
}


.btninicial{
    background-color: #054b83;
    color: white;
}
.btninicial:hover{
    font-weight: 500;
    background-color: #1064a8;
    color: white;
}

.img-producto {
    width: 200px;
    height: 250px;
    object-fit: contain;
    display: block;
    margin: 20px auto 10px auto; /* margen: top right bottom left */
    background: none;
    border: none;
    padding: 0;
}

/* SECCION DE INICIO */
.hero-section {
    background: url('../Images/LimpiezaEsponja-FondoOscuro.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    position: relative;
}

/* PRODUCTOS */
.card {
    padding-top: 10px;
}

.card-translucida {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.card-translucida:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.BtnBlue{
    background-color: #044b83;
    border: 1px solid white;
    color: white;
    font-weight: bold;
}
.BtnBlue:hover{
    border: 1px solid #044b83;
    color: #044b83;
    font-weight: bold;
}

/* SECCION ACERCA DE - PANTALLA GRANDE */
.partImg {
    background: url('../Images/LimpiezaAcercaDe.png') no-repeat center center;
    background-size: cover;
    height: 80vh;
    position: relative;
}

/* SECCION ACERCA DE - PANTALLAS PEQUEÑAS */
.sobre-nosotros {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.fondo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* ajusta opacidad aquí */
    z-index: 1;
}

.contenido {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* FOOTER O SECCION CONTACTO */
footer {
    background-color: #044b83;
    padding: 2rem 1rem;
    font-size: 14px;
    box-shadow: 0 -10px 15px rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    border-top: 1px solid #044b83;
    padding-top: 1rem;
    margin-top: 2rem;
}

.borderFooter {
    border-color:  #d4ecfc !important;
}

.logofooter{
    width: 200px;
}
.linkfooter a:hover{
    font-weight: 600;
}

.finalpartfooter{
    font-weight: 600;
}



.tab-content {
  position: relative;
}

.tab-content > div {
  display: none;
}

.tab-content > div.active {
  display: block;
}


[data-tab-content] {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.active[data-tab-content] {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  margin: 55px 0;
  justify-content: center;
  list-style: none;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .tabs {
    flex-direction: column;
    gap: 0px;
  }
}

.tabs .tab {
  font-weight: 600;
  color: #999;
  margin-right: 50px;
  cursor: pointer;
}

.tabs .tab.active,
.tabs .tab:hover {
  color: #111;
  border-bottom: 2px solid #4473c1;
}





/* MEDIA QUERY */
@media (max-width: 991.98px) {
    .custom-navbar {
    padding-left: 1rem;
    padding-right: 1rem;
    }
}
@media (max-width: 990px){
    .logoNav{
    height: 30px;
    }

    .logofooter{
    width: 150px;
    }
}


