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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
    overflow-x: hidden;
}

/* Highlighted call-to-action box */
.highlight-box {
    background: linear-gradient(135deg, #e84a00, #c23616);
    color: #9ca3af; /* Gray color to match menu items */
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-left: 6px solid #f97316; /* Distinctive border */
}

.highlight-box h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.highlight-box p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.highlight-box .cta-button {
    background-color: #fff;
    color: #e84a00;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.highlight-box .cta-button:hover {
    background-color: #e84a00;
    color: #fff;
}

header.header {
    background: linear-gradient(135deg, #6b7280, #1f2937);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    margin-bottom: 10px;
    font-size: 2.5rem;
    animation: fadeInDown 1s ease-in-out;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: #6b7280; /* Even darker gray color for menu items */
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    transition: background 0.3s, color 0.3s;
}

/* Special border for the last menu item (Fila de Espera Exclusiva) */
nav ul li:last-child a {
    border-left: 4px solid #f97316; /* Orange border to highlight */
    padding-left: 12px; /* Add extra space to account for the border */
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #f97316;
}

section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    animation: fadeInUp 1s ease-in-out;
}

section:nth-of-type(even) {
    background-color: #fff;
}

section:nth-of-type(odd) {
    background-color: #f9fafb;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1f2937;
    text-align: center;
    position: relative;
}

h2::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background-color: #f97316;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

p, ul {
    font-size: 1.1rem;
    color: #4b5563;
    text-align: center;
    max-width: 800px;
    margin: auto;
}

ul {
    list-style-type: none;
    padding: 20px 0;
}

ul li {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    padding: 15px;
    transition: transform 0.3s, background-color 0.3s;
}

ul li:hover {
    transform: translateY(-5px);
    background-color: #f3f4f6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    margin: auto;
}

.contact-form label {
    font-weight: bold;
    color: #374151;
}

.contact-form input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #e5e7eb;
    transition: border-color 0.3s;
}

.contact-form input:focus {
    border-color: #f97316;
    outline: none;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #f97316;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #e84a00;
}

/* Special styles for the waiting list section */
section#contato {
    background: linear-gradient(135deg, #f97316, #e84a00);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
    border: 6px solid #f97316; /* Thick orange border to highlight */
    outline: 4px solid #ffc107; /* Additional yellow outline for emphasis */
}

/* Special styling for the highlighted text in the contact section */
.highlight-text {
    background-color: rgba(255, 193, 7, 0.2); /* Lighter orange background with transparency */
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #333; /* Darker text for better contrast */
    font-weight: bold;
}

/* Change the h2 in contact section to gray on hover */
#contato h2:hover {
    color: rgb(0, 0, 0) !important; 
}

section#contato h2 {
    font-size: 2.5rem;
    color: #fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.contact-form button {
    background-color: #fff;
    color: #f97316;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.contact-form button:hover {
    background-color: #e84a00;
    color: #fff;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide the main menu and show the hamburger button */
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 15px;
        margin-top: 20px;
    }

    #menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    nav ul.active {
        display: flex;
    }
}

@media (min-width: 769px) {
    /* Hide the hamburger button on larger screens */
    #menu-toggle {
        display: none;
    }

    /* Show the main menu on larger screens */
    nav ul {
        display: flex !important;
    }
}

/* Mobile-specific styles */
@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p, ul {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p, ul {
        font-size: 1rem;
    }
}
