/* --- ESTILOS MODERNOS PARA ORDER.PHP --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
}

.order-header {
    background-color: #ffffff;
    padding: 20px;
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.header-logo {
    max-height: 50px;
}

.order-header h1 {
    font-size: 1.75rem;
    font-weight: 500;
    color: #343a40;
    margin: 0;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.summary-card {
    background-color: #ffffff;
}

.summary-card .card-body {
    padding: 2rem;
}

.summary-card .price-display {
    font-size: 2.5rem;
    font-weight: 600;
    color: #007bff;
}

.summary-card .billing-cycle {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
}

.recaptcha-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    transform: scale(0.95);
    transform-origin: center;
}