/* Estilos gerais */
:root {
    --primary-color: #e60000;
    --secondary-color: #000000;
    --accent-color: #ffcc00;
    --text-color: #333333;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --dark-gray: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Header */
header {
    background-color: var(--secondary-color);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--light-color);
    font-weight: 500;
    position: relative;
    font-size: 0.9rem;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    color: var(--light-color);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/IMG_5255(1).jpeg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 0;
    padding-top: 90px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Rodízio Section */
.rodizio {
    background-color: var(--gray-color);
}

.rodizio-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.rodizio-content {
    flex: 1;
    min-width: 300px;
}

.rodizio-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.rodizio-content ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.rodizio-content ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.rodizio-precos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 1;
    min-width: 300px;
    justify-content: center;
}

.preco-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 220px;
}

.preco-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.preco-card h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.preco-card .preco {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.preco-card p {
    color: var(--dark-gray);
}

.preco-card.destaque {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.preco-card.destaque h4,
.preco-card.destaque p {
    color: var(--light-color);
}

.obs {
    text-align: center;
    font-style: italic;
    color: var(--dark-gray);
    margin-top: 20px;
}

/* Rodízio Crianças */
.rodizio-criancas {
    margin-top: 50px;
    text-align: center;
}

.rodizio-criancas h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.criancas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.crianca-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 200px;
}

.crianca-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.crianca-card .idade {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.crianca-card .preco-crianca {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.obs-criancas {
    font-style: italic;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Dia dos Namorados Section */
.dia-dos-namorados {
    background-color: var(--light-color);
    padding: 80px 0;
}

.namorados-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.namorados-info {
    flex: 1;
    min-width: 300px;
}

.namorados-info h2 {
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 25px;
}

.namorados-info h2:after {
    left: 0;
    transform: none;
}

.namorados-preco {
    margin-bottom: 20px;
}

.namorados-preco .valor {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.namorados-preco .por-pessoa {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-left: 5px;
}

.namorados-descricao {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.namorados-data {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.namorados-slogan {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
}

.namorados-menu {
    margin-bottom: 25px;
}

.namorados-menu li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.namorados-menu li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.namorados-obs {
    font-weight: 600;
    font-size: 1.1rem;
}

.namorados-imagem {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.namorados-imagem img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Galeria Section */
.galeria {
    background-color: var(--light-color);
    padding-bottom: 100px;
}

.galeria-tabs {
    display: flex;
    justify-content: center;
    margin: 40px 0 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 12px 25px;
    background-color: var(--gray-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.swiper {
    width: 100%;
    height: 500px;
    margin-top: 20px;
}

.swiper-slide {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slide-caption {
    margin-top: 15px;
    font-weight: 500;
    color: var(--secondary-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* Promoções Section */
.promocoes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.promocao-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 350px;
    flex: 1;
}

.promocao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.promocao-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.promocao-card h3 {
    color: var(--secondary-color);
}

.promocao-card .destaque {
    color: var(--primary-color);
    font-weight: 600;
    margin: 15px 0;
}

/* Horários Section */
.horarios {
    background-color: var(--gray-color);
}

.horarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.dia-horario {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dia-horario .dia {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.dia-horario .horario {
    color: var(--primary-color);
    font-weight: 500;
}

.dia-horario.fechado {
    background-color: var(--secondary-color);
}

.dia-horario.fechado .dia,
.dia-horario.fechado .horario {
    color: var(--light-color);
}

.reservas {
    margin-top: 40px;
    text-align: center;
}

.reservas h3 {
    color: var(--primary-color);
}

/* Localização Section */
.localizacao-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.endereco {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.endereco p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.endereco i {
    color: var(--primary-color);
    margin-right: 10px;
}

.mapa {
    flex: 2;
    min-width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contato Section */
.contato-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.contato-item {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.contato-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contato-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contato-item h3 {
    color: var(--secondary-color);
}

.contato-item a {
    font-weight: 500;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--light-color);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 2rem;
    transition: all 0.3s ease;
}

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

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 80px;
}

.footer-info {
    text-align: right;
}

/* Responsividade */
@media (max-width: 992px) {
    nav ul {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
        margin-top: 20px;
    }
    
    .swiper {
        height: 400px;
    }
    
    .swiper-slide img {
        max-height: 300px;
    }
    
    .namorados-content {
        flex-direction: column;
    }
    
    .namorados-info h2 {
        text-align: center;
    }
    
    .namorados-info h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .rodizio-info,
    .localizacao-info {
        flex-direction: column;
    }

    .preco-card.destaque {
        transform: scale(1);
    }
    
    .swiper {
        height: 350px;
    }
    
    .swiper-slide img {
        max-height: 250px;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 50px;
    }

    .hero {
        height: auto;
        min-height: 100vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
    
    .swiper {
        height: 300px;
    }
    
    .swiper-slide img {
        max-height: 200px;
    }
}
