/* Home Container */
.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Welcome Section com Background */
.welcome-section {
    position: relative;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.welcome-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
    z-index: 1;
    max-width: 100%;
    display: block;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(166, 197, 15, 0.75) 0%,
        rgba(0, 131, 84, 0.65) 50%,
        rgba(0, 95, 119, 0.75) 100%
    );
    z-index: 2;
}

.welcome-content {
    position: relative;
    z-index: 3;
    padding: 3rem 2rem;
    text-align: center;
    width: 100%;
}

.weather-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}
/*
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
} */

.welcome-section h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.welcome-section p {
    color: var(--brand-accent);
    font-size: 1.2rem;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.menu-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.menu-card--disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.menu-card--guest {
    border: 2px dashed var(--brand-secondary);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.menu-card h3 {
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.menu-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.menu-card-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--brand-secondary);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.menu-card-badge--disabled {
    background-color: #999;
}

/* Info Section */
.info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    margin-top: 3rem;
}

.info-section h3 {
    text-align: center;
    color: var(--brand-primary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0, 131, 84, 0.3);
}

.step h4 {
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design */
/* Tablets e Dispositivos Médios */
@media (max-width: 1024px) {
    .welcome-section {
        min-height: 280px;
    }

    .welcome-content {
        padding: 2.5rem 2rem;
    }

    .welcome-section h1 {
        font-size: 2.2rem;
    }

    .welcome-section p {
        font-size: 1.1rem;
    }

    .weather-icon {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        min-height: 250px;
    }

    .welcome-content {
        padding: 2rem 1.5rem;
    }

    .welcome-section h1 {
        font-size: 1.8rem;
    }

    .welcome-section p {
        font-size: 1rem;
    }

    .weather-icon {
        font-size: 3rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .home-container {
        padding: 1rem 0.5rem;
    }

    .welcome-section {
        min-height: 200px;
        border-radius: 15px;
    }

    .welcome-content {
        padding: 1.5rem 1rem;
    }

    .welcome-section h1 {
        font-size: 1.5rem;
    }

    .welcome-section p {
        font-size: 0.9rem;
    }

    .weather-icon {
        font-size: 2.5rem;
    }

    .menu-card {
        padding: 1.5rem;
    }

    .info-section {
        padding: 1.5rem 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .welcome-section {
        min-height: 180px;
        border-radius: 12px;
    }

    .welcome-content {
        padding: 1.25rem 0.75rem;
    }

    .welcome-section h1 {
        font-size: 1.3rem;
    }

    .welcome-section p {
        font-size: 0.85rem;
    }

    .weather-icon {
        font-size: 2rem;
    }
}
