.menu, .search {
    transition: all 0.5s ease-in-out;
    opacity: 0;
    transform: translateY(-20px);
}
.menu.show, .search.show {
    opacity: 1;
    transform: translateY(0);
}
.menu-item {
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: translateX(-20px);
}
.menu-item.show {
    opacity: 1;
    transform: translateX(0);
}
.menu-item:hover {
    transform: scale(1.1);
    color: #4A5568; /* Change text color on hover */
}
.menu-icon {
    transition: transform 0.3s ease-in-out;
}
.menu-icon.rotate {
    transform: rotate(90deg);
}
.title, .subtitle {
    transition: all 0.5s ease-in-out;
    opacity: 0;
    transform: translateY(-20px);
}
.title.show, .subtitle.show {
    opacity: 1;
    transform: translateY(0);
}
.subtitle-sequence {
    display: inline-block;
    transition: opacity 1s ease-in-out;
}
.search-container {
    display: flex;
    align-items: center;
    border-radius: 9999px;
    padding: 0.25rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.search-input {
    border: none;
    outline: none;
    padding: 0.25rem;
    flex-grow: 1;
    background-color: transparent;
    color: #4A5568;
    font-size: 0.875rem;
}
.search-button {
    background-color: transparent;
    color: #4A5568;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.footer {
    background-color: #0047ab;
    color: white;
    padding: 2rem 1rem;
}
.footer a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: white;
}
.footer .social-icons a {
    margin: 0 0.5rem;
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 20px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.whatsapp-button:hover {
    background-color: #1DA851;
}
.whatsapp-contacts {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
    transform: scaleY(0);
    transform-origin: bottom;
}
.whatsapp-contacts.show {
    display: block;
    transform: scaleY(1);
}
.whatsapp-contacts a {
    display: flex;
    align-items: center;
    padding: 10px;
    color: #25D366;
    text-decoration: none;
    border-bottom: 1px solid #f1f1f1;
}
.whatsapp-contacts a:last-child {
    border-bottom: none;
}
.whatsapp-contacts a:hover {
    background-color: #f1f1f1;
}
.whatsapp-contacts i {
    margin-right: 10px;
}
section {
    padding: 4rem 1rem;
}
.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}
.highlight {
    background-color: yellow;
}
.scroll-indicator {
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.scroll-indicator a {
    width: 10px;
    height: 10px;
    background-color: #4A5568;
    border-radius: 50%;
    margin: 5px 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.scroll-indicator a.active {
    background-color: #0047ab;
    transform: scale(1.3);
}
.scroll-indicator a::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #0047ab;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.scroll-indicator a.active::before {
    opacity: 1;
}
.no-results {
    display: none;
    color: red;
    text-align: center;
    margin-top: 1rem;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}
.contact-form button {
    background-color: #0047ab;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.contact-form button:hover {
    background-color: #003a8c;
}