body {
    font-family: 'PT Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
    color: #333;
}

header {
    background-color: #003366;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 40px;
}

nav .menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu > li {
    position: relative;
    margin-right: 20px;
}

.menu > li > a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    display: block;
}

.subitems {
    display: none;
    position: absolute;
    background-color: #005599;
    list-style: none;
    padding: 0;
    margin: 0;
    top: 100%;
    left: 0;
    z-index: 100;
}

.subitems li a {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
}

.menu li:hover .subitems {
    display: block;
}

.title {
    text-align: center;
    font-size: 2em;
    margin: 40px 0 20px;
}

#promocion {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.title {
    text-align: center;
    font-family: 'PT Sans', sans-serif;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #2c3e50;
}

.promo-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.promo-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 480px;
    padding: 15px;
    gap: 20px;
    flex: 1 1 450px; /* flexible with min width */
}

.promo-card img {
    width: 150px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.promo-texto {
    flex: 1;
}

.promo-texto h3 {
    margin-top: 0;
    font-family: 'PT Sans', sans-serif;
    color: #34495e;
    font-size: 1.5rem;
}

.promo-texto h4 {
    margin: 10px 0 10px;
    font-size: 1.2rem;
    color: #2980b9;
}

.promo-texto p {
    font-family: 'PT Sans', sans-serif;
    line-height: 1.5;
    color: #555;
    margin-bottom: 10px;
}

