/* ============================================
   RESET E ESTILOS GLOBAIS - CLUB X
   ============================================ */
:root {
  --g: red;
  --gs: #553904;
  --gp: #613f05;
  --dark: #2e1500;
  --bg: #f5ede0;
  --card: #fff8f2;
  --btn-g: #c9a55c;
  --btn-gh: #d4b87a;
  --text-title: #D4B87A;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    width: 100%;
}

.site-header{background:transparent;}
.menu-icon {color:#fff;}



.cards{
  background: linear-gradient(135deg, #1a0033 0%, #000 100%);

}

.clubx-body * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.clubx-body {
    background:#10141D;
    color: #fff;
    overflow-x: hidden;
    width: 100%;
}


  

/* ============================================
   SEÇÃO HERO - CLUB X
   ============================================ */

.clubx-hero {
 
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background:#10141D;
    width: 100%;
    margin-top:20px;
}

.clubx-hero-left {
    padding: 0 3.75rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clubx-hero-tag {
    font-size: 0.75rem;
    letter-spacing: 0.1875rem;
    color: #e4e4e4;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.clubx-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.875rem;
    text-transform: uppercase;
    color: #e4e4e4;
    position: relative;
    display: inline-block;
    padding-right: 3.75rem;
}

.clubx-hero-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #e4e4e4;
    margin-bottom: 2.5rem;
    max-width: 28.125rem;
}

/* VIOLÃO À DIREITA DO CONTAINER COM MARGEM NEGATIVA */
.clubx-disco-ball {
    display: inline-block;
    font-size: 4.375rem;
    position: absolute;
    margin-left: 1.875rem;
    animation: guitar-spin 5s linear infinite;
    text-shadow: 0 0 0.625rem gold,
                 0 0 1.25rem orange,
                 0 0 1.875rem red;
    z-index: 10;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

@keyframes guitar-spin {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

@-webkit-keyframes guitar-spin {
    0% {
        -webkit-transform: rotateY(0deg);
    }
    100% {
        -webkit-transform: rotateY(360deg);
    }
}

/* Para garantir que a animação seja contínua sem "pulos" */
.clubx-disco-ball {
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.clubx-hero-right {
    position: relative;
    overflow: hidden;
    perspective: 1000px; /* Adiciona perspectiva para um efeito 3D melhor */
    -webkit-perspective: 1000px;
    height: 730px; /* Ou qualquer altura que desejar */
}

.clubx-hero-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    padding-right: 20px;
}

/* ============================================
   BOTÕES - CLUB X
   ============================================ */

.clubx-btn {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    border: none;
    cursor: pointer;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

.clubx-btn-primary {
    background: linear-gradient(135deg, #c026d3, #7c3aed);
    color: #fff;
}

.clubx-btn-primary:hover {
    transform: translateY(-0.1875rem);
    -webkit-transform: translateY(-0.1875rem);
    box-shadow: 0 0.625rem 1.875rem rgba(192, 38, 211, 0.4);
}

.clubx-btn-secondary {
    border: 0.125rem solid #c026d3;
    background: transparent;
    color: #c026d3;
}

.clubx-btn-secondary:hover {
    background: rgba(192, 38, 211, 0.1);
}

.clubx-btn i {
    margin-right: 0.5rem;
    font-size: 1rem;
    vertical-align: middle;
}

/* ============================================
   LINKS SOCIAIS - CLUB X
   ============================================ */

.clubx-hero-social {
    margin-top: 2.5rem;
    display: flex;
    gap: 0.9375rem;
    flex-wrap: wrap;
}

.clubx-social-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #c026d3, #7c3aed);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    border: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.clubx-social-link:hover {
    transform: translateY(-0.1875rem);
    -webkit-transform: translateY(-0.1875rem);
    box-shadow: 0 0.625rem 1.25rem rgba(192, 38, 211, 0.4);
    background: linear-gradient(135deg, #7c3aed, #c026d3);
}

/* ============================================
   SEÇÃO ABOUT - CLUB X
   ============================================ */

.clubx-about {
    padding: 40px 70px;
    background: #0a0a0a;
    color: #fff;
    width: 100%;
   
}
.clubx-about-grid {
    max-width: 100%;
    margin: 0 auto;
    display: grid;

    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.clubx-about-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #e4e4e4;
}

.clubx-about-text {
    font-size: 16px;
    line-height: 1.6;
    color: #e8e8e8;
    margin-bottom: 30px;
    padding-right: 200px;
}

.clubx-about-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.clubx-stat {
    background: #111;
    padding: 15px 20px;
    border: 1px solid #222;
    border-radius: 10px;
    min-width: 120px;
    text-align: center;
}

.clubx-stat-number {
    font-size: 22px;
    font-weight: bold;
    color: #B529D7;
    margin-bottom: 5px;
}

.clubx-stat-label {
    font-size: 12px;
    opacity: 0.7;    
}

.clubx-about-video {
    width: 100%;
    overflow: hidden;
    align-self: center;
    border-radius: 12px;
    border: 1px solid #222;
    
    
   
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.15);
}

.clubx-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
}

.clubx-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.clubx-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #c026d3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(192, 38, 211, 0.5);
}

.clubx-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #7c3aed;
}

.clubx-play-button i {
    color: white;
    font-size: 30px;
    margin-left: 5px;
}

.clubx-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.clubx-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 0.5rem;
    overflow: hidden;
}

.clubx-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.clubx-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.clubx-close:hover {
    color: #c026d3;
}

@media (max-width: 900px) {
    .clubx-about {
        padding: 60px 20px;
    }

    .clubx-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .clubx-about-text {
    padding:0;
}
}






            
















/* ============================================
   SEÇÃO HOSTS - CLUB X
   ============================================ */

.clubx-hosts {
    padding: 6.25rem 3.75rem;
    background: #10141D;
    width: 100%;
}

.clubx-hosts-title {
    font-size: 2.625rem;
    font-weight: 700;
    margin-bottom: 3.75rem;
    color: #ffffff;
}

.clubx-hosts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.875rem;
}

.clubx-host-card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.clubx-host-card:hover {
    transform: translateY(-0.625rem);
    -webkit-transform: translateY(-0.625rem);
}

.clubx-host-image {
    width: 100%;
    height: 21.875rem;
    object-fit: cover;
}

.clubx-host-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5625rem;
    color: #e4e4e4;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
}

.clubx-host-name {
    font-size: 1.25rem;
    font-weight: 700;
    -webkit-background-clip: text;
    color: #ffffff;
    text-shadow:
        0 0 0.375rem rgba(0, 0, 0, 0.8),
        0 0 0.75rem rgba(0, 0, 0, 0.6);
}

.clubx-host-role {
    font-size: 1rem;
    color: #e4e4e4;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    text-shadow:
        0 0 0.3125rem rgba(0, 0, 0, 0.7),
        0 0 0.625rem rgba(0, 0, 0, 0.5);
}

/* ============================================
   SEÇÃO EVENTS - CLUB X
   ============================================ */

.clubx-events {
    padding: 6.25rem 3.75rem;
    background: linear-gradient(135deg, #1a0033 0%, #000 100%);
    width: 100%;
}

.clubx-events-header {
    text-align: center;
    margin-bottom: 3.75rem;
}

.clubx-events-tag {
    font-size: 0.75rem;
    letter-spacing: 0.1875rem;
    color: #999;
    margin-bottom: 0.9375rem;
    text-transform: uppercase;
}

.clubx-events-title {
    font-size: 2.625rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #e4e4e4;
}

.clubx-events-subtitle {
    font-size: 1.1rem;
    color: #e8e8e8;
    max-width: 37.5rem;
    margin: 0 auto;
}

/* Esconder os inputs de radio */
.clubx-tab-input {
    display: none;
}

.clubx-events-tabs {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 3.125rem;
    flex-wrap: wrap;
}

.clubx-tab {
    padding: 0.75rem 2.1875rem;
    background: transparent;
    border: 0.0625rem solid #333;
    color: #999;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    cursor: pointer;
    transition: all 0.3s;
}

.clubx-tab:hover {
    background: linear-gradient(135deg, #c026d3, #7c3aed);
    border-color: transparent;
    color: #fff;
}

/* Estilo da tab ativa */
#tab-sexta:checked ~ .clubx-events-tabs label[for="tab-sexta"],
#tab-sabado:checked ~ .clubx-events-tabs label[for="tab-sabado"],
#tab-domingo:checked ~ .clubx-events-tabs label[for="tab-domingo"] {
    background: linear-gradient(135deg, #c026d3, #7c3aed);
    border-color: transparent;
    color: #fff;
}

.clubx-events-list {
    max-width: 56.25rem;
    margin: 0 auto;
    position: relative;
}

/* Esconder todos os conteúdos por padrão */
.clubx-event-content {
    display: none;
}

/* Mostrar o conteúdo baseado na tab selecionada */
#tab-sexta:checked ~ .clubx-events-list .clubx-event-content[data-day="sexta"],
#tab-sabado:checked ~ .clubx-events-list .clubx-event-content[data-day="sabado"],
#tab-domingo:checked ~ .clubx-events-list .clubx-event-content[data-day="domingo"] {
    display: block;
    animation: fadeIn 0.4s ease-in;
}

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

.clubx-event-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    padding: 2.5rem;
    margin-bottom: 1.875rem;
    transition: all 0.3s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.clubx-event-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(0.625rem);
    -webkit-transform: translateX(0.625rem);
}

.clubx-event-title {
    font-size: 1.75rem;
    margin-bottom: 0.9375rem;
    background: linear-gradient(135deg, #c026d3, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.clubx-event-meta {
    font-size: 1rem;
    color: #999;
    margin-bottom: 1.25rem;
}

.clubx-event-desc {
    font-size: 1rem;
    color: #e8e8e8;
    line-height: 1.8;
}
/* ============================================
   SEÇÃO GALLERY - CLUB X
   ============================================ */

.clubx-gallery {
    padding: 6.25rem 3.75rem;
  background: linear-gradient(135deg, #1a0033 0%, #000 100%);
    width: 100%;
}

.clubx-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5625rem;
}

.clubx-gallery-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.clubx-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    -webkit-transition: -webkit-transform 0.5s;
}

.clubx-gallery-item:hover .clubx-gallery-image {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.clubx-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(192, 38, 211, 0.7), rgba(124, 58, 237, 0.7));
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clubx-gallery-item:hover .clubx-gallery-overlay {
    opacity: 1;
}

.clubx-gallery-title {
    font-size: 1.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #e4e4e4;
}

/* ============================================
   SEÇÃO CONTACT - CLUB X
   ============================================ */

/* ============================================
   SEÇÃO CONTACT - CLUB X
   ============================================ */

.clubx-contact {
    padding: 6.25rem 3.75rem;
    background: linear-gradient(135deg, #1a0033 0%, #000 100%);
    width: 100%;
}

/* DIV PAI que mantém as duas DIVs lado a lado */
.clubx-contact > div[style*="display: flex"] {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    align-items: flex-start;
}

/* DIV do FORMULÁRIO (ESQUERDA) */
.clubx-contact-form {
    flex: 1;
    min-width: 300px;
}

/* DIV de INFORMAÇÕES (DIREITA) */
.clubx-contact-info {
    flex: 1;
    min-width: 300px;
}

/* Resto do CSS que você já tinha... */
.clubx-contact-title {
    font-size: 2.625rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #e4e4e4;
}

.clubx-form-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.clubx-form-link:hover {
    transform: translateY(-0.3125rem);
}

.clubx-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.clubx-form-group {
    margin-bottom: 1.25rem;
}

.clubx-form-input,
.clubx-form-textarea {
    width: 100%;
    padding: 0.9375rem 0;
    background: transparent;
    border: none;
    border-bottom: 0.0625rem solid #333;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    pointer-events: none;
}

.clubx-form-input::placeholder,
.clubx-form-textarea::placeholder {
    color: #666;
}

.clubx-form-textarea {
    resize: none;
    height: 7.5rem;
}

.clubx-submit-btn {
    padding: 1.125rem 3.125rem;
    background: transparent;
    border: 0.125rem solid #c026d3;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: none;
}

.clubx-contact-subtitle {
    font-size: 1rem;
    letter-spacing: 0.125rem;
    color: #999;
    margin-bottom: 0.9375rem;
    text-transform: uppercase;
}

.clubx-contact-text {
    font-size: 1rem;
    color: #e8e8e8;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.clubx-contact-details {
    margin-bottom: 2.5rem;
}

.clubx-contact-item {
    margin-bottom: 1.25rem;
}

.clubx-contact-link {
    color: #c026d3;
    text-decoration: none;
    font-size: 1rem;
}

.clubx-contact-link:hover {
    text-decoration: underline;
}
/* ============================================
   SEÇÃO TESTIMONIALS - CLUB X
   ============================================ */

.clubx-testimonials {
    padding: 6.25rem 3.75rem;
    background: #000;
    text-align: center;
    width: 100%;
}

.clubx-testimonials-tag {
    font-size: 0.75rem;
    letter-spacing: 0.1875rem;
    color: #cbcbcb;
    margin-bottom: 0.9375rem;
    text-transform: uppercase;
}

.clubx-testimonials-title {
    font-size: 2.625rem;
    font-weight: 700;
    margin-bottom: 3.75rem;
    color: #e4e4e4;
}

.clubx-testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #a4a3a3;
    max-width: 56.25rem;
    margin: 0 auto 3.75rem;
    font-style: italic;
}

.clubx-testimonial-authors {
    display: flex;
    justify-content: center;
    gap: 1.875rem;
    flex-wrap: wrap;
}

.clubx-author {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    padding: 0.9375rem 1.875rem;
    border: 0.0625rem solid #333;
    border-radius: 3.125rem;
    transition: all 0.3s;
    cursor: pointer;
}

.clubx-author:hover {
    border-color: #c026d3;
    background: rgba(192, 38, 211, 0.1);
}

.clubx-author-image {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    object-fit: cover;
}

.clubx-author-info {
    text-align: left;
    color: #e4e4e4;
}

.clubx-author-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.1875rem;
    color: #e4e4e4;
}

.clubx-author-role {
    font-size: 1rem;
    color: #999;
}

/* ============================================
   SEÇÃO BLOG - CLUB X
   ============================================ */

.clubx-blog {
    padding: 6.25rem 3.75rem;
    background: linear-gradient(135deg, #1a0033 0%, #000 100%);
    width: 100%;
}

.clubx-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.75rem;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.clubx-blog-tag {
    font-size: 0.75rem;
    letter-spacing: 0.1875rem;
    color: #999;
    margin-bottom: 0.625rem;
    text-transform: uppercase;
}

.clubx-blog-title {
    font-size: 2.625rem;
    font-weight: 700;
    color: #e4e4e4;
}

.clubx-blog-link {
    color: #c026d3;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
}

.clubx-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.clubx-blog-card {
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.clubx-blog-card:hover {
    transform: translateY(-0.625rem);
    -webkit-transform: translateY(-0.625rem);
}

.clubx-blog-image {
    width: 100%;
    height: 18.75rem;
    overflow: hidden;
}

.clubx-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    -webkit-transition: -webkit-transform 0.5s;
}

.clubx-blog-card:hover .clubx-blog-img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.clubx-blog-content {
    padding: 1.875rem 0;
}

.clubx-blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.9375rem;
    color: #e8e8e8;
}

.clubx-blog-card-text {
    font-size: 1.1rem;
     color: #e8e8e8;
    line-height: 1.8;
}

/* ============================================
   SEÇÃO TICKETS - CLUB X
   ============================================ */

.clubx-tickets {
    padding: 6.25rem 3.75rem;
    background: #000;
    width: 100%;
}

.clubx-tickets-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    color: #fff; /* ← ADICIONE ISSO - o título estava invisível */
}

.clubx-ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16.25rem, 1fr));
    gap: 1.875rem;
    max-width: 75rem;
    margin: 0 auto;
}

.clubx-ticket-card {
    background: #1a1a1a; /* ← MUDE para uma cor que contraste */
    padding: 2.5rem 1.875rem;
    text-align: center;
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.clubx-ticket-card:hover {
    transform: translateY(-0.625rem);
}

.clubx-ticket-featured {
    border: 0.125rem solid #c026d3;
    box-shadow: 0 0 1.5625rem rgba(192, 38, 211, 0.6);
    transform: scale(1.05);
}

.clubx-ticket-featured:hover {
    transform: scale(1.05) translateY(-0.625rem);
}

.clubx-ticket-type {
    font-size: 1.75rem;
    margin-bottom: 1.5625rem;
    color: #fff; /* ← MUDE para branco simples */
    font-weight: bold;
}

.clubx-ticket-features {
    list-style: none;
    margin: 1.875rem 0;
    text-align: left;
    padding-left: 1.25rem;
}

.clubx-ticket-features li {
    margin: 0.75rem 0;
    padding-left: 0.625rem;
    position: relative;
    font-size: 1rem;
    color: #ccc; /* ← ADICIONE para visibilidade */
}

.clubx-ticket-features li:before {
    content: "✓";
    color: #c026d3;
    position: absolute;
    left: -0.9375rem;
}

.clubx-ticket-price {
    display: block;
    font-size: 2.25rem;
    font-weight: 900;
    margin: 1.5625rem 0;
    color: #c026d3; /* ← MUDE para a cor roxa */
}

/* Botões - ADICIONE ESTA PARTE */
.clubx-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.clubx-btn-primary {
    background: linear-gradient(135deg, #c026d3, #7c3aed);
    color: #fff;
    border: none;
}

.clubx-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0.9375rem rgba(192, 38, 211, 0.5);
}

.clubx-btn-secondary {
    background: transparent;
    color: #c026d3;
    border: 0.125rem solid #c026d3;
}

.clubx-btn-secondary:hover {
    background: #c026d3;
    color: #fff;
}

.footer, .footer-col, .footer-copy {
    background-color: #000;
}





/* ============================================
   RESPONSIVIDADE - CLUB X
   ============================================ */

/* ============================================
   RESPONSIVIDADE CORRIGIDA - CLUB X
   ============================================ */

@media (max-width: 1024px) {
    .clubx-hero {
        grid-template-columns: 1fr;
    }
    
    .clubx-hero-right {
        height: 60vh;
    }
    
    .clubx-about,
    .clubx-contact > div[style*="display: flex"] {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .clubx-hosts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clubx-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clubx-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .clubx-testimonial-authors {
        flex-direction: column;
        align-items: center;
    }
    
    .clubx-ticket-grid {
        grid-template-columns: 1fr;
        max-width: 31.25rem;
    }
    
    .clubx-ticket-featured {
        transform: scale(1);
    }
    
    .clubx-ticket-featured:hover {
        transform: translateY(-0.625rem);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .clubx-hero {
        display: flex;
        flex-direction: column;
    }
    
    .clubx-hero-left {
        order: 2;
        padding: 2rem 1.875rem 4rem;
    }
    
    .clubx-hero-right {
        order: 1;
        height: 50vh;
        min-height: 300px;
    }
    
    .clubx-hero-image {
        height: 100%;
        padding-right: 0;
    }
    
    .clubx-hero-title {
        font-size: 3rem;
        padding-right: 0;
    }
    
    .clubx-disco-ball {
        display: none;
    }
    
    .clubx-about,
    .clubx-hosts,
    .clubx-events,
    .clubx-gallery,
    .clubx-contact,
    .clubx-testimonials,
    .clubx-blog,
    .clubx-tickets{
        padding: 3.75rem 1.875rem;
    }
    
    .clubx-about-title,
    .clubx-hosts-title,
    .clubx-events-title,
    .clubx-contact-title,
    .clubx-testimonials-title,
    .clubx-blog-title {
        font-size: 2.25rem;
    }
    
    .clubx-tickets-title {
        font-size: 2.25rem;
    }
    
    .clubx-about-stats {
        flex-direction: column;
        gap: 1.875rem;
        align-items: center;
    }
    
    .clubx-events-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .clubx-form-row {
        grid-template-columns: 1fr;
    }
    
    .clubx-hosts-grid {
        grid-template-columns: 1fr;
    }
    
    .clubx-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .clubx-event-item {
        padding: 1.875rem;
    }
    
    .clubx-hero-social {
        flex-direction: column;
        align-items: stretch;
    }
    
    .clubx-social-link {
        text-align: center;
    }
    
    .clubx-contact > div[style*="display: flex"] {
        flex-direction: column;
        gap: 2rem;
    }
    
    
    
    .clubx-about-stats {
    flex-direction: row;
    gap: 10px;
}

.clubx-stat {
    padding: 10px 0;
    min-width: 0;
    flex: 1;
}


@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .clubx-hero-title {
        font-size: 2.5rem;
    }
    
    .clubx-about-title,
    .clubx-hosts-title,
    .clubx-events-title,
    .clubx-contact-title,
    .clubx-testimonials-title,
    .clubx-blog-title {
        font-size: 1.875rem;
    }
    
    .clubx-tickets-title {
        font-size: 2rem;
    }
    
    .clubx-hero-left,
    .clubx-about, 
    .clubx-hosts,
    .clubx-events,
    .clubx-gallery,
    .clubx-contact,
    .clubx-testimonials,
    .clubx-blog,
    .clubx-tickets {
        padding: 2.5rem 1.25rem;
    }
}
