/* --- Home Page Styles --- */

.header {
    justify-content: space-between;
}

.header-nav-main {
    display: flex;
    gap: 1.5rem;
}
.header-nav-main a {
    color: var(--primary-red);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
}
.header-nav-main a:hover {
    color: var(--primary-red-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}
.header-actions a {
    color: var(--primary-red);
}
.header-actions i {
    font-size: 1.2rem;
    color: var(--dark-text);
}
.header-actions i:hover {
    color: var(--primary-red);
}

.home-banner {
    position: relative;
    width: 100%;
    height: 600px;
    background: #e0e0e0;
    overflow: hidden;
}
.home-banner-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}
.home-banner-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}
.home-banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}
.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}
.dot.active {
    background: var(--primary-red);
}

.home-section {
    padding: 4rem 2rem;
}

.section-title {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.quem-somos-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}
.quem-somos-text {
    flex: 1;
    color: var(--light-text);
    line-height: 1.6;
}
.quem-somos-text p {
    margin-bottom: 1rem;
}
.quem-somos-img {
    flex: 1;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.quem-somos-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rodizio-info p {
    margin-bottom: 1rem;
    color: var(--light-text);
    line-height: 1.5;
}
.rodizio-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}
.rodizio-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.rodizio-img-placeholder {
    width: 100%;
    height: 150px;
    background: #eef2f6;
    border-radius: 0;
}
.rodizio-card-title {
    padding: 1rem;
    margin: 0;
    color: var(--light-text);
    line-height: 1.5;
}

.unidades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
}
.unidade-card {
    display: flex;
    gap: 1.5rem;
}
.unidade-img-container {
    flex: 0 0 45%;
    position: relative;
}
.unidade-img-placeholder {
    width: 100%;
    height: 150px;
    background: #e9ecef;
    border-radius: 8px;
}
.carousel-dots-small {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}
.carousel-dots-small .dot {
    width: 6px;
    height: 6px;
    background: #ccc;
}
.carousel-dots-small .dot.active {
    background: var(--primary-red);
}
.unidade-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.unidade-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}
.unidade-info p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    line-height: 1.4;
}
.unidade-info small {
    font-size: 0.8rem;
    color: #888;
}

.promocao-item {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}
.promocao-text {
    flex: 1;
}
.promocao-text h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}
.promocao-text p {
    color: var(--light-text);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.promocao-img-placeholder {
    flex: 1;
    background: #e9ecef;
    height: 300px;
    border-radius: 8px;
}

.reserve-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.reserve-box {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.reserve-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}
.reserve-box p {
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.5;
}
.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    padding: 0.6rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.2s;
}
.btn-whatsapp:hover {
    background-color: #1ebc5a;
}
.btn-reserve {
    background-color: var(--primary-red);
    color: #fff;
    padding: 0.6rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.2s;
}
.btn-reserve:hover {
    background-color: var(--primary-red-hover);
}

/* Responsividade Home */
@media (max-width: 992px) {
    .home-banner {
        height: 450px;
    }
    .quem-somos-content, .promocao-item {
        gap: 2rem;
    }
    .rodizio-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .unidades-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-banner {
        height: 350px;
    }
    .quem-somos-content {
        flex-direction: column;
    }
    .quem-somos-text, .quem-somos-img {
        flex: none;
        width: 100%;
    }
    .promocao-item {
        flex-direction: column;
    }
    .promocao-text, .promocao-img-placeholder {
        flex: none;
        width: 100%;
    }
    .promocao-img-placeholder {
        height: 200px;
    }
    .reserve-container {
        grid-template-columns: 1fr;
    }
    .unidade-card {
        flex-direction: column;
    }
    .home-section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .home-banner {
        height: 250px;
    }
    .rodizio-items {
        grid-template-columns: 1fr;
    }
}
