/* Estilos base para pantallas grandes */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4, #ffdde1);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.container, .title-container, .menu-container, .footer-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    width: 90%;
    animation: fadeIn 1s ease-in-out;
    margin: 20px;
}

h1, h2 {
    color: #2c3e50;
}

p, li {
    color: #555;
    font-size: 18px;
    margin: 10px 0;
}

a.menu-item {
    margin-right: 20px;
    font-size: 18px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: bold;
}

a.menu-item:hover {
    text-decoration: underline;
}

img.logo {
    width: 150px;
    height: auto;
    margin-right: 20px;
}

img.design-image {
    width: 50px;
    height: 50px;
    margin-left: 10px;
}

.menu-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

/* Cinta de servicios */
.service-marquee {
    background-color: #fff;
    padding: 10px 0;
    font-size: 16px;
    color: #2c3e50;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
    margin-bottom: 30px;
}

.service-marquee span {
    display: inline-block;
    animation: scroll-marquee 30s linear infinite;
}

@keyframes scroll-marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    width: 100%;
}

.service-info {
    display: flex;
    align-items: center;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    text-align: center;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

.footer-container {
    text-align: center;
    font-size: 14px;
    color: #2c3e50;
    padding: 15px 0;
}

.footer-container p {
    margin: 5px 0;
}

/* Estilos para pantallas pequeñas (tabletas y móviles) */
@media (max-width: 768px) {
    .menu-container {
        flex-direction: column;
        align-items: center;
    }

    .menu-item {
        margin: 10px 0;
    }

    .service-marquee span {
        font-size: 14px;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .whatsapp-button {
        width: 100%;
        margin-top: 10px;
    }

    .footer-container p {
        font-size: 12px;
    }
}

/* Estilos para móviles pequeños */
@media (max-width: 480px) {
    .container, .title-container, .footer-container {
        padding: 15px;
        width: 95%;
    }

    h1, h2 {
        font-size: 1.5em;
    }

    .service-item {
        font-size: 16px;
    }

    .whatsapp-button {
        font-size: 16px;
        padding: 8px 15px;
    }

    .menu-item {
        font-size: 16px;
    }

    .footer-container p {
        font-size: 10px;
    }

    img.logo {
        width: 120px;
    }
}

/* Animación de fade */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
