body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: linear-gradient(to bottom, #f0f4f7, #ffffff);
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: #003366;
}
.logo {
    height: 60px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.hero {
    padding: 60px 20px;
    text-align: center;
    background-color: #00509e;
    color: white;
}
.galeria {
    padding: 30px;
    text-align: center;
}
.imagenes img {
    width: 300px;
    margin: 10px;
}
img {
  max-width: 100%;
  border-radius: 30px;
  box-shadow: 0px 3px 5px rgba(15,15,15,0.5);
}

.contacto, .contenido {
    padding: 30px;
}


.categorias {
    padding: 60px 20px;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.titulo-seccion {
    color: black;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.categoria-card {
    min-width: 250px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s;
    text-align: center;
}

.categoria-card:hover {
    transform: scale(1.05);
}

.categoria-card img {
    width: 100%;
    height: auto;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.categoria-card h3 {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #333;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 25px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
}

.carousel-btn.left {
    left: 10px;
}

.carousel-btn.right {
    right: 10px;
}

