.itc-calc-wrap *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
.itc-calc-wrap {
            font-family: 'Segoe UI', Arial, sans-serif;
            background: #f4f7fb;
            padding: 30px 20px;
            color: #1e2a3a;
        }
.itc-calc-wrap .container {
            max-width: 1100px;
            margin: 0 auto;
            background: white;
            border-radius: 24px;
            padding: 40px 35px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }
.itc-calc-wrap h1 {
            font-size: 28px;
            font-weight: 700;
            color: #0b2b40;
            margin-bottom: 6px;
        }
.itc-calc-wrap .subtitulo {
            color: #54738f;
            font-size: 16px;
            margin-bottom: 30px;
            border-left: 4px solid #2a7f6e;
            padding-left: 16px;
            background: #f0f5fa;
            border-radius: 0 10px 10px 0;
            padding: 12px 18px;
        }
.itc-calc-wrap .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        @media (max-width: 720px) {
.itc-calc-wrap .grid-2 {
                grid-template-columns: 1fr;
                gap: 18px;
            }
        }
.itc-calc-wrap .card {
            background: #f8fafc;
            border-radius: 16px;
            padding: 20px 22px;
            border: 1px solid #e5edf4;
            transition: 0.2s;
        }
.itc-calc-wrap .card:hover {
            border-color: #b7d0e0;
        }
.itc-calc-wrap .card h3 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 14px;
            color: #0b2b40;
            display: flex;
            align-items: center;
            gap: 8px;
        }
.itc-calc-wrap .card h3 span {
            background: #d9e6f2;
            border-radius: 30px;
            font-size: 13px;
            padding: 0 12px;
            color: #1a4c6e;
        }
.itc-calc-wrap label {
            display: block;
            font-weight: 500;
            font-size: 14px;
            margin: 12px 0 4px;
            color: #1f3a4e;
        }
        input[type="number"],
        input[type="text"],
.itc-calc-wrap select {
            width: 100%;
            padding: 10px 14px;
            border: 1.5px solid #d4e0ea;
            border-radius: 10px;
            font-size: 15px;
            background: white;
            transition: 0.2s;
        }
        input[type="number"]:focus,
        input[type="text"]:focus,
.itc-calc-wrap select:focus {
            border-color: #2a7f6e;
            outline: none;
            box-shadow: 0 0 0 3px rgba(42, 127, 110, 0.15);
        }
.itc-calc-wrap .radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 6px;
        }
.itc-calc-wrap .radio-group label {
            margin: 0;
            font-weight: 400;
            font-size: 14px;
            background: white;
            padding: 6px 14px;
            border-radius: 30px;
            border: 1.5px solid #d4e0ea;
            cursor: pointer;
            transition: 0.15s;
        }
.itc-calc-wrap .radio-group input[type="radio"] {
            display: none;
        }
.itc-calc-wrap .radio-group label:has(input:checked) {
            border-color: #2a7f6e;
            background: #e6f3ef;
            box-shadow: 0 0 0 2px rgba(42, 127, 110, 0.2);
        }
.itc-calc-wrap .checkbox-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 14px;
            margin: 6px 0 4px;
        }
.itc-calc-wrap .checkbox-grid label {
            margin: 0;
            font-weight: 400;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
        }
.itc-calc-wrap .checkbox-grid input[type="checkbox"] {
            width: 17px;
            height: 17px;
            accent-color: #2a7f6e;
            cursor: pointer;
        }
.itc-calc-wrap .resultado-bloque {
            background: #eaf3f9;
            border-radius: 16px;
            padding: 18px 22px;
            margin: 18px 0 8px;
            border-left: 5px solid #2a7f6e;
        }
.itc-calc-wrap .resultado-bloque .numero {
            font-size: 28px;
            font-weight: 700;
            color: #0b2b40;
        }
.itc-calc-wrap .resultado-bloque .etiqueta {
            font-size: 14px;
            color: #2f5575;
        }
.itc-calc-wrap .tabla {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            margin: 10px 0 6px;
        }
.itc-calc-wrap .tabla td {
            padding: 6px 4px;
            border-bottom: 1px solid #e0eaf2;
        }
.itc-calc-wrap .tabla tr:last-child td {
            border-bottom: none;
        }
.itc-calc-wrap .tabla .valor {
            text-align: right;
            font-weight: 600;
        }
.itc-calc-wrap .badge {
            display: inline-block;
            background: #d9e6f2;
            border-radius: 30px;
            font-size: 12px;
            padding: 2px 14px;
            color: #1f4a6e;
            font-weight: 500;
        }
.itc-calc-wrap .btn-copiar {
            background: #1f4a6e;
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 20px;
            width: 100%;
        }
.itc-calc-wrap .btn-copiar:hover {
            background: #0b2b40;
            transform: scale(1.01);
        }
.itc-calc-wrap .nota {
            font-size: 13px;
            color: #6a7f92;
            background: #f4f8fc;
            padding: 14px 18px;
            border-radius: 12px;
            margin: 18px 0 4px;
            border: 1px dashed #b7cbd9;
        }
.itc-calc-wrap .nota strong {
            color: #1a4c6e;
        }
.itc-calc-wrap hr {
            border: none;
            border-top: 2px dashed #d4e0ea;
            margin: 28px 0 18px;
        }
.itc-calc-wrap .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
.itc-calc-wrap .texto-chico {
            font-size: 13px;
            color: #54738f;
        }
.itc-calc-wrap .columna-izq {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
.itc-calc-wrap .alert {
            background: #fff6e5;
            border-left: 4px solid #e69138;
            padding: 10px 16px;
            border-radius: 8px;
            font-size: 14px;
            color: #7a5a2a;
        }
.itc-calc-wrap .verde {
            color: #1e7b5e;
        }
.itc-calc-wrap .gris {
            color: #5f7a8c;
        }
.itc-calc-wrap .mt-2 {
            margin-top: 12px;
        }
.itc-calc-wrap .fw-700 {
            font-weight: 700;
        }
.itc-calc-wrap .w-100 {
            width: 100%;
        }
.itc-calc-wrap .bg-soft {
            background: #f4f8fc;
        }
.itc-calc-wrap .rounded {
            border-radius: 12px;
        }
.itc-calc-wrap .p-2 {
            padding: 12px 16px;
        }

/* ============================================================
   ESTILOS DEL FORMULARIO DE EMAIL (GATE) — paleta Into The Cabins
   ============================================================ */
.itc-lead-gate {
    max-width: 560px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 1px solid #D4D0C9;
    border-radius: 16px;
    padding: 36px 32px;
    text-align: center;
}
.itc-lead-gate h3 {
    color: #2C2C2C;
    font-size: 22px;
    margin-bottom: 10px;
}
.itc-lead-gate p {
    color: #2C2C2C;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}
.itc-lead-gate form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.itc-lead-gate input[type="text"],
.itc-lead-gate input[type="email"] {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #D4D0C9;
    font-size: 15px;
}
.itc-lead-gate button {
    background: #4A6B4A;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.itc-lead-gate button:hover {
    background: #7A9B7A;
}
.itc-lead-gate button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.itc-lead-gate__note {
    display: block;
    margin-top: 14px;
    font-size: 12px;
    color: #B8A28C;
}
.itc-lead-gate__error {
    color: #b3261e;
    font-size: 13px;
    margin-top: 4px;
}

/* ============================================================
   FORMULARIO "HABLEMOS DE TU PROYECTO" — paleta Into The Cabins
   ============================================================ */
.itc-project-wrap {
    max-width: 640px;
    margin: 0 auto;
}
.itc-project-form-box {
    background: #FFFFFF;
    border: 1px solid #D4D0C9;
    border-radius: 16px;
    padding: 40px 36px;
}
.itc-project-form-box h2 {
    color: #2C2C2C;
    font-size: 26px;
    margin-bottom: 12px;
    text-align: center;
}
.itc-project-intro {
    color: #2C2C2C;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 28px;
}
.itc-project-row {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.itc-project-row label {
    font-size: 13px;
    font-weight: 600;
    color: #4A6B4A;
}
.itc-project-row input,
.itc-project-row select,
.itc-project-row textarea {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #D4D0C9;
    font-size: 15px;
    font-family: inherit;
    background: #FFFFFF;
    color: #2C2C2C;
}
.itc-project-form-box button[type="submit"] {
    width: 100%;
    background: #4A6B4A;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}
.itc-project-form-box button[type="submit"]:hover {
    background: #7A9B7A;
}
.itc-project-form-box button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.itc-project-error {
    color: #b3261e;
    font-size: 13px;
    margin-top: 8px;
    text-align: center;
}

.itc-project-confirm {
    background: #F7F6F2;
    border: 1px solid #D4D0C9;
    border-radius: 16px;
    padding: 40px 36px;
    text-align: center;
}
.itc-project-confirm h3 {
    color: #2C2C2C;
    font-size: 22px;
    margin-bottom: 20px;
}
.itc-project-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
    display: inline-block;
}
.itc-project-checks li {
    color: #2C2C2C;
    font-size: 15px;
    margin-bottom: 10px;
}
.itc-calendly-texto {
    color: #4A6B4A;
    font-weight: 600;
    margin-bottom: 14px;
}
.itc-calendly-inline {
    min-width: 280px;
    height: 630px;
}
.itc-calendly-pendiente {
    color: #B8A28C;
    font-style: italic;
    font-size: 14px;
}

/* ============================================================
   BARRA COMPACTA DE LA CALCULADORA (evita que ocupe toda la pantalla en visitas repetidas)
   ============================================================ */
.itc-calc-toggle-bar {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 420px;
    margin: 0 auto;
    background: #4A6B4A;
    color: #FFFFFF;
    border-radius: 999px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.itc-calc-toggle-bar:hover {
    background: #7A9B7A;
}
.itc-calc-collapse-btn {
    display: block;
    margin: 0 auto 16px auto;
    background: transparent;
    border: 1px solid #D4D0C9;
    color: #2C2C2C;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    cursor: pointer;
}
.itc-calc-collapse-btn:hover {
    background: #F7F6F2;
}
