:root {
    --primary: #0070f3;
    --dark: #111111;
    --gray: #666666;
    --light: #f4f4f7;
    --success: #00bcd4;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
body {
    background-color: #ffffff;
    color: var(--dark);
    line-height: 1.5;
    padding: 60px 00px;
}
.container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
	padding: 60px 00px;
}
/* Cabeçalho Direto */
h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 10px;
    color: var(--dark);
}
.subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px auto;
}
.subtitle strong {
    color: var(--primary);
}
/* Grid de Benefícios */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
}
.feature-card {
    padding: 25px;
    background: var(--light);
    border-radius: 12px;
}
.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.feature-card p {
    font-size: 0.95rem;
    color: var(--gray);
}
/* Card de Preço Estilo Day Use */
.pricing-section {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.price-card {
    background: #ffffff;
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 112, 243, 0.1);
    position: relative;
    overflow: hidden;
}
.badge {
    position: absolute;
    top: 35px;
    right: -35px;
    background: var(--success);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
}
.price-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary);
}
.price-desc {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 25px;
}
/* Preços */
.price-box {
    margin-bottom: 25px;
}
.old-price {
    font-size: 1.1rem;
    color: #cc0000;
    text-decoration: line-through;
    display: block;
    font-weight: 500;
}
.current-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -2px;
    line-height: 1;
}
.current-price span {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: super;
}
.price-period {
    font-size: 0.95rem;
    color: var(--gray);
    display: block;
    margin-top: 5px;
}
/* Lista de entrega dentro do Card */
.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
    border-top: 1px solid #eeeeee;
    padding-top: 20px;
}
.price-features li {
    font-size: 0.95rem;
    color: #333333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}
/* Botão de Ação Sem Fricção */
.btn-cta {
    display: block;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px;
    border-radius: 10px;
    transition: background 0.2s;
}
.btn-cta:hover {
    background: #0056b3;
}
.footer-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 15px;
}
/* Bloco de Dados Técnicos e Demonstração */
.specs-box {
    background: #eef6ff;
    border: 1px dashed var(--primary);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    text-align: left;
}
.specs-box h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}
.spec-item {
    font-size: 0.95rem;
    color: var(--dark);
}
.spec-item strong {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 2px;
}
/* Estilo da Imagem de Demonstração */
.demo-preview {
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid #cce3ff;
    padding-top: 20px;
}
.demo-preview p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 12px;
    font-weight: 600;
}
.demo-preview img {
    width: 100%;
    max-width: 650px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}