/* Reset Geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* --- SEÇÃO 1: HEADER --- */
.main-header {
    padding-top: 40px;
    padding-bottom: 20px;
}

.main-header h1 {
    color: #1a2b3c;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.subtitle {
    color: #55606b;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-box img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* --- SEÇÃO 2: TRANSFORMAÇÃO (Gradiente) --- */
.transformation-section {
    background: linear-gradient(135deg, #0fb9b1 0%, #2d98da 100%); /* Verde Água para Azul */
    padding: 60px 0;
    color: white;
    margin-top: 40px;
    border-radius: 0; /* Full width background */
    position: relative;
}

/* Imagem do notebook sobre o fundo colorido */
.laptop-mockup img {
    max-width: 350px;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.transformation-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.transformation-text p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    opacity: 0.95;
}

/* Grid de Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background: white;
    color: #333;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    background-color: #0fb9b1; /* Cor do ícone */
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a2b3c;
}

.feature-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0; /* Reset da margem do p global */
}

/* --- SEÇÃO 3: LISTA DE ENTREGÁVEIS --- */
.deliverables-section {
    padding: 60px 20px;
}

.deliverables-section h2 {
    color: #1a2b3c;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.deliverables-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.deliverable-item {
    background-color: #f0f4f8; /* Cinza bem claro */
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    transition: background 0.2s;
}

.deliverable-item:hover {
    background-color: #e2e8f0;
}

.deliverable-item i {
    color: #00b894; /* Verde Check */
    font-size: 1.2rem;
    min-width: 24px;
}

.deliverable-item span {
    font-weight: 500;
    color: #2d3436;
    font-size: 0.95rem;
}

/* --- SEÇÃO 4: PREÇO E CHECKOUT --- */
.pricing-section {
    background-color: #fff;
    padding: 60px 20px;
    border-top: 4px solid #ff6b6b; /* Detalhe vermelho no topo */
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}

.pricing-section h2 {
    color: #1a2b3c;
    margin-bottom: 30px;
}

.pricing-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto 30px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
}

.original-price {
    text-decoration: line-through;
    color: #999;
}

.highlight {
    color: #333;
    font-weight: 600;
}

.discount-badge {
    background-color: #ff4757;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-row span:first-child {
    font-size: 1.5rem;
    color: #ff4757;
    font-weight: 600;
}

.final-price {
    font-size: 2rem;
    color: #ff4757;
    font-weight: 800;
}

/* Botão Principal */
.btn-checkout {
    background: linear-gradient(to right, #ff9f43, #ff6b6b);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    max-width: 400px;
    display: inline-block;
}

.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.6);
}

/* Segurança */
.security-info {
    margin-top: 25px;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.security-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background: #f1f2f6;
    padding: 8px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #2f3542;
}

.badge i {
    color: #0fb9b1;
}

.main-footer {
    text-align: center;
    padding: 40px;
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr; /* Um card por linha no celular */
    }
    
    .final-price {
        font-size: 1.8rem;
    }
    
    .badges {
        flex-direction: column;
        align-items: center;
    }
}