.slider-container {
    width: 100%;
    max-width: 60%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-left: 275px;
}
.slider {
    display:flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}
.slide h2 {
    font-size: 40px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.slide p {
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    color: #333;
    padding: 10px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 50%;
    transition: background-color 0.3s;
}
.nav-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
}
.prev {
    left: 500px;
}
.next {
    right: 500px;
}
.contenido2 {
    margin: auto;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    
    /*margin: 0;
    padding: 20px;
    background: #f0f0f0;
    justify-content: space-around;*/
    
}
.card {
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    font-family: Arial, sans-serif;
    ;
}

.card:hover {
    transform: scale(1.05);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
    background-color: #f9f9f9;
}

.card-title {
    margin: 0 0 10px;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", "Helvetica", "Arial", "sans-serif";
			font-size: 18px;
    color: #1D4B1D;
}

.card-link {
    display: inline-block;
    text-decoration: none;
    color: #007bff;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", "Helvetica", "Arial", "sans-serif";
			font-size: 18px;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #0056b3;
}