*{
    margin: 0;
    padding: 0;
 }

body {
    margin: 0;
    
    /* overflow: hidden; */ /* Evita que haya desplazamiento vertical */
}
#background{
    background-color:#13131398;
    color: #ffffff;
    width: 100%;
    height: 100%;
    z-index: -2;
}

/* name */
.name{
    color: rgb(0, 2, 33);
}
/* Nav */
@keyframes changeColors{
    0% { color: rgba(188, 78, 14, 0.978); }
    25% { color:  rgba(170, 72, 16, 0.978); }
    50% { color:  rgba(135, 54, 8, 0.978); }
    75% { color:  rgba(152, 69, 21, 0.978); }
    100% { color: #844512;}
}
.presentacion h2 span {
    animation: changeColors 5s infinite;
    font-size: 3rem;
    font-style:italic;
}
.navbar-collapse {
    justify-content: center;
}

#inicio {
    background: linear-gradient( rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url("../assets/images/fondo-inicio.jpeg");
    background-size: cover;
    background-position: center center;
    height: 100vh;
}

#inicio .contenido header {
    color: #ffffff;
    background-color: rgba(72, 32, 9, 0.601);
   /*  border-bottom: 1px solid rgba(25, 23, 21, 0.372); */
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0;
}

#inicio .logo {
    width: 8rem;
    height: auto;
    object-fit: contain; 
}

#inicio .contenido header .contenido-header {
    max-width: 1100px;
    height: 70px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

#inicio .contenido header .contenido-header h1 {
    font-size: 1rem;
    text-align: center;
    color:  #c56c23;

}

#inicio .contenido header .contenido-header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

#inicio .contenido header .contenido-header nav ul li a {
    text-decoration: none;
    color: #c56c23;
    margin: 0 12px;
    font-weight: 400;
    transition: .5s;
}

#inicio .contenido header .contenido-header nav ul li a:hover {
    color:#c56c23ba;
}

#inicio .contenido header .contenido-header .redes a {
    text-decoration: none;
    color: #fff;
    display: inline-block;
    margin-left: 10px;
    transition: .5s;
}

#inicio .contenido header .contenido-header .redes a:hover {
    color:  #c56c23;
}

#inicio .contenido header .contenido-header .seleccionado {
    color:  #c56c23;
}

#inicio .contenido .presentacion {
    max-width: 1100px;
    height: 100vh;
    margin: auto;
    color:  #c56c23;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#inicio .contenido .presentacion .bienvenida {
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

#inicio .contenido .presentacion h2 {
    font-size: 55px;
    margin-bottom: 25px;
    text-align: center;
}

#inicio .contenido .presentacion h2 span {
    font-size: 25px;
    color: rgba(72, 32, 9, 0.978);

}

#inicio .contenido .presentacion .descripcion {
    max-width: 700px;
    margin: 25px auto;
    font-size: 18px;
    text-align: center;
}

#inicio .contenido .presentacion a {
    text-decoration: none;
    display: inline-block;
    margin: 25px;
    padding: 20px 25px;
    border: 2px solid rgba(72, 32, 9, 0.978);
    border-radius: 50px;
    color:  #c56c23;
    font-weight: bold;
    text-transform: uppercase;
    transition: .5s;
}

#inicio .contenido .presentacion a:hover {
    background-color: rgba(72, 32, 9, 0.708);
}

#icono-nav {
    color: #fff;
    display: none;
}

.icono-whatsapp{
    font-size: 50px;
    color:greenyellow;
    margin: 20px;
    position: fixed;
    bottom: 0;
    right: 0;
}

.contenido-seccion {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.contenido-seccion h2 {
    font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #c56c23;
    margin-bottom: 20px;
}

/* Servicios */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.servicio-card {
    background: #fff;
    border: 1px solid rgba(72, 32, 9, 0.3);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

/* Galería proyectos */
.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.galeria img {
    width: 100%;
    border-radius: 5px;
}

/* Contacto */
#formMudanza {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#formMudanza input,
#formMudanza textarea {
    padding: 12px;
    border: 1px solid rgba(72, 32, 9, 0.4);
    border-radius: 5px;
    font-size: 1rem;
}

#formMudanza button {
    padding: 12px;
    background-color: #c56c23;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#formMudanza button:hover {
    background-color:#945a2a ;
}

/* Botón WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 2rem;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
#reseñas{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#reseñas h1{
    font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #c56c23;
    margin-bottom: 20px;

}


/*
 Carrusel con altura fija */
#miCarrusel {
  width: 100%;
  height: 400px; /* ajustá la altura que quieras */
  overflow: hidden; /* evita que sobresalga contenido */
}

/* Cada item del carrusel toma toda la altura */
#miCarrusel .carousel-item {
  height: 100%;
}

/* Imagen ocupa todo el carrusel y se recorta si es necesario */
#miCarrusel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* recorta sin deformar */
  display: block;
}
#trabajos {
    margin: 5rem;
}
 
#logo-target{
    color:#c56c23 ;
}
#titulo-servicios{
    color:#c56c23
}


/* prueba */

 #contacto {
            padding: 100px 15px;
            background-color: #f3f3f3;
        }
        
        #contacto .titulo-seccion {
            margin-bottom: 20px;
        }
        
        #contacto .contenedor-form {
            max-width: 1100px;
            margin: auto;
        }
        
        #contacto .contenedor-form .fila {
            margin-bottom: 15px;
        }
        
        #contacto .contenedor-form .mitad {
            display: flex;
            justify-content: space-between;
        }
        
        #contacto .contenedor-form input,
        #contacto .contenedor-form textarea {
            padding: 20px;
            border-radius: 20px;
            border: none;
            border: 1px solid #919191;
        }
        
        #contacto .contenedor-form .mitad input {
            width: 48%;
        }
        
        #contacto .contenedor-form .input-full {
            width: 100%;
        }
        
        #contacto .titulo-seccion {
            text-align: center;
            font-size: 22px;
            text-transform: uppercase;
            color: #000000;
            text-decoration: underline;
            text-decoration-color: #d3d3d3;
            text-decoration-thickness: 5px;
        }
        
        #contacto .btn-enviar {
            display: block;
            margin: auto;
            cursor: pointer;
            transition: .5s;
            padding: 10px 15px !important;
        }
        
        #contacto .btn-enviar:hover {
            background-color:rgb(181 181 181);
            color: #fff;
        }


        .titulo-trabajos{
            align-items: center;
                display: flex;
                justify-content: center;
                margin: 30px;
                color: #c56c23;
        }

        #boton-cupon{
            background-color:#c56c23 ;
            border: none;
            transition: background-color 0.3s ease;
        }
        #boton-cupon:hover{
            background-color: #945a2a;
        }


        .contacto-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.contenido-seccion {
  max-width: 700px;
  margin: 0 auto;
}

.formulario {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-group input {
  flex: 1;
  min-width: 200px;
}

input, textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background-color: white;
  font-size: 15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #3498db;
  outline: none;
  box-shadow: 0 4px 10px rgba(52,152,219,0.15);
}

textarea {
  resize: none;
}

.btn-enviar {
  background-color: #3498db;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-enviar:hover {
  background-color: #2c80b4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/*footer*/

.footer {
  background-color: #f8f8f8;
  padding: 25px 15px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #e0e0e0;
}

.footer-content {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-info a {
  color: #666;
  text-decoration: none;
}

.footer-info a:hover {
  color: #3498db;
}

.footer-credit {
  font-size: 12px;
  opacity: 0.6; /* lo hace desapercibido */
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

.icono-whatsapp{
            font-size: 50px;
            color: #00ff00;
            position: fixed;
            margin: 20px;
            bottom: 0;
            right: 0;
        }

  
        #inicio .contenido header .contenido-header .seleccionado {
            color:  #945a2a;
        }

#trabajos{
    display: flex;
justify-content: center;
align-items: center;
}

.slider {
  display: flex;
  overflow-x: auto;       /* permite scrollear horizontal */
  scroll-snap-type: x mandatory; /* snap al centro de cada imagen */
  -webkit-overflow-scrolling: touch; /* smooth scroll en móvil */
  gap: 10px;              /* espacio entre imágenes */
  padding-bottom: 10px;   /* para que no se corte la imagen */
}

/* Ocultar scrollbar */
.slider::-webkit-scrollbar {
  height: 8px; /* opcional, para mobile se ve nada */
  background: transparent;
}

.slider::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2); /* transparente tipo celular */
  border-radius: 4px;
}

/* Firefox */
.slider {
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.2) transparent;
}

/* Cada imagen */
.slider img {
  flex: 0 0 auto;       /* que no se encoja ni se expanda */
  width: 300px;          /* ancho fijo de cada imagen */
  height: 200px;         /* altura fija, ajustá según tu diseño */
  object-fit: cover;     /* recorta si hace falta */
  border-radius: 5px;
  scroll-snap-align: center; /* snap al centro */
}
         @media screen and (max-width: 800px) {

            .redes {
                display: none;
            }
            nav {
                display: none;
            }
            nav.responsive {
                display: block;
                background-color: rgba(0, 0, 0, .8);
                width: 100%;
                position: absolute;
                top: 70px;
                left: 0;
                padding: 10px 0;
            }
            nav.responsive ul {
                display: block !important;
                text-align: center;
            }
            nav.responsive ul li {
                margin: 5px 0;
            }
            #icono-nav {
                display: block;
            }
            #inicio .contenido .presentacion h2 {
                 font-size: 40px;
            }
            #links{
                padding-left: 0;
            }
           .slider {
    aspect-ratio: 10/16 !important;
    width: 300px !important;
    display: flex !important;
    overflow-x: auto !important; /* scroll horizontal */
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    gap: 10px; /* espacio entre imágenes */
    padding-bottom: 10px;
  }

  .slider img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 5px !important;
    scroll-snap-align: center !important;
    flex-shrink: 0; /* evita que se achiquen al scroll */
  }

  /* Scroll estilo móvil */
  .slider::-webkit-scrollbar {
    height: 8px;
    background: transparent;
  }

  .slider::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
  }

  .slider {
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.2) transparent;
  }
}      