/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

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

/* Header and Navigation */
header {
    background-color: #000000;
    color: #fff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff00ff; /* Bright purple for a lively feel */
}

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

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

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

nav ul li a:hover {
    color: #ff00ff;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("Karaokeversao3.jpg") no-repeat center center/cover; /* Placeholder for a lively karaoke image */
    color: #fff;
    text-align: center;
    padding: 150px 20px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px; /* Ensure a good height */
}

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

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ff00ff;
}

.hero p {
    font-size: 22px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ff00ff; /* Purple */
    color: #333;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #8e2cc2; /* Darker purple on hover */
    transform: scale(1.05);
}

/* Sections General */
section {
    padding: 80px 20px;
    text-align: center;
}

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

h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

/* Packages Section */
.packages .package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.package-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card h3 {
    font-size: 28px;
    color: #ff00ff;
    margin-bottom: 15px;
}

.package-card .price {
    font-size: 24px;
    font-weight: bold;
    color: #555;
    margin-bottom: 20px;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.package-card ul li {
    margin-bottom: 10px;
    font-size: 18px;
    color: #666;
}

.package-card .cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.optional-items {
    margin-top: 50px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.optional-items h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.optional-items ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.optional-items ul li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #666;
}

.optional-items .note {
    font-size: 16px;
    color: #888;
}

/* Benefits Section */
.benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

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

.benefit-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    /* Placeholder for icons */
}

.benefit-item p {
    font-size: 18px;
    color: #555;
}

.music-catalog {
    margin-top: 50px;
}

/* Ideal For Section */
.ideal-for .ideal-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.ideal-for-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

.ideal-for-item:hover {
    transform: translateY(-5px);
}

.ideal-for-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    /* Placeholder for icons */
}

.ideal-for-item p {
    font-size: 18px;
    color: #555;
}

/* Contact Section */
.contact {
    background-color: #000000;
    color: #fff;
    padding: 80px 20px;
}

.contact h2 {
    color: #ff00ff;
}

.contact p {
    font-size: 20px;
    margin-bottom: 30px;
}

.whatsapp-button {
    background-color: #009dff;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.whatsapp-button:hover {
    background-color: #007acc;
    transform: scale(1.05);
}

.instagram-link {
    margin-top: 20px;
    font-size: 18px;
}

.instagram-link a {
    color: #ff00ff;
    text-decoration: none;
    font-weight: bold;
}

.instagram-link a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    nav ul {
        flex-direction: column;
        margin-top: 20px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .package-grid, .benefits-grid, .ideal-for-grid {
        grid-template-columns: 1fr;
    }

    .package-card, .benefit-item, .ideal-for-item {
        margin: 0 auto;
        max-width: 400px;
    }
}

