/* Importando a fonte Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

/* Estilos Globais */
body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #f1f1f1;
    background-color: #000;
    overflow-x: hidden;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Cabeçalho Fixo */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: #daa520;
    padding: 6px 0;
    border-bottom: 2px solid #daa520;
    animation: fadeIn 1s ease-in-out;
    z-index: 1000;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

header .logo {
    max-width: 90px;
    height: auto;
    display: block;
    margin: 0;
    align-self: flex-start;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #daa520;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FFD700;
}

.cart-toggle {
    background: transparent;
    border: 1px solid #daa520;
    color: #daa520;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    gap: 8px;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cart-toggle:hover {
    background: #daa520;
    color: #000;
}

/* Hero Section */
.hero {
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    color: #daa520;
    text-align: center;
    padding: 150px 20px 100px;
    animation: fadeIn 2s ease-in-out;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero .btn {
    background: #daa520;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero .btn:hover {
    background: #FFD700;
    transform: scale(1.1);
}

/* Produtos */
#products {
    padding: 80px 0;
    background: #111;
    text-align: center;
    animation: slideUp 1.5s ease-out;
}

.product-category {
    margin: 40px 0 20px;
    color: #FFD700;
    font-size: 1.6em;
}

.product-list {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-list--honor {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
}

.product {
    background: #000;
    border: 1px solid #daa520;
    border-radius: 10px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 2px 5px rgba(255, 215, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: box-shadow 0.3s ease;
}

.product:hover {
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.product h3 {
    margin: 0;
    color: #daa520;
}

.product label {
    color: #FFD700;
    font-weight: 600;
}

.product-select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
}

.product button {
    background: #daa520;
    color: #000;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.2s;
    width: 100%;
}

.product button:hover {
    background: #FFD700;
    transform: scale(1.05);
}

.card-media {
    position: relative;
    width: 100%;
    height: 140px;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.product:hover .card-media,
.kit-card:hover .card-media {
    transform: rotateY(180deg);
}

.card-face {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    backface-visibility: hidden;
    border-radius: 10px;
    background: #000;
}

.card-face img {
    max-width: 200%;
    height: 150%;
    object-fit: contain;
}

.product .card-media {
    height: 260px;
}

.product .card-face img {
    max-width: 120%;
    height: 120%;
}

.kit-card .card-media {
    height: 220px;
    width: 200px;

}

.kit-card .card-face {
    overflow: hidden;
}

.kit-card .card-face img {
    max-width: 140%;
    height: 100%;
}

.card-face-back {
    transform: rotateY(180deg);
    text-align: center;
    background: #111;
}

.card-description,
.kit-description {
    margin: 0;
}

/* Sobre Nós */
#about {
    color: #ffffff;
    margin: 5rem auto;
    padding: 2rem 6rem;
    border-radius: 12px;
    max-width: 800px; /* Aumentando a largura máxima */
    
    transition: all 0.5s;
    overflow: hidden;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza o conteúdo horizontalmente */
    justify-content: center; /* Centraliza o conteúdo verticalmente */
}

.about-image {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
}
.animated-rectangle {
    margin: 2rem auto;
    color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    max-width: 800px;
    background: linear-gradient(145deg, #000000, #000000);
    box-shadow: 10px 10px 20px #FFD700, -10px -10px 20px #ffffff;
    transition: transform 0.5s, box-shadow 0.5s;
    text-align: center;
    position: relative;
}

.animated-rectangle:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* FAQ Cards */
#faq {
    padding: 80px 0;
}

.faq-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.faq-card {
    position: relative;
    min-height: 260px;
    height: 260px;
    transition: 200ms;
}

.faq-canvas {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    perspective: 800px;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 0;
}

.faq-card-surface {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
    border-radius: 18px;
    background: #000;
    border: 1px solid rgba(255, 215, 0, 0.7);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    transition: transform 200ms ease, filter 200ms ease;
}

.faq-card-surface::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(circle at top, rgba(255, 215, 0, 0.2), transparent 60%);
    opacity: 0.2;
    filter: blur(20px);
    z-index: -1;
    transition: opacity 200ms ease;
}

.faq-question {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.faq-answer {
    margin: 12px 0 0;
    color: #ffd700;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 200ms ease, transform 200ms ease;
}

.faq-hint {
    position: absolute;
    bottom: 14px;
    left: 16px;
    font-size: 0.85rem;
    color: #ffd700;
    transition: opacity 200ms ease;
}

.faq-tracker {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.faq-tracker:hover {
    cursor: pointer;
}

.faq-tracker:hover ~ .faq-card-surface .faq-answer {
    opacity: 1;
    transform: translateY(0);
}

.faq-tracker:hover ~ .faq-card-surface .faq-hint {
    opacity: 0;
}

.faq-tracker:hover ~ .faq-card-surface {
    filter: brightness(1.1);
}

.faq-card:hover .faq-card-surface::before {
    opacity: 0.45;
}

.faq-card .tr-1:hover ~ .faq-card-surface {
    transform: rotateX(20deg) rotateY(-10deg);
}

.faq-card .tr-2:hover ~ .faq-card-surface {
    transform: rotateX(20deg) rotateY(-5deg);
}

.faq-card .tr-3:hover ~ .faq-card-surface {
    transform: rotateX(20deg) rotateY(0deg);
}

.faq-card .tr-4:hover ~ .faq-card-surface {
    transform: rotateX(20deg) rotateY(5deg);
}

.faq-card .tr-5:hover ~ .faq-card-surface {
    transform: rotateX(20deg) rotateY(10deg);
}

.faq-card .tr-6:hover ~ .faq-card-surface {
    transform: rotateX(10deg) rotateY(-10deg);
}

.faq-card .tr-7:hover ~ .faq-card-surface {
    transform: rotateX(10deg) rotateY(-5deg);
}

.faq-card .tr-8:hover ~ .faq-card-surface {
    transform: rotateX(10deg) rotateY(0deg);
}

.faq-card .tr-9:hover ~ .faq-card-surface {
    transform: rotateX(10deg) rotateY(5deg);
}

.faq-card .tr-10:hover ~ .faq-card-surface {
    transform: rotateX(10deg) rotateY(10deg);
}

.faq-card .tr-11:hover ~ .faq-card-surface {
    transform: rotateX(0deg) rotateY(-10deg);
}

.faq-card .tr-12:hover ~ .faq-card-surface {
    transform: rotateX(0deg) rotateY(-5deg);
}

.faq-card .tr-13:hover ~ .faq-card-surface {
    transform: rotateX(0deg) rotateY(0deg);
}

.faq-card .tr-14:hover ~ .faq-card-surface {
    transform: rotateX(0deg) rotateY(5deg);
}

.faq-card .tr-15:hover ~ .faq-card-surface {
    transform: rotateX(0deg) rotateY(10deg);
}

.faq-card .tr-16:hover ~ .faq-card-surface {
    transform: rotateX(-10deg) rotateY(-10deg);
}

.faq-card .tr-17:hover ~ .faq-card-surface {
    transform: rotateX(-10deg) rotateY(-5deg);
}

.faq-card .tr-18:hover ~ .faq-card-surface {
    transform: rotateX(-10deg) rotateY(0deg);
}

.faq-card .tr-19:hover ~ .faq-card-surface {
    transform: rotateX(-10deg) rotateY(5deg);
}

.faq-card .tr-20:hover ~ .faq-card-surface {
    transform: rotateX(-10deg) rotateY(10deg);
}

.faq-card .tr-21:hover ~ .faq-card-surface {
    transform: rotateX(-20deg) rotateY(-10deg);
}

.faq-card .tr-22:hover ~ .faq-card-surface {
    transform: rotateX(-20deg) rotateY(-5deg);
}

.faq-card .tr-23:hover ~ .faq-card-surface {
    transform: rotateX(-20deg) rotateY(0deg);
}

.faq-card .tr-24:hover ~ .faq-card-surface {
    transform: rotateX(-20deg) rotateY(5deg);
}

.faq-card .tr-25:hover ~ .faq-card-surface {
    transform: rotateX(-20deg) rotateY(10deg);
}




/* Contato */
#contact {
    padding: 80px 0;
    background: #111;
    text-align: center;
    animation: fadeIn 2.5s ease-out;
}

#feedback-actions {
    padding: 70px 0 90px;
    background: #0a0a0a;
    text-align: center;
}

.feedback-buttons {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.complaint-button,
.feedback-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.complaint-button {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

.complaint-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.5);
}

.feedback-button {
    position: relative;
    overflow: hidden;
    color: #0a0a0a;
    background: linear-gradient(120deg, #ffd700, #f4b400);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.feedback-button-glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent 70%);
    opacity: 0;
    animation: glowPulse 2.4s ease-in-out infinite;
}

.feedback-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 26px rgba(255, 215, 0, 0.6);
}

.feedback-button:hover .feedback-button-glow {
    opacity: 1;
}

.feedback-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2200;
}

.feedback-modal.is-visible {
    display: flex;
}

.feedback-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.feedback-modal__card {
    position: relative;
    z-index: 1;
    width: min(520px, 92vw);
    background: #0d0d0d;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    padding: 28px;
    color: #f3f3f3;
}

.feedback-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.06);
    color: #ffd700;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
    z-index: 2100;
    padding: 24px;
}

.mobile-popup.is-visible {
    display: flex;
}

.mobile-popup__content {
    background: #0d0d0d;
    border-radius: 18px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    color: #f7f4e4;
    padding: 24px;
    text-align: center;
    width: min(360px, 90vw);
    display: grid;
    gap: 12px;
}

.mobile-popup__content h3 {
    color: #ffd700;
    margin: 0;
}

.mobile-popup__close {
    background: #ffd700;
    color: #000;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
    cursor: pointer;
}

.mobile-popup__close:hover {
    background: #f4b400;
}

.feedback-panel {
    display: grid;
    gap: 18px;
}

.feedback-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
}

.feedback-textarea {
    min-height: 140px;
    width: 85%;
    resize: none;
    border-radius: 14px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    background: #121212;
    color: #f7f4e4;
    padding: 14px;
    font-size: 0.95rem;
    outline: none;
}

.feedback-textarea:focus {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.feedback-moods {
    display: grid;
    grid-template-columns: repeat(2, 1fr) auto;
    gap: 10px;
    align-items: center;
    color: #ffffff;
}

.feedback-mood,
.feedback-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    background: #121212;
    color: #ffd700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feedback-mood.is-selected {
    border-color: #ffd700;
    box-shadow: 0 0 14px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.feedback-send {
    width: 64px;
    background: linear-gradient(135deg, #ffd700, #f4b400);
    color: #0a0a0a;
}

.feedback-send svg {
    stroke: currentColor;
}

.feedback-status {
    min-height: 20px;
    text-align: center;
    color: #f4b400;
    font-weight: 600;
}

.feedback-spacer {
    width: 10px;
}

@keyframes glowPulse {
    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}


#kits,
#events {
    padding: 80px 0;
    background: #0a0a0a;
    text-align: center;
}

.kits-grid,
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.kits-grid {
    align-items: start;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    justify-items: center;
}



.kit-card,
.event-form,
.event-calendar {
    background: #000;
    border: 1px solid #daa520;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(255, 215, 0, 0.2);
    text-align: center;
}

.kit-card {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: box-shadow 0.3s ease;
    max-width: 400px;
    max-height: 600px;
}

.kit-card--featured {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 300px;
}

.kit-card--premium,
.kit-card--gift {
    max-width: 400px;
    min-width: 350px;
}

.event-form,
.event-calendar {
    padding: 24px;
}

.event-calendar {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(255, 215, 0, 0.08), transparent 45%), #000;
}

.event-calendar::before {
    content: "";
    position: absolute;
    inset: -120px;
    background: conic-gradient(from 180deg, transparent, rgba(255, 215, 0, 0.12), transparent 45%);
    animation: calendarGlow 12s linear infinite;
    pointer-events: none;
}

.kit-card:hover {
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

@media (max-width: 760px) {
    .product-list--honor {
        grid-template-columns: 1fr;
    }

    .kits-grid {
        grid-template-columns: 1fr;
    }

    .kit-card--featured {
        grid-column: auto;
    }
}

@media (max-width: 760px) {
    .product-list--honor {
        grid-template-columns: 1fr;
    }

    .kits-grid {
        grid-template-columns: 1fr;
    }

    .kit-card--featured {
        grid-column: auto;
    }
}

.kit-card h3,
.event-form h3,
.event-calendar h3 {
    color: #FFD700;
    margin: 0;
    position: relative;
    z-index: 1;
}

.kit-card label {
    color: #FFD700;
    font-weight: 600;
}

.option-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin: 2px 0 2px;
    
}

.option-wrapper--compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    font-weight: 1em;
}

.option-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-card {
    position: relative;
    width: 40px;
    min-height: 20px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 215, 0, 0.18);
    background: #0b0b0b;
    color: #f7f1d0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    justify-content: center;
    cursor: pointer;
    font-size: small;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.option-card--compact {
    width: 50px;
    min-height: 30px;
    font-size: 0.05rem;
}

.option-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 18px rgba(255, 215, 0, 0.15);
}

.option-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.35);
    background: #111;
}

.option-input:checked + .option-card {
    border-color: #ffd700;
    box-shadow: 0 12px 22px rgba(255, 215, 0, 0.25);
}

.option-input:checked + .option-card .option-check::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #ffd700;
}

.option-title {
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.option-price {
    font-size: 0.5rem;
    font-weight: 700;
    color: #ffd700;
}

.kit-price {
    font-size: 0.8em;
    font-weight: 600;
    color: #FFD700;
}

.kit-card button {
    background: #daa520;
    color: #000;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.2s;
    width: 100%;
}

.kit-card button:hover {
    background: #FFD700;
    transform: scale(1.03);
}

.event-form label {
    display: block;
    margin-top: 12px;
    color: #FFD700;
}

.event-form input {
    width: 100%;
    margin-top: 6px;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
}

.event-form button {
    margin-top: 16px;
    width: 100%;
}

.event-calendar ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.event-calendar li {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(17, 17, 17, 0.95));
    padding: 14px 16px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    border: 1px solid rgba(255, 215, 0, 0.25);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    background-size: 200% 200%;
    animation: eventShimmer 8s ease infinite;
}

.event-calendar li:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 16px 28px rgba(255, 215, 0, 0.25);
}

.event-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.35);
    box-shadow: inset 0 0 12px rgba(255, 215, 0, 0.25);
    animation: iconFloat 3s ease-in-out infinite;
}

.event-details {
    display: grid;
    gap: 4px;
    text-align: left;
}

.event-date {
    font-weight: 700;
    color: #ffd966;
    letter-spacing: 0.02em;
}

.event-title {
    font-size: 1.05rem;
    color: #fff;
}

.event-location {
    font-size: 0.95rem;
    color: #d6c47a;
}

.event-calendar .event-empty {
    text-align: center;
    color: #ccc;
}

@keyframes iconFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes eventShimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes calendarGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.contact-info {
    list-style: none;
    padding: 0;
    color: #FFD700;
    font-size: 1.2em;
    animation: slideUp 1.5s ease-out;
}

.contact-info li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.contact-info li:hover {
    transform: scale(1.1);
}

.contact-info a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #daa520;
}

.contact-info i {
    font-size: 1.5em;
    transition: transform 0.3s ease, color 0.3s ease;
    animation: bounce 1.5s infinite ease-in-out;
}

.contact-info li:hover i {
    color: #FFD700;
    transform: scale(1.2);
}

/* Rodapé */
footer {
    background: #000;
    color: #daa520;
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid #daa520;
    animation: fadeIn 3s ease-out;
}


/* Estilos para o carrinho de compras fixo */
#cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: #111;
    color: #FFD700;
    padding: 1rem;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

#cart.is-visible {
    display: block;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.cart-close {
    background: transparent;
    border: 1px solid #FFD700;
    color: #FFD700;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
}

#cart h2 {
    text-align: center;
    margin-bottom: 1rem;
}

#cart-list {
    list-style: none;
    padding: 0;
}

#cart-list li {
    margin: 0.5rem 0;
    padding: 0.5rem;
    background-color: #222;
    border-radius: 5px;
}

#cart-list li.cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 8px;
}

.cart-item-name {
    font-size: 0.95em;
}

.cart-item-controls {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.qty-btn {
    background: #333;
    color: #FFD700;
    border: 1px solid #555;
    width: 26px;
    height: 26px;
    border-radius: 4px;
    cursor: pointer;
}

.cart-qty {
    min-width: 18px;
    text-align: center;
    font-weight: 600;
}

.cart-remove {
    background: transparent;
    border: none;
    color: #FFD700;
    cursor: pointer;
    font-size: 1rem;
}

#cart-total {
    margin-top: 1rem;
    font-size: 1.2em;
    text-align: center;
}

#cart button {
    display: block;
    width: 100%;
    padding: 0.5rem;
    margin-top: 1rem;
    background-color: #FFD700;
    color: #111;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
}

    #cart button:hover {
        background-color: #daa520;
    }

/* Checkout and payment overlay */
#checkout,
#payment {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.95);
    color: #FFD700;
    z-index: 1001;
    padding: 4rem 1rem 1rem 1rem;
    box-sizing: border-box;
}

    #checkout .cart-container,
    #payment .cart-container {
        margin: 0 auto;
        max-width: 360px;
        text-align: center;
        padding-bottom: 2rem;
    }

    #checkout .group {
        position: relative;
        margin-top: 1.25rem;
        text-align: left;
    }

    #checkout .input {
        font-size: 16px;
        padding: 10px 10px 10px 5px;
        display: block;
        width: 100%;
        border: none;
        border-bottom: 1px solid #daa520;
        background: transparent;
        color: #f1f1f1;
    }

    #checkout .input:focus {
        outline: none;
    }

    #checkout .group label {
        color: #FFD700;
        font-size: 18px;
        font-weight: normal;
        position: absolute;
        pointer-events: none;
        left: 5px;
        top: 10px;
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
    }

    #checkout .input:focus ~ label,
    #checkout .input:valid ~ label {
        top: -20px;
        font-size: 14px;
        color: #daa520;
    }

    #checkout .bar {
        position: relative;
        display: block;
        width: 100%;
    }

    #checkout .bar:before,
    #checkout .bar:after {
        content: '';
        height: 2px;
        width: 0;
        bottom: 1px;
        position: absolute;
        background: #FFD700;
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
    }

    #checkout .bar:before {
        left: 50%;
    }

    #checkout .bar:after {
        right: 50%;
    }

    #checkout .input:focus ~ .bar:before,
    #checkout .input:focus ~ .bar:after {
        width: 50%;
    }

    #checkout .highlight {
        position: absolute;
        height: 60%;
        width: 100px;
        top: 25%;
        left: 0;
        pointer-events: none;
        opacity: 0.5;
    }

    #checkout .input:focus ~ .highlight {
        animation: inputHighlighter 0.3s ease;
    }

    @keyframes inputHighlighter {
        from {
            background: #FFD700;
        }

        to {
            width: 0;
            background: transparent;
        }
    }

    #checkout textarea.input {
        min-height: 80px;
        resize: vertical;
    }

    #checkout button {
        width: 100%;
        margin-top: 1rem;
        background-color: #FFD700;
        color: #111;
        border: none;
        border-radius: 5px;
        padding: 0.5rem;
        cursor: pointer;
        font-size: 1em;
    }

        #checkout button:hover {
            background-color: #daa520;
        }

    #payment a {
        color: #FFD700;
    }

#payment-confirmation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    color: #FFD700;
    z-index: 1001;
    padding: 4rem 1rem 1rem 1rem;
    box-sizing: border-box;
}

#payment-confirmation .cart-container {
    margin: 0 auto;
    max-width: 360px;
    text-align: center;
}

#order-summary-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1002;
}

#order-summary-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.order-summary-card {
    background: linear-gradient(145deg, #0f0f0f, #1c1c1c);
    color: #fff;
    border-radius: 18px;
    padding: 24px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(218, 165, 32, 0.5);
    text-align: left;
    animation: slideUp 0.4s ease;
}

.order-summary-card h2 {
    margin-top: 0;
    color: #FFD700;
}

.order-summary-intro {
    margin-bottom: 16px;
    color: #f1f1f1;
}

.order-summary-content {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 18px;
    max-height: 260px;
    overflow-y: auto;
}

.order-summary-content strong {
    color: #FFD700;
}

.order-summary-button {
    width: 100%;
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    background: #FFD700;
    color: #111;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-summary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
}

.purchase-animated {
    --width: 170px;
    --height: 45px;
    --tooltip-height: 35px;
    --tooltip-width: 130px;
    --gap-between-tooltip-to-button: 18px;
    --button-color: #222;
    --tooltip-color: #fff;
    width: var(--width);
    height: var(--height);
    background: var(--button-color);
    position: relative;
    text-align: center;
    border-radius: 0.45em;
    font-family: "Arial", sans-serif;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.purchase-animated::before {
    position: absolute;
    content: attr(data-tooltip);
    width: var(--tooltip-width);
    height: var(--tooltip-height);
    background-color: #555;
    font-size: 0.9rem;
    color: #fff;
    border-radius: 0.25em;
    line-height: var(--tooltip-height);
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) + 10px);
    left: calc(50% - var(--tooltip-width) / 2);
}

.purchase-animated::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #555;
    left: calc(50% - 10px);
    bottom: calc(100% + var(--gap-between-tooltip-to-button) - 10px);
}

.purchase-animated::after,
.purchase-animated::before {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.purchase-wrapper,
.purchase-text,
.purchase-icon {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    color: #fff;
}

.purchase-wrapper {
    top: 0;
}

.purchase-text {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    transition: top 0.5s;
}

.purchase-icon {
    top: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.5s;
}

.purchase-icon svg {
    width: 24px;
    height: 24px;
}

.purchase-animated:hover {
    background: #111;
}

.purchase-animated:hover .purchase-text {
    top: -100%;
}

.purchase-animated:hover .purchase-icon {
    top: 0;
}

.purchase-animated:hover::before,
.purchase-animated:hover::after {
    opacity: 1;
    visibility: visible;
}

.purchase-animated:hover::after {
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) - 20px);
}

.purchase-animated:hover::before {
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button));
}

.payment-modal {
    width: fit-content;
    height: fit-content;
    background: #ffffff;
    color: #111;
    box-shadow: 0px 187px 75px rgba(0, 0, 0, 0.01), 0px 105px 63px rgba(0, 0, 0, 0.05), 0px 47px 47px rgba(0, 0, 0, 0.09), 0px 12px 26px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
    border-radius: 26px;
    max-width: 450px;
    margin: 0 auto;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.payment-options {
    width: calc(100% - 40px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 10px;
}

.payment-option {
    height: 55px;
    background: #f2f2f2;
    border-radius: 11px;
    padding: 0;
    border: 0;
    outline: none;
    font-weight: 600;
    cursor: pointer;
}

.payment-option.is-active {
    background: #111;
    color: #fff;
}

.payment-separator {
    width: calc(100% - 20px);
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 10px;
    color: #8b8e98;
    margin: 0 10px;
    align-items: center;
}

.payment-separator p {
    word-break: keep-all;
    text-align: center;
    font-weight: 600;
    font-size: 11px;
    margin: auto;
}

.payment-separator .line {
    display: inline-block;
    width: 100%;
    height: 1px;
    border: 0;
    background-color: #e8e8e8;
    margin: auto;
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.input-label {
    font-size: 10px;
    color: #8b8e98;
    font-weight: 600;
}

.input-field {
    width: auto;
    height: 40px;
    padding: 0 0 0 16px;
    border-radius: 9px;
    outline: none;
    background-color: #f2f2f2;
    border: 1px solid #e5e5e500;
    transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.input-field:focus {
    border: 1px solid transparent;
    box-shadow: 0px 0px 0px 2px #242424;
    background-color: transparent;
}

.purchase-btn {
    height: 55px;
    background: #f2f2f2;
    border-radius: 11px;
    border: 0;
    outline: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(180deg, #363636 0%, #1B1B1B 50%, #000000 100%);
    box-shadow: 0px 0px 0px 0px #FFFFFF, 0px 0px 0px 0px #000000;
    transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
    cursor: pointer;
}

.purchase-btn:hover {
    box-shadow: 0px 0px 0px 2px #FFFFFF, 0px 0px 0px 4px #0000003a;
}
