*{
    box-sizing: border-box;
}
.oculto {
    display: none;
}

@font-face{
    font-family:Bogimber;
    src: url(fuentes/Bogimber.otf)
}
#tituloPrincipal{
    font-size: 27px; /* Cambia el tamaño de fuente solo para el h3 dentro de #info3 */
    text-align: left; /* Alinea el texto a la izquierda del contenedor */
    margin-left: 7%; /* Deja un espacio del 30% del ancho del contenedor antes del texto */
    margin: 5px 60; /* Espacio entre el texto y los botones */
    font-family:Bogimber;
} 

#somos-proya .texto {
    font-size: 16px; /* Cambia el tamaño de fuente solo para el h3 dentro de #info3 */
    
    margin: 0px 0; /* Espacio entre el texto y los botones */
    font-family:Bogimber;
}


#ServicioDeLimpieza h3 {
    font-size: 24px; /* Cambia el tamaño de fuente solo para el h3 dentro de #info3 */
    text-align: center; /* Cambia la alineación del texto solo para el h3 dentro de #info3 */
    margin: 10px 0; /* Espacio entre el texto y los botones */
    font-family:Bogimber;
}

#subtitulo {
    font-size: 18px; /* Cambia el tamaño de fuente solo para el h3 dentro de #info3 */
    
    font-family:Bogimber;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    cursor: url(media/escoba1.png), auto;
}

a{
    cursor: url(media/escoba3.png), auto;
}

h1{ font-size: 3.5em;}
h2{ font-size: 2.7em;}
h3{ font-size: 2em;}
p{ font-size: 1.25em;}
ul{ list-style: none;}
li{ font-size: 1.25em;}

button {
    font-size: 1.25em;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 5px;
    border: 2px solid rgba(0,0,0,0.3);
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    color: white;
    background-color: blueviolet;
}



button:not(#carrusel):hover {
    background-color: rgb(15, 141, 224);
  }
  

.container{
    max-width: 1400px;
    margin: auto;
}

.color-acento{ color:blueviolet; }

header{
    background-color: rgb(245,245,245);
    
}

header .logo{
    margin: 0;
    padding: 25px 30px;
    font-weight: bold;
    color: blueviolet;
    font-size: 1.6em;
}

header .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

header nav{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 45px;
   
}

header a{
    padding: 5px 12px;
    text-decoration: none;
    font-weight: bold;
    color: black;
}

header a:hover{
    color: blueviolet;
}

#hero{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 90vh;
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    )
    ,url("media/hero.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#hero h1{
    color: white;
}

#hero button{
    font-size: 1.75em;
}

#somos-proya .container{
    text-align: center;
    padding: 80px 12px;
}

#nuestros-programas{
    background-color: rgb(30, 30, 30);
    color: white;
    text-align: center;
}

#nuestros-programas .container{
    padding: 150px 12px;
}

#nuestros-programas h2{
    margin-top: 0;
    font-size: 3.2em;
}

#nuestros-programas p{
    display: none;
}

#nuestros-programas .carta{
    background-position: center center;
    background-size: cover;
    padding: 50px 0px;
    margin: 30px;
    border-radius: 15px;
}

.carta-1 {
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ), url("media/1.jpg");
}
.carta-2 {
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ), url("media/3.jpg");
}
.carta-3 {
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ), url("media/6.jpg");
}
.carta-4 {
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ), url("media/4.jpg");
}
.carta-5 {
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ), url("media/8.jpeg");
}
.carta-6 {
    background-image: linear-gradient(
        0deg,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ), url("media/7.jpeg");
}



#final{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgb(30,30,30);
    color: white;
    height: 80vh;
}

#final h2{
    font-size: 9vw;
}

#final button{
    font-size: 5vw;
}

footer{
    background-color: rgb(230,230,230);
}

footer p{
    margin: 0;
    padding: 12px;
    color: rgb(100,100,100);
}

footer .container{
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

@media (min-width: 850px){
    header{
        position: fixed;
        width: 100%;
    }

    header .container{
        flex-direction: row;
        justify-content: space-between;
    }

    header nav{
        flex-direction: row;
        padding-bottom: 10;
        padding-right: Z0px;
    }

    #hero h1{
        font-size: 5em;
    }

    #somos-proya .container{
        display: flex;
        justify-content: space-evenly;
    }

    #somos-proya .texto{
        width: 50%;
        max-width: 600px;
        text-align: initial;
        padding-left: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #somos-proya h2{
        margin-top: -105px;
    }

    #somos-proya .img-container{
        background-image: url("media/somos-proya.jpg");
        background-size: cover;
        background-position: center center;
        height: 500px;
        width: 400px; 
        margin:1px;
       

        
    }
    #somos-proya .img-container2{
        background-image: url("media/hero.jpg");
        background-size: cover;
        background-position: 50% 90%; 
        height: 500px;
        width: 400px; 
        margin:15px;

    }

    #nuestros-programas .programas{
        display: flex;
        justify-content: center;
    }

    #nuestros-programas p{
        display: block;
        margin-bottom: 30px;
    }

    #nuestros-programas h2{
        font-size: 4em;
    }

    #nuestros-programas h3{
        margin-top: 0;
    }

    #nuestros-programas .carta{
        padding: 50px;
        background-size: 100% 150px;
        background-repeat: no-repeat;
        background-position-y: 0;
        background-color: rgba(50, 50, 50, 1);
        box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    }

    #caracteristicas .container{
        text-align: center;
        padding: 170px 0px;
    }
    
    #caracteristicas li{
        margin: 16px 0px;
        font-weight: bold;
    }

    #caracteristicas .container{
        text-align: initial;
    }

    #caracteristicas ul{
        margin-left: 100px;
    }

    #final h2{
        font-size: 5em;
    }

    #final button{
        font-size: 2em;
    }

    footer .container{
        justify-content: flex-end;
    }


}



.texto p {
    text-align: justify;
}
    

#caracteristicas{
    .container {
        display: flex;
        flex-wrap: wrap;
      }
      
      .container ul {
        margin-right: 100px;
      }
      
      .container img {
        max-width: 99%;
        max-height: 99%;
      }
    
}

@media (max-width: 767px) {
    #caracteristicas .container {
      width: 100%;
      padding: 0;
    }
  
    #caracteristicas table {
      width: 100%;
    }
  
    #caracteristicas img {
      width: 100%;
      height: auto;
    }
  }




header .button{
    border-radius: 18px;
}


@media (min-width: 1200px) {
    #caracteristicas{
        background-position-x: calc(100vw - 800px);
    }
} 


/*-------BOTÓN FLECHA PARA IR HACIA ARRIBA------- */

/*modifica parámetros cuando el botón es rectangular*/
.cm-up {
	display: none;
	position: fixed;
	background: #2f8fd3;
	height: 60px;
	border-radius: 60px;
	padding: 6px;
	bottom: 30px;
	right: 10px;
	cursor: pointer;
    /*pone por encima de la pagina*/ 
    z-index: 10;
}


/*modifica parámetros en botón rectangular*/
.cm-up .cm-text-up {
	border: none;
	background: none;
	outline: none;
	cursor: pointer;
	color: rgb(255, 255, 255);
	float: left;
	padding: 0;
	font-size: 19px;
	line-height: 50px;
	transition: 0.4s;
	width: 0px;
    
}


/*modifica parámetros cuando el botón es circular*/
.cm-up .cm-icon {
    
	background: #180202;
	color: #ffffff;
	font-size: 50px;
	float: right;
	width: 50px;
	height: 50px;
	border-radius: 90%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.4s
   
}

.cm-up:hover > .cm-text-up {
	width: 150px;
	padding: 0 6px;
}
.cm-up:hover > .cm-icon {
	background: #2f8fd3;
}

/*-----------------FLECHA---------------- */

.contact-info {
    background-color: #d1daf2;
    padding: 10px;
}

/*-----------------carrusel---------------- */

#carrusel{
    
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 97vh;
    background-color: rgb(0, 0, 0);
   background-size: contain; /* Cambiado de 'cover' a 'contain' para que la imagen se ajuste completamente */
   background-repeat: no-repeat; /* Evita que la imagen se repita si es más pequeña que el contenedor */
   background-position: center center; /* Centra la imagen horizontal y verticalmente */
  
} 

#carrusel {
    background-color: transparent !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}

#carouselExampleCaptions {
    background: none !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}

.carousel-inner {
    background: none !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}

.carousel-item {
    background: none !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}

@media (max-width: 767px) {
  #carrusel {
    height: auto !important;
    min-height: 0 !important;
    background: none !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
  }
  #carouselExampleCaptions {
    height: auto !important;
    min-height: 0 !important;
    background: none !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
  }
  .carousel-inner, .carousel-item {
    height: auto !important;
    min-height: 0 !important;
    background: none !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
  }
}

/*-----------------boton-contratacion---------------- */

#boton-contratacion{
    
    background-color: rgb(0, 0, 0);
    position: relative;
            width: 100%;
            height: 700px; /* Ajusta la altura según tus necesidades */
            background-image: url('media/wash1.jpg');
            background-size: contain; /* Cambiado de 'cover' a 'contain' para que la imagen se ajuste completamente */
            background-repeat: no-repeat; /* Evita que la imagen se repita si es más pequeña que el contenedor */
            background-position: center center; /* Centra la imagen horizontal y verticalmente */
        
  
}


#boton-contratacion button {
    position: absolute;
    bottom: 250px;
    left: 56%;
    transform: translateX(-50%);
    padding: 10px 10px;
    font-size: 1.8em;
    border: none;
    -webkit-border-radius: 30px;
    -moz-border-radius: 9px;
    min-width: 100px;
    min-height: 40px;
  }
  
  @media (max-width: 767px) {
    #boton-contratacion button {
      font-size: 1.5em;
      padding: 5px 5px;
    }
  }




