﻿/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
}

/* Estilos para la página Nosotros */
.card {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: 0.3s;
    margin-bottom: 20px;
}

    .card:hover {
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

.carousel {
    max-height: 400px;
    overflow: hidden;
}

.carousel-item img {
    object-fit: cover;
    height: 400px;
    width: 100%;
}

.bg-primary {
    background-color: #007bff !important;
}

.bg-success {
    background-color: #28a745 !important;
}

.bg-info {
    background-color: #17a2b8 !important;
}

.bg-secondary {
    background-color: #6c757d !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}
