<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Experiência Exclusiva: K2M & Google Cloud</title>
    <style>
        :root {
            --gold: #d4af37;
            --dark-bg: #0f1113;
            --text-light: #f4f4f4;
            --accent: #4285F4;
        }

        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            margin: 0;
            line-height: 1.6;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
        }

        header {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin-bottom: 60px;
        }

        header img {
            max-height: 50px; /* Ajuste conforme necessário */
            width: auto;
        }

        .hero h1 {
            font-size: 2.8rem;
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .hero p {
            font-size: 1.25rem;
            color: #bbb;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .highlight-box {
            border: 1px solid rgba(212, 175, 55, 0.3);
            background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
            padding: 40px;
            border-radius: 12px;
            margin-bottom: 50px;
            text-align: left;
        }

        .exclusive-tag {
            display: inline-block;
            background: var(--gold);
            color: #000;
            padding: 6px 18px;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            border-radius: 4px;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .highlight-box h2 {
            color: var(--gold);
            font-size: 1.6rem;
            margin-top: 0;
        }

        .chef-mention {
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-style: italic;
        }

        .details-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 60px;
        }

        .details-item {
            background: rgba(255,255,255,0.03);
            padding: 20px;
            border-radius: 8px;
        }

        .details-item h3 {
            margin: 0 0 10px 0;
            font-size: 0.9rem;
            text-transform: uppercase;
            color: var(--gold);
            letter-spacing: 1px;
        }

        /* Seção do Formulário */
        .rsvp-section {
            background-color: #1a1d20;
            padding: 50px 30px;
            border-radius: 12px;
            border: 1px solid #333;
        }

        .rsvp-section h2 {
            margin-bottom: 30px;
            font-weight: 400;
            letter-spacing: 1px;
        }

        #form-container {
            min-height: 200px; /* Espaço reservado */
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px dashed #444;
            color: #666;
            border-radius: 8px;
        }

        footer {
            margin-top: 80px;
            font-size: 0.85rem;
            color: #555;
            padding-bottom: 40px;
        }

        @media (max-width: 600px) {
            .details-grid { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2rem; }
        }
    </style>