/* Estilos para a página de vendas "A Chave da Internet" */

/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0e0429;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

section {
    padding: 80px 0;
    position: relative;
}

.highlight {
    color: #00ff8c;
    font-weight: 700;
}

.text-center {
    text-align: center;
}

/* Gradientes e cores */
.bg-gradient {
    background: linear-gradient(135deg, #1a0f3c 0%, #2e0b5c 100%);
}

.bg-dark {
    background-color: #0e0429;
}

.bg-darker {
    background-color: #080218;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary {
    background-color: #00ff8c;
    color: #0e0429;
    box-shadow: 0 4px 20px rgba(0, 255, 140, 0.4);
}

.btn-primary:hover {
    background-color: #00e67d;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 255, 140, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 15px rgba(0, 255, 140, 0.4);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.4rem;
}

.btn-animated {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(0, 255, 140, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(0, 255, 140, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(0, 255, 140, 0.4);
    }
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon i {
    margin-left: 10px;
}

.cta-container {
    text-align: center;
    margin: 40px 0;
}

/* Header / Hero Section */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #1a0f3c 0%, #2e0b5c 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3NjUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IHgxPSI3MS41OCUiIHkxPSI2OS4zOCUiIHgyPSI1MCUiIHkyPSIxMDAlIiBpZD0iYSI+PHN0b3Agc3RvcC1jb2xvcj0iIzAwRkY4QyIgc3RvcC1vcGFjaXR5PSIuMDUiIG9mZnNldD0iMCUiLz48c3RvcCBzdG9wLWNvbG9yPSIjMEIwMDJDIiBzdG9wLW9wYWNpdHk9IjAiIG9mZnNldD0iMTAwJSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxwYXRoIGQ9Ik0wIDBoMTQ0MHY3NjVIMHoiIGZpbGw9InVybCgjYSkiIGZpbGwtcnVsZT0iZXZlbm9kZCIgb3BhY2l0eT0iLjQiLz48L3N2Zz4=');
    opacity: 0.6;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-logo {
    max-width: 200px;
    margin: 0 auto 30px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Preço */
.price-tag {
    display: inline-block;
    margin: 30px 0;
    text-align: center;
}

.original-price {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    display: block;
    margin-bottom: 10px;
}

.current-price {
    font-size: 4rem;
    font-weight: 800;
    color: #00ff8c;
    display: block;
    line-height: 1;
}

.installment {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-top: 10px;
}

/* Countdown Timer */
.countdown {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 40px auto;
    max-width: 500px;
}

.countdown p {
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.2rem;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.time-block {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    min-width: 80px;
    text-align: center;
}

.time-block span {
    display: block;
}

.time-block .number {
    font-size: 2.2rem;
    font-weight: 700;
}

.time-block .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Seções de conteúdo */
.content-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #00ff8c;
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Benefícios */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0f3c 0%, #2e0b5c 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.benefit-icon {
    font-size: 3rem;
    color: #00ff8c;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Conteúdo do Pack */
.pack-content {
    padding: 100px 0;
    background-color: #0e0429;
}

.content-tabs {
    margin-top: 50px;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: white;
    margin: 5px;
    border-radius: 5px;
}

.tab-btn.active {
    background-color: #00ff8c;
    color: #0e0429;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tab-content.active {
    display: block;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.content-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-card:hover .content-image img {
    transform: scale(1.05);
}

.content-info {
    padding: 20px;
}

.content-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.content-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Comparação de valor */
.value-comparison {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0f3c 0%, #2e0b5c 100%);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background-color: rgba(0, 0, 0, 0.2);
    font-weight: 600;
    color: #00ff8c;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .highlight-row {
    background-color: rgba(0, 255, 140, 0.1);
}

.comparison-table .price-col {
    text-align: right;
    font-weight: 600;
}

/* Depoimentos */
.testimonials {
    padding: 100px 0;
    background-color: #0e0429;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    position: relative;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(0, 255, 140, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0f3c 0%, #2e0b5c 100%);
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #00ff8c;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Garantia */
.guarantee {
    padding: 80px 0;
    background-color: #0e0429;
    text-align: center;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-seal {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    background-color: rgba(0, 255, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #00ff8c;
}

/* CTA Final */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0f3c 0%, #2e0b5c 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: #080218;
    padding: 60px 0 20px;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: #00ff8c;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #00ff8c;
}

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

/* Elementos flutuantes */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    display: none;
}

.floating-cta.visible {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

/* Responsividade */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .current-price {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .current-price {
        font-size: 3rem;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 18px 40px;
        font-size: 1.2rem;
    }
    
    .timer {
        flex-wrap: wrap;
    }
    
    .time-block {
        min-width: 70px;
        padding: 10px;
    }
    
    .time-block .number {
        font-size: 1.8rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
