/* Estilos Gerais */
:root {
    --primary-color: #1B03A3;
    --secondary-color: #1B03A3;
    --accent-color: #ff9900;
    --dark-color: #371cb0;
    --light-color: #f8f8f8;
    --text-color: #333333;
    --gray-color: #371cb0;
    --light-gray: #eeeeee;
    --white-color: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

.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: 15px;
    color: var(--dark-color);
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

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

section {
    padding: 60px 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--gray-color);
    color: var(--white-color);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white-color);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: var(--white-color);
}

/* Header */
.header {
    background-color: var(--white-color);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

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

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

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.tagline {
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

.nav-menu {
    position: relative;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white-color);
    width: 250px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
}

.menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu li {
    margin-bottom: 10px;
}

.menu li a {
    color: var(--text-color);
    font-weight: 500;
    display: block;
    padding: 8px 0;
    transition: var(--transition);
}

.menu li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 0;
}

.hero h2 {
    font-size: 2.5rem;
    color: var(--white-color);
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.aberto24h {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    text-align: center;
    background-color: var(--white-color);
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature {
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
}

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

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Reservation Section */
.reservation {
    background-color: var(--light-color);
    text-align: center;
}

.reservation h2 {
    margin-bottom: 20px;
}

.reservation p {
    margin-bottom: 30px;
}

.reservation-info {
    margin-top: 30px;
}

.info-card {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    text-align: left;
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 15px;
}

/* Rules Section */
.rules {
    background-color: var(--white-color);
}

.accordion {
    margin-top: 30px;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    background-color: var(--light-color);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: var(--light-gray);
}

.accordion-header i {
    transition: var(--transition);
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--white-color);
}

.accordion-content.active {
    padding: 20px;
    max-height: 200px;
}

/* Policy Section */
.policy {
    background-color: var(--light-color);
}

.policy-card {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.policy-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.policy-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--white-color);
    padding: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.policy-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    margin-right: 15px;
    font-weight: 600;
    flex-shrink: 0;
}

.policy-warning {
    background-color: #fff3cd;
    border-left: 5px solid var(--accent-color);
    padding: 15px;
    display: flex;
    align-items: center;
    border-radius: 5px;
}

.policy-warning i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Location Section */
.location {
    background-color: var(--white-color);
    text-align: center;
}

.address {
    margin-bottom: 20px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact {
    background-color: var(--light-color);
    text-align: center;
}

.contact-warning {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.contact-warning i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 10px;
}

.contact-warning p {
    font-weight: 700;
    color: #dc3545;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.footer-logo p {
    color: var(--white-color);
}

.footer-links h3, .footer-contact h3 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* Media Queries */
@media (min-width: 768px) {
    .features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
    
    .menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: flex;
        width: auto;
        background: none;
        box-shadow: none;
        padding: 0;
    }
    
    .menu li {
        margin: 0 0 0 20px;
    }
    
    .menu li a {
        padding: 0;
    }
    
    .menu li a:hover {
        padding-left: 0;
    }
}
