:root{
    --background-color: #A65E3E;
    --new-bg: #f5f5f5;
    --text-color: #333;
    --accent-color: #ff6f61;
    --button-gradient: linear-gradient(45deg, #ff6f61, #ff3d2e);
    --submit-gradient: linear-gradient(25deg, #222, #A65E3E);
    --card-bg: #fff;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 6px 12px rgba(0, 0, 0, 0.15);
}
/* Header and Navigation */

header {
    background: var(--background-color); /* Fundo escuro sólido para melhor contraste */
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

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

.nav-container h1 {
    margin: 0;
    font-size: 1.5rem;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff6f61;
}

/* Contact button */
.contact-button {
    display: inline-block;
    padding: 8px 16px;
    background: var(--button-gradient);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Footer */
footer {
    background: var(--background-color);
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer p {
    margin: 0;
}

/* Required field indicator */
.required {
    color: #ff3d2e;
    font-weight: bold;
}

/* Base styles - Mobile First */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--new-bg);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

/* Hero section - Mobile */
.hero {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 50vh;
    object-fit: cover; /* Mudado para cover para enquadrar melhor */
    display: block;
}

.hero-content {
   
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    min-height: 30vh;
    background: var(--background-color); /* Fundo semi-transparente para legibilidade */
}

.hero-content h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 15px;
    margin-top: 0;
}

.hero-content p {
    font-size: 1rem;
    margin: 15px 0;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--button-gradient);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* About section - Mobile */
.about-section {
    padding: 30px 15px;
    text-align: center;
    /* background removido para menos quadrado */
    margin: 15px;
    border-radius: 20px; /* Mais arredondado */
    /* box-shadow removido para menos destaque */
}

.about-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
/*Drinks Grid*/
.drinks-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile First: 1 coluna */
    gap: 20px;
    margin-top: 30px;
}

.drink-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--background-color);
    transition: transform 0.3s ease;
}

.drink-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.drink-card h3 {
    margin: 0 0 10px 0;
    color: var(--background-color);
    font-size: 1.3rem;
}

.drink-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

.events-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.events-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.events-gallery img:hover {
    transform: scale(1.03);
}

/* Form section - Mobile */
.form-section {
    padding: 30px 15px;
    /* background removido */
    text-align: center;
    margin: 15px;
    border-radius: 20px; /* Mais arredondado */
    /* box-shadow removido */
}

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, select:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: var(--submit-gradient);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 15px;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Tablet and Desktop - Progressive Enhancement */
@media (min-width: 768px) {
    .hero {
        padding: 80px 20px;
    }

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

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

    .cta-button {
        padding: 12px 25px;
    }

    .about-section {
        padding: 50px 20px;
        margin: 30px auto;
        max-width: 1200px;
    }

    .about-section h2 {
        font-size: 2.2rem;
    }

    .events-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .events-gallery img {
        height: 220px;
    }

    .form-section {
        padding: 50px 20px;
        margin: 30px auto;
        max-width: 700px;
    }

    .form-section h2 {
        font-size: 2.2rem;
    }

    .checkbox-group {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .checkbox-group label {
        flex: 1 1 45%;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 100px 20px;
    }

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

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

    .cta-button {
        padding: 15px 30px;
    }

    .events-gallery img {
        height: 250px;
    }

    .form-section {
        max-width: 800px;
    }
}
    .hero p {
        font-size: 1.2rem;
    }
    .about-section, .form-section {
        margin: 10px;
        padding: 40px 15px;
    }


.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.checkbox-group label {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ff6f61; /* Cor do checkbox */
}

.submit-button {
    margin-top: 50px;
    padding: 10px 20px;
    background-color: var(--submit-gradient);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    justify-content: center;
    display: flex;
    gap: 10px;
    
}

.submit-button:hover {
    background-color: var(--submit-gradient);
}


.confirmation-container {
    text-align: center;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
}

.confirmation-container h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.confirmation-container p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.return-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6f61;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.return-link:hover {
    background-color: #ff3d2e;
}

.error-container {
    text-align: center;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
}

.error-container h1 {
    font-size: 2rem;
    color: #e63946;
    margin-bottom: 20px;
}

.error-container p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

/* Media queries */
/* Media queries */
/* Media queries */
@media (max-width: 768px) {
    .events-gallery {
        flex-direction: column;
        align-items: center;
    }
    .events-gallery img {
        width: 100%;
        height: auto;
    }

    .nav-container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-container h1 {
        font-size: 1.2rem; /* Menor para mobile */
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap; /* Para evitar overflow */
        justify-content: center;
    }

    .contact-button {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
    .about-section, .form-section {
        margin: 10px;
        padding: 40px 15px;
    }
}   