* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Neuton', serif;
    color: #006ac0;
    padding-top: 60px;
}

.navbar {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

h1 {
    margin: 0;
    color: #006ac0;
    font-size: 1.5em;
}

.menu {
    list-style: none;
    display: flex;
    margin-left: auto;
}

.menu li {
    margin: 0 15px;
    position: relative;
}

.menu a {
    text-decoration: none;
    color: #006ac0;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.menu a:hover {
    background-color: #006ac0;
    color: #fff;
}

.menu .active > a {
    background-color: #006ac0;
    color: #fff;
    font-weight: bold;
}

.dropdown {
    display: none;
    position: absolute;
    background: #fff;
    list-style: none;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.menu li:hover .dropdown {
    display: block;
}

.dropdown li {
    margin: 5px 0;
}

.dropdown a {
    padding: 5px 10px;
    color: #006ac0;
    display: block;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown a:hover {
    background-color: #006ac0;
    color: #fff;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.promocion {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
    background-image: linear-gradient(to right, rgba(3, 77, 214, 0.8), rgba(2, 88, 199, 0.8));
    color: white;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    margin-bottom: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.info {
    display: flex;
    justify-content: space-around;
    width: 90%;
    margin-top: 40px;
    flex-wrap: wrap;
}

.info-box {
    background-color: white;
    color: rgba(3, 95, 180, 0.8);
    padding: 30px;
    border-radius: 20px;
    flex: 1;
    margin: 10px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    min-width: 250px;
}

.info-box:hover {
    transform: scale(1.05);
}

.info-box i {
    font-size: 3em;
    margin-bottom: 15px;
    color: rgba(1, 82, 175, 0.8);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 10px;
    display: inline-block;
}

.info-box h3 {
    margin: 15px 0;
    font-size: 1.8em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-box p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
}

.image-gallery {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.gallery-image {
    width: 45%;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-image img {
    width: 100%;
    border-radius: 10px;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.social-icons {
    position: relative;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icons a {
    color: #000;
    font-size: 24px;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2) rotate(10deg);
}

.social-icons a:nth-child(1) { color: #25D366; }
.social-icons a:nth-child(2) { color: #3b5998; }
.social-icons a:nth-child(3) { color: #e1306c; }
.social-icons a:nth-child(4) { color: #000000; }
.social-icons a:nth-child(5) { color: #f87408; }

footer {
    text-align: center;
    padding: 20px;
    background: #006ac0;
    color: white;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.centered-title {
    text-align: center;
    font-size: 24px;
    margin: 20px 0;
    color: #006ac0;
}

@media (max-width: 767px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu {
        flex-direction: column;
        width: 100%;
    }

    .menu li {
        margin: 10px 0;
        width: 100%;
    }

    .info {
        flex-direction: column;
        align-items: center;
    }

    .info-box {
        width: 90%;
        margin: 10px 0;
    }

    .gallery-image {
        width: 90%;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .gallery-image {
        width: 48%;
    }
}