/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header / Hero */
.hero {
    background: linear-gradient(135deg, #1b365d, #0056b3);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 1.3rem;
    color: #ffca28;
    margin-bottom: 15px;
}

.hero p {
    max-width: 800px;
    margin: 0 auto 20px;
}

.services-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.services-badges span {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
}

/* Imagens Ilustrativas */
.banner-image {
    text-align: center;
    margin: 20px 0;
}

.img-responsive {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Como Funciona */
.how-it-works {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.how-it-works h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #1b365d;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 15px;
}

.step .number {
    display: inline-block;
    background: #0056b3;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Ofertas / Cards */
.offers h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #1b365d;
}

.cards-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.card.featured {
    border-color: #ff9800;
    transform: scale(1.03);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ff9800;
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 12px;
}

.card h4 {
    font-size: 1.4rem;
    color: #1b365d;
    margin-bottom: 10px;
}

.card .description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    min-height: 45px;
}

.card .price {
    font-size: 2rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 15px;
}

.card ul {
    list-style: none;
}

.card ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Regra de Pagamento */
.payment-rules {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.payment-rules h3 {
    color: #856404;
    margin-bottom: 10px;
}

/* Formulário */
.order-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.order-form h3 {
    margin-bottom: 20px;
    color: #1b365d;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.btn-submit {
    width: 100%;
    background: #25d366;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1eb954;
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: #fff;
}

/* Responsividade */
@media (max-width: 768px) {
    .steps {
        flex-direction: column;
    }
    .card.featured {
        transform: none;
    }
}