* { 
    margin: 0;
    padding: 0; 
    box-sizing: border-box; 
}
html, body {
  overflow-x: hidden;
}
body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #222;
}
.navbar{
    background-color: #f8f8f8;
}
.navbar .dropdown-menu {
  background-color: #f8f8f8;
  border: none;
}
.navbar .dropdown-item {
  color: #212529;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background-color: #e9ecef;
  color: #000;
}
.hero {
    background: #a3a3a3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero h1 {
    font-size: 28px;
}
img {
    max-width: 100%;
    height: auto;
}
.image-box{
  width: 100%;
  height: 100%;
  border-radius: .5rem;
  overflow: hidden;
}
.image-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 !important; /* evitás conflictos */
}
.servicios{
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#galeria{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 70vh;
}
#serviciosCarousel .card-img-top {
  height: 200px;
  object-fit: cover;
}
.gallery-img {
    cursor: pointer;
    transition: transform .3s ease;
}
.gallery-img:hover {
    transform: scale(1.04);
}
.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.whatsapp-fixed img {
    width: 30px;
    height: 30px;
}
#contacto {
    background-color: #f8f8f8;
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
}