/* Estilos Gerais */
:root {
    --color-gold: #DAA520;
    --color-orange: #FF8C00;
    --color-dark-red: #8B0000;
    --color-white: #FFFFFF;
    --color-green: #1E9E6B;
    --color-dark: #0A0A14;
    --color-gray-light: #E0E0E0;
    --color-gray-dark: #666666;
    --color-yellow-light: #FFC107;
    
    --font-title: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-highlight: 'Roboto Condensed', sans-serif;
    
    --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 6px 12px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    color: var(--color-orange);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-gold);
}

/* Header com Contador */
.header-countdown {
    background-color: var(--color-gold);
    color: var(--color-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

#countdown {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 2px;
}

.offer-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.timer-icon {
    width: 24px;
    height: 24px;
}

/* Seção Hero */
.hero-section {
    background: linear-gradient(rgba(10, 10, 20, 0.8), rgba(10, 10, 20, 0.9)), url('background.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding: 4rem 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.event-logo {
    margin-bottom: 0rem;
}

.logo {
    max-width: 200px;
    height: auto;
}

.event-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0rem;
}

.highlight {
    color: var(--color-orange);
}

.event-date {
    margin-bottom: 2rem;
}

.event-date h2 {
    font-family: var(--font-highlight);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.event-date h3 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
}

.divider {
    width: 80%;
    max-width: 800px;
    height: 2px;
    background-color: var(--color-orange);
    margin: 1rem 0;
    opacity: 0.5;
}

.event-cta {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.arrow-down {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Seção de Formulário */
.form-section {
    background-color: var(--color-white);
    padding: 3rem 0;
}

.form-container {
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    padding: 2rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.event-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-small {
    width: 60px;
    height: auto;
}

.event-details h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: #000;
}

.event-details p {
    color: var(--color-gray-dark);
    font-size: 0.9rem;
    color: #000;
    text-align: left;
}

.price-info {
    text-align: right;
}

.price {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--color-dark);
    font-weight: 700;
}

.price-details {
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    color: #000;
}

.payment-info {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #000;
}

/* Espaço para o formulário RD Station */
.rd-form-container {
    min-height: 300px;
    border: 2px dashed var(--color-gray-light);
    border-radius: 8px;
    padding: 1.5rem;
}

.rd-form-placeholder {
    text-align: center;
    color: var(--color-gray-dark);
    padding: 2rem;
}

.rd-form-placeholder h3 {
    margin-bottom: 1rem;
    font-family: var(--font-title);
}

/* Botão de Compra */
.buy-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--color-green);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 2rem;
    text-transform: uppercase;
}

.buy-button:hover {
    background-color: #167d54;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.buy-button:active {
    transform: translateY(0);
}

/* Produtos Adicionais */
.additional-products {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.additional-products h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.product-card {
    display: flex;
    gap: 1.5rem;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.product-image {
    flex: 0 0 100px;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.product-info {
    flex: 1;
}

.product-info h4 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    margin-bottom: 1rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.discount {
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price {
    font-family: var(--font-title);
    font-weight: 600;
}

/* Rodapé */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 2rem 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-link {
    color: var(--color-white);
    opacity: 0.8;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-link:hover {
    opacity: 1;
    color: var(--color-orange);
}

/* Responsividade */
@media (max-width: 768px) {
    .event-title {
        font-size: 2rem;
    }
    
    .event-date h2 {
        font-size: 1.5rem;
    }
    
    .event-date h3 {
        font-size: 1.2rem;
    }
    
    .form-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .price-info {
        text-align: center;
        margin-top: 1rem;
    }
    
    .product-card {
        flex-direction: column;
    }
    
    .product-image {
        flex: 0 0 auto;
        margin-bottom: 1rem;
    }
    
    .countdown-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .event-title {
        font-size: 1.5rem;
    }
    
    .event-date h2 {
        font-size: 1.2rem;
    }
    
    .event-date h3 {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 1rem;
    }
}


.back-home {
    color: #fff;
    font-size: 1rem;
}

.back-home:hover {
    text-decoration: underline;
}



.benefits-container {
  display: flex;
  flex-wrap: wrap;
  margin: 16px 0;
  
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
  padding: 10px 20px;
}

/* Remove gap no mobile */
.benefits-column {
  flex: 1 1 100%;
  padding: 0px;
  text-align: left;
}

.benefits-column p {
  margin: 8px 0;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
}

/* Tablet pra cima */
@media (min-width: 768px) {
  .benefits-container {
    gap: 10px;
  }

  .benefits-column {
    flex: 1 1 calc(50% - 10px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
  }
}

