/* RESET */
* {
    box-sizing: border-box;
    font-family: 'Inter', system-ui, sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(180deg, #f6f9ff, #fbfdff);
    color: #1f2937;
}

/* WRAPPER */
/*
.register-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}
*/
.register-wrapper {
    max-width: 1200px;      /* ⬅️ MÁS ANCHO */
    margin: 0 auto;
    padding: 40px 24px;
}


/* HEADER */
.register-header {
    text-align: center;
    margin-bottom: 40px;
}

.register-header .back {
    position: absolute;
    left: 40px;
    top: 30px;
    color: #64748b;
    font-size: 14px;
    text-decoration: none;
}

.register-header h1 {
    font-size: 28px;
    font-weight: 700;
}

.register-header p {
    color: #6b7280;
    font-size: 15px;
}

/* STEPS */
.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0 12px;
}

.step-indicator {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
}

.step-indicator .circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e5ecff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
}

.step-indicator.active .circle {
    background: #2563eb;
    color: #fff;
}

.step-indicator .label {
    display: block;
}

/* FORM CARD */
form {
    display: flex;
    justify-content: center;
}

.step {
    display: none;
    background: #fff;
    max-width: 540px;
    width: 100%;
    padding: 42px 38px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(37,99,235,.15);
}

.step.active {
    display: block;
}

.step h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 6px;
}

.subtitle {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

/* GOOGLE */
.btn-google {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

/* DIVIDER */
.divider {
    text-align: center;
    font-size: 13px;
    color: #9aa4b2;
    margin-bottom: 22px;
}

/* FIELDS */
.field {
    margin-bottom: 18px;
}

.field label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.field input,
.field select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #dbe1f1;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ACTIONS */
.actions {
    margin-top: 28px;
    display: flex;
}

.actions.right {
    justify-content: flex-end;
}

.actions.space {
    justify-content: space-between;
}

.btn-next,
.btn-submit {
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    color: #fff;
    padding: 12px 26px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-back {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 12px 20px;
    border-radius: 12px;
}

/* PANEL 3 */
.services-info {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.services-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.service-tag {
    background: #eef2ff;
    color: #1d4ed8;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
}

.service-box {
    background: #f9fbff;
    border: 1px solid #e5eaf5;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
}

.btn-add-service {
    width: 100%;
    padding: 14px; 
    border-radius: 14px;
    border: none;
    color: #fff;
}

.service-hint {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 14px;
    border-radius: 12px;
    font-size: 13px;
}

/* PANEL 4 */
.plan-toggle {
    display: flex;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 999px;
    padding: 6px;
    margin-bottom: 24px;
}

.plan-toggle button {
    border: none;
    background: transparent;
    padding: 8px 18px;
}

.plan-toggle .active {
    background: #fff;
    border-radius: 999px;
}

.plan-card {
    border: 1px solid #e5eaf5;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 18px;
}

.plan-card.active {
    border: 2px solid #2563eb;
}

.plan-header {
    display: flex;
    justify-content: space-between;
}

.plan-title {
    font-weight: 700;
}

.plan-price {
    font-weight: 700;
    color: #1d4ed8;
}

.plan-features {
    margin-top: 12px;
}

.plan-features li {
    list-style: none;
    font-size: 13px;
    margin-bottom: 6px;
}

.plan-features li::before {
    content: "✓ ";
    color: #2563eb;
}

/* =========================
   FIX BOTÓN GOOGLE
========================= */
.btn-google {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #ffffff;

    font-size: 14px;
    font-weight: 500;
    color: #111827;

    cursor: pointer;
    overflow: hidden; /* CLAVE */
}

.google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.google-text {
    line-height: 1;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
}
