/* Estilos Gerais */
:root {
    --primary-color: #ff6b00;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --text-color: #333;
    --light-text: #fff;
    --bg-color: #f9f9f9;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}

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

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

section {
    padding: 80px 0;
}

.btn-destaque {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-destaque:hover {
    background-color: #e05a00;
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Header */
header {
    background-color: var(--secondary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    color: var(--light-text);
    font-size: 24px;
    margin-bottom: 0;
}

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

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

nav ul li a {
    color: var(--light-text);
    font-weight: 500;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a252f 100%);
    color: var(--light-text);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/basketball-court.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Basketball Animation */
.basketball-animation {
    position: relative;
    width: 200px;
    height: 200px;
}

.ball {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    background-image: linear-gradient(to bottom, var(--primary-color), #e05a00);
    box-shadow: inset 0 -3px 10px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: bounce 2s infinite;
    z-index: 2;
}

.ball::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: 
        linear-gradient(to right, transparent 45%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.2) 55%, transparent 55%),
        linear-gradient(to bottom, transparent 45%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.2) 55%, transparent 55%);
}

.shadow {
    position: absolute;
    bottom: 0;
    left: 25px;
    width: 50px;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    animation: shadow 2s infinite;
    z-index: 1;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(80px);
    }
}

@keyframes shadow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
}

/* Sobre Section */
.sobre {
    background-color: #fff;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
    text-align: center;
}

.image-content img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Como Funciona Section */
.como-funciona {
    background-color: var(--bg-color);
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.step {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 36px;
}

.step h3 {
    margin-bottom: 15px;
}

/* Regras Section */
.regras {
    background-color: #fff;
}

.rules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.rule {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.rule-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.rule-icon i {
    font-size: 24px;
}

.rule-content h3 {
    margin-bottom: 10px;
}

/* Preços Section */
.precos {
    background-color: var(--bg-color);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    flex: 1;
    max-width: 350px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 5px 30px;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-header {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.currency {
    font-size: 20px;
    margin-right: 2px;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.cents {
    font-size: 20px;
}

.period {
    font-size: 16px;
    opacity: 0.8;
    margin-left: 5px;
}

.savings {
    margin-top: 10px;
    font-size: 14px;
    color: #2ecc71;
    font-weight: 600;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features ul li i {
    color: #2ecc71;
    margin-right: 10px;
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.btn-pricing {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

.btn-pricing:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.pricing-card.featured .btn-pricing {
    background-color: var(--primary-color);
}

/* Assinar Section */
.assinar {
    background-color: #fff;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
}

.radio-option input[type="radio"] {
    margin-right: 10px;
}

.destaque {
    color: #2ecc71;
    font-weight: 600;
    margin-left: 5px;
}

.form-footer {
    margin-top: 30px;
    text-align: center;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    max-width: 400px;
}

.btn-submit:hover {
    background-color: #e05a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.secure-payment {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.secure-payment i {
    margin-right: 5px;
    color: #2ecc71;
}

/* FAQ Section */
.faq {
    background-color: var(--bg-color);
}

.accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.accordion-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: #f5f5f5;
}

.accordion-header h3 {
    margin: 0;
    font-size: 18px;
}

.accordion-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.accordion-icon::before {
    width: 20px;
    height: 2px;
    top: 9px;
}

.accordion-icon::after {
    width: 2px;
    height: 20px;
    left: 9px;
    top: 0;
}

.accordion-item.active .accordion-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    margin-bottom: 10px;
}

.footer-links,
.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-contact ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 10px;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 30px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .rules-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

/* Estilos adicionais para a seção de pagamento com Mercado Pago */
.payment-options {
    padding: 30px;
}

.payment-header {
    text-align: center;
    margin-bottom: 30px;
}

.payment-header h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.payment-header p {
    max-width: 700px;
    margin: 0 auto;
}

.payment-plans {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.payment-plan {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    text-align: center;
}

.payment-plan h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.payment-price {
    margin: 20px 0;
    font-size: 18px;
}

.price-highlight {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 22px;
}

.payment-button {
    margin: 25px 0;
    display: flex;
    justify-content: center;
}

.payment-info {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.payment-info p {
    margin-bottom: 10px;
}

/* Manter os estilos existentes */
/* Estilos Gerais */
:root {
    --primary-color: #ff6b00;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --text-color: #333;
    --light-text: #fff;
    --bg-color: #f9f9f9;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}

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

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

section {
    padding: 80px 0;
}

.btn-destaque {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-destaque:hover {
    background-color: #e05a00;
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Header */
header {
    background-color: var(--secondary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    color: var(--light-text);
    font-size: 24px;
    margin-bottom: 0;
}

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

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

nav ul li a {
    color: var(--light-text);
    font-weight: 500;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a252f 100%);
    color: var(--light-text);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/basketball-court.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Basketball Animation */
.basketball-animation {
    position: relative;
    width: 200px;
    height: 200px;
}

.ball {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    background-image: linear-gradient(to bottom, var(--primary-color), #e05a00);
    box-shadow: inset 0 -3px 10px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: bounce 2s infinite;
    z-index: 2;
}

.ball::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: 
        linear-gradient(to right, transparent 45%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.2) 55%, transparent 55%),
        linear-gradient(to bottom, transparent 45%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.2) 55%, transparent 55%);
}

.shadow {
    position: absolute;
    bottom: 0;
    left: 25px;
    width: 50px;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    animation: shadow 2s infinite;
    z-index: 1;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(80px);
    }
}

@keyframes shadow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
}

/* Sobre Section */
.sobre {
    background-color: #fff;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
    text-align: center;
}

.image-content img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Como Funciona Section */
.como-funciona {
    background-color: var(--bg-color);
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.step {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 36px;
}

.step h3 {
    margin-bottom: 15px;
}

/* Regras Section */
.regras {
    background-color: #fff;
}

.rules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.rule {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.rule-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.rule-icon i {
    font-size: 24px;
}

.rule-content h3 {
    margin-bottom: 10px;
}

/* Preços Section */
.precos {
    background-color: var(--bg-color);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    flex: 1;
    max-width: 350px;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 5px 30px;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-header {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.currency {
    font-size: 20px;
    margin-right: 2px;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.cents {
    font-size: 20px;
}

.period {
    font-size: 16px;
    opacity: 0.8;
    margin-left: 5px;
}

.savings {
    margin-top: 10px;
    font-size: 14px;
    color: #2ecc71;
    font-weight: 600;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features ul li i {
    color: #2ecc71;
    margin-right: 10px;
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.btn-pricing {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

.btn-pricing:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.pricing-card.featured .btn-pricing {
    background-color: var(--primary-color);
}

/* Assinar Section */
.assinar {
    background-color: #fff;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
}

.radio-option input[type="radio"] {
    margin-right: 10px;
}

.destaque {
    color: #2ecc71;
    font-weight: 600;
    margin-left: 5px;
}

.form-footer {
    margin-top: 30px;
    text-align: center;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    max-width: 400px;
}

.btn-submit:hover {
    background-color: #e05a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.secure-payment {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.secure-payment i {
    margin-right: 5px;
    color: #2ecc71;
}

/* FAQ Section */
.faq {
    background-color: var(--bg-color);
}

.accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.accordion-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: #f5f5f5;
}

.accordion-header h3 {
    margin: 0;
    font-size: 18px;
}

.accordion-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.accordion-icon::before {
    width: 20px;
    height: 2px;
    top: 9px;
}

.accordion-icon::after {
    width: 2px;
    height: 20px;
    left: 9px;
    top: 0;
}

.accordion-item.active .accordion-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    margin-bottom: 10px;
}

.footer-links,
.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-contact ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 10px;
}

/* Responsividade Melhorada */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 30px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    /* Header e Navegação */
    header {
        padding: 15px 0;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    nav ul li {
        margin: 5px;
    }
    
    nav ul li a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .btn-destaque {
        padding: 10px 15px !important;
        font-size: 0.9rem !important;
    }
    
    /* Hero Section */
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-animation {
        width: 200px;
        height: 200px;
    }
    
    /* Seções Gerais */
    section {
        padding: 50px 0;
    }
    
    h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 30px;
    }
    
    /* Sobre Section */
    .content-wrapper {
        gap: 30px;
    }
    
    .text-content,
    .image-content {
        flex: 1;
    }
    
    .image-content img {
        max-width: 100%;
        height: auto;
    }
    
    /* Como Funciona */
    .steps {
        gap: 30px;
    }
    
    .step {
        text-align: center;
        padding: 25px 15px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
    }
    
    .step h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    /* Regras */
    .rules-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rule-item {
        padding: 25px 20px;
    }
    
    /* Formulário */
    .form-container {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
    }
    
    /* FAQ */
    .accordion-item {
        margin-bottom: 15px;
    }
    
    .accordion-header {
        padding: 20px 15px;
    }
    
    .accordion-header h3 {
        font-size: 1.1rem;
    }
    
    .accordion-content {
        padding: 20px 15px;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo,
    .footer-links,
    .footer-contact {
        min-width: auto;
    }
}

@media (max-width: 576px) {
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    header {
        padding: 10px 0;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    nav ul li a {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    /* Hero */
    .hero {
        padding: 50px 0;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-animation {
        width: 150px;
        height: 150px;
    }
    
    /* Seções */
    section {
        padding: 40px 0;
    }
    
    h2 {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    /* Botões */
    .cta-button,
    .submit-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    /* Steps */
    .step {
        padding: 20px 10px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step h3 {
        font-size: 1.1rem;
    }
    
    /* Formulário */
    .form-container {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    /* Pricing */
    .pricing-card {
        margin: 0 10px 20px;
        padding: 25px 20px;
    }
    
    .price {
        font-size: 2rem;
    }
    
    /* FAQ */
    .accordion-header {
        padding: 15px 12px;
    }
    
    .accordion-header h3 {
        font-size: 1rem;
    }
    
    .accordion-content {
        padding: 15px 12px;
    }
    
    /* Footer */
    .footer-bottom {
        padding: 15px 0;
    }
    
    .disclaimer {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    /* Extra small devices */
    .container {
        padding: 0 10px;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .form-container {
        padding: 15px 10px;
        margin: 0;
    }
    
    .pricing-card {
        margin: 0 5px 15px;
        padding: 20px 15px;
    }
    
    nav ul {
        gap: 5px;
    }
    
    nav ul li a {
        padding: 5px 8px;
        font-size: 0.8rem;
    }
}

/* Melhorias específicas para touch devices */
@media (hover: none) and (pointer: coarse) {
    .accordion-header {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    }
    
    .submit-btn,
    .cta-button,
    .btn-destaque {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    /* Aumentar área de toque para links pequenos */
    nav ul li a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.single-plan {
    max-width: 500px !important;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .single-plan {
        max-width: 100% !important;
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .single-plan {
        margin: 0 5px;
    }
}
