body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    z-index: 10;
}

.menu, .lets-talk {
    cursor: pointer;
}

#slider {
    height: 100vh;
    overflow: hidden;
    cursor: pointer;
}

.slide {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5vw;
    transition: background-color 0.5s ease;
}

/* Estilos iniciales para el primer slide */
.slide:first-child {
    background-color: black;
    color: white;
}

.slide img {
    max-width: 50%;
    height: auto;
}

@media (max-width: 768px) {
    .slide img {
        max-width: 90%;
    }
}

.shopify-logo{
    max-width: 400px;
}

/* Add CSS variables for dynamic colors */
:root {
    --footer-text-color: #333;
    --footer-border-color: #e7e7e721;
}

/* Add styles for dark background */
body.dark-bg {
    --footer-text-color: #fff;
    --footer-border-color: rgba(255, 255, 255, 0.13);
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    border-top: 1px solid var(--footer-border-color);
    padding: 10px 0;
    font-size: 14px;
    color: var(--footer-text-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    color: var(--footer-text-color);
}

/* Update all anchor links default style */
a {
    color: inherit;
    text-decoration: none;
}

/* Update hover effect for all links */
a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-left, .footer-right {
        margin: 5px 0;
    }
}