body {
    font-family: 'Heebo', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
.navbar {
    background-color: #8b1515;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
.navbar-brand img {
    height: 50px;
}
.hero-section {
    padding-top: 56px; /* Ajuste para que el navbar fijo no cubra el contenido */
}
.carousel {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
}
.carousel-item img {
    width: 100%;
    object-fit: fill;
}
.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}
.section {
    padding: 80px 20px;
    text-align: center;
}
.gallery img {
    width: 100%;
    border-radius: 10px;
}
.gallery-carousel .carousel-inner img {
    width: 100%;
    height: auto;
}
.section:nth-child(even) {
    background: #f8f9fa;
    color: black;
}
.service-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.service-box:hover {
    transform: translateY(-5px);
}
.service-icon {
    font-size: 40px;
    color: #8b1515;
    margin-bottom: 10px;
}
.btn-primary {
    background-color: #8b1515;
    border-color: #8b1515;
}
.btn-primary:hover {
    background-color: #8b1515;
}
footer {
    background-color: #191919;
    color: white;
    padding: 40px 20px;
    text-align: center;
}
.btn-custom {
    background-color: #8b1515;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-custom i {
    margin-left: 10px;
}
.compliance-section {
    background: #f8f9fa;
    padding: 60px 20px;
    border-radius: 10px;
}
.compliance-section h2 {
    background: #8b1515;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
}
.nosotros-section h2 {
    background: #8b1515;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
}
.nosotros-section p {
    font-size: 1.4rem;
}