* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: #3a3a5a;
    flex-direction: column;
    min-height: 100vh;
    display: flex;
    padding: 0;
    margin: 0;
}

.header {
    justify-content: space-between;
    background-color: #222236;
    align-items: center;
    padding: 10px 20px;
    display: flex;
}

.logo-img {
    vertical-align: middle;
    margin-right: 10px;
    height: 40px;
    width: 50px;
}

.nav-list {
    align-items: center;
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.nav-link {
    text-decoration: none;
    color: #ffff;
}

.nav-link {
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    border-radius: 5px;
    padding: 5px 10px;
    padding: 5px 10px;
    font-weight: 500;
    color: white;

}

.nav-link:hover {
    text-shadow: #AAAAAA 0px 0px 5px;
    color: white;
}

.nav-link-button {
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-shadow: none !important;
    background-color: #de1f6f;
    border-radius: 5px;
    padding: 5px 20px;
    color: white;
}

.nav-link-button:hover {
    text-shadow: none !important;
    background-color: #a11851;
    transform: scale(1.05);
}

.menu-toggle {
    flex-direction: column;
    cursor: pointer;
    display: none;
    gap: 5px;
}

.bar {
    background-color: white;
    border-radius: 4px;
    width: 30px;
    height: 4px;
}

.side-menu {
    transition: right 0.3s ease;
    background-color: #222;
    font-size: 1.2rem;
    padding-top: 50px;
    position: fixed;
    right: -250px;
    width: 250px;
    height: 100%;
    top: 0;
}

.side-menu.active {
    right: 0;
}

.side-menu-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.side-nav-link {
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: white;
    display: block;
    padding: 10px;
}

.side-nav-link:hover {
    background-color: #444;
}

.close-btn {
    position: absolute;
    cursor: pointer;
    font-size: 30px;
    color: white;
    right: 20px;
    top: 20px;
}

.form-contact {
    text-decoration: underline;
    color: #ffffff;
}

.form-contact:hover {
    color: #dddddd;
}

/************ Imagenes Animados ************/
.image-slider {
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    margin: 0 auto 30px auto;
    border-radius: 20px;
    position: relative;
    max-width: 700px;
    overflow: hidden;
    cursor: grab;
    width: 90%;
    }

    .slides {
    transition: transform 0.7s ease-in-out;
    display: flex;
    }

    .slides img {
    pointer-events: none;
    border-radius: 20px;
    object-fit: cover;
    user-select: none;
    flex-shrink: 0;
    height: 300px;
    width: 100%;
    }

    .image-slider:active {
      cursor: grabbing;
    }

/************ Main Centrado ************/
.main-decorado {
    background: linear-gradient(135deg, #2e2e4a, #3a3a5a);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease forwards;
    text-align: justify;
    border-radius: 20px;
    padding: 40px 30px;
    margin: 40px auto;
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 800px;
    line-height: 1.8;
}

.main-title {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    margin-bottom: 20px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.main-text:first-of-type {
    margin-bottom: 30px;
    font-style: italic;
    text-align: center;
    font-size: 1.3rem;
    color: #f0f0f0;
}

/************ Pregunas Frecuentes ************/
.faq-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: linear-gradient(135deg, #2e2e4a, #3a3a5a);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    color: white;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #444;
    padding: 10px 0;
}

.faq-question {
    cursor: pointer;
    font-weight: 600;
    position: relative;
    padding-right: 25px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-left: 10px;
    font-size: 1rem;
    margin-top: 5px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 5px 10px 10px 10px;
}

/************ Footer y WhatsApp Float ************/
.whatsapp-float {
    animation: slideInLeftBounce 0.8s ease-out;
    background: none;
    position: fixed;
    z-index: 1000;
    border: none;
    bottom: 20px;
    left: 20px;
    padding: 0;
}

.whatsapp-icon {
    transition: transform 0.3s ease;
    height: 60px;
    width: 60px;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

.footer {
    border-top: 1px solid #222236;
    justify-content: space-between;
    background-color: #222236;
    align-items: center;
    text-align: center;
    padding: 15px 20px;
    margin-top: auto;
    flex-wrap: wrap;
    font-size: 14px;
    color: white;
    display: flex;
}

.footer-left {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 15vh;
    display: flex;
    gap: 5px;
    flex: 1;
}

.footer-text, .footer-link {
    font-size: 14px;
    color: white;
    margin: 0;
}

.footer-link {
    text-decoration: none;
    color: #AAAAAA;
}

.footer-link:hover {
    text-decoration: underline;
    color: #FFFFFF;
}

.footer-social {
    align-items: center;
    color: #ffffff;
    margin-top: 10px;
    font-size: 14px;
    display: flex;
    gap: 10px;
}

.footer-social span {
    font-weight: 500;
}

.social-icon {
    transition: transform 0.3s ease;
    height: 24px;
    width: 24px;
}

.social-icon:hover {
    transform: scale(1.2);
}

/************ Media Queries ***********/
@media (max-width: 834px) {
    .nav-list {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 760px) {
    .footer {
        flex-direction: column;
        gap: 10px;
    }
    .footer-left, .footer-social {
        justify-content: center;
        padding-left: 5vh;
    }
}

/************ Snowflake Animation ***********/
.snowflake-wrapper {
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    pointer-events: none;
    animation-name: fall;
    position: fixed;
    z-index: 9999;
    top: -2em;
}

.snowflake {
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    display: inline-block;
    animation-name: spin;
    color: white;
}

@keyframes fall {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(110vh);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}