html {
    -webkit-print-color-scheme: light;
    color-scheme: light;
}

body, h1, p, ul, li, a, span, b {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.site-body {
    font-family: Roboto, sans-serif;
    color: #000;
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header.site-header {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 140px;
}

.logo span {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-left: .5rem;
    font-weight: 300;
    color: rgb(71 85 105/var(--tw-text-opacity, 1))
}

.logo b {
    font-weight: 600;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;/
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-list a {
    text-decoration: none;
    font-weight: 500;
    color: #334155;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff !important;
    font-weight: 600;
    padding: 0.75rem 1rem !important;
    border-radius: 9999px !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #3b82f6;
}

main {
    flex: 1;
}

.checker {
    padding: 3rem 0;
    position: relative;
}

.checker .background-blur {
    position: absolute;
    top: 0;
    left: -25%;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    background: linear-gradient(to top, #eff6ff, #dbeafe, #fff);
    filter: blur(100px);
    z-index: -1;
}

.checker h1 {
    font-size: 3.75rem;
    line-height: 1;
    font-weight: 600;
    color: rgb(31 41 55/var(--tw-text-opacity, 1));
    text-align: center;
    margin: 1rem 0;
}

.checker p {
    text-align: center;
    font-size: 1.25rem;
    color: #6b7280;
}

.card {
    width: 300px;
    margin-top: 3rem;
    padding: 20px 60px 20px 60px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.16);
    border: 1px solid #60a5fa;
    backdrop-filter: blur(12px);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}

.card label {
    display: block;
    margin-bottom: 0.75rem;
}

.card label span {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    color: #475569;
}

.card input.form-control {
    display: block;
    padding: 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    font-size: 1rem;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    color: rgb(51 65 85 / var(--tw-text-opacity, 1))
}

.card .error+span {
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 0.25rem;
    display: block;
}

.card .tip-button {
    font-size: 0.75rem;
    color: #475569;
    margin-top: 0.25rem;
    display: block;
    text-decoration: underline;
}

.card .tip-button:hover,
.card .tip-button:focus {
    text-decoration: none;
}


.card .btn-primary {
    background-color: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.card .btn-primary:hover,
.card .btn-primary:focus {
    background-color: #3b82f6;
}

.card .btn-secondary {
    margin-left: 0.25rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    background-color: transparent;
}

.card .btn-secondary:hover,
.card .btn-secondary:focus {
    background-color: rgba(59, 130, 246, 0.1);
}

.card .btn-secondary svg {
    height: 1.25rem;
    margin-right: 0.25rem;
}

.card .demo-text {
    margin-left: 0.25rem;
    color: #6b7280;
}

.card .info {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 1rem;
}

.input-error {
    border-color: #f87171 !important;
}

.input-alert {
    border-color: #ff9618 !important;
}

.input-success {
    border-color: #34d399 !important;
}

form input[type="text"] {
    padding: 0.5rem;
}

form button {
    padding: 0.5rem 1rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 0.25rem;
}


.resultado.success {
    color: green;
    margin-top: 1rem;
}

.resultado.error {
    color: red;
    margin-top: 1rem;
}

.steps {
    padding: 3rem 0;
    position: relative;
}

.steps .background-blur {
    position: absolute;
    top: 0;
    left: -25%;
    height: 100%;
    width: 100%;

    border-radius: 9999px;
    filter: blur(20px);

    background: linear-gradient(to top, #eff6ff, #f5f3ff, #ffffff);
    z-index: -1;
}

.steps .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 1rem;

    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.1);
    backdrop-filter: blur(4px);

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    color: #334155;
    border-radius: 1rem;
}

.steps h2 {
    text-align: center;
    color: rgb(51 65 85 / var(--tw-text-opacity, 1));
    font-size: 3rem;
    line-height: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.steps p {
    text-align: center;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 2rem;
}

.steps .accordion {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.steps-drawer {
    width: 100%;
    border-bottom: #e5e7eb 1px solid;
}

.steps-drawer-content-wrapper {
    font-size: 1.25em;
    line-height: 1.4em;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.steps-drawer-title {
    cursor: pointer;
    display: block;
    font-size: 1.25em;
    font-weight: 700;
    padding: 30px 0 30px 0;
    position: relative;
    transition: all 0.25s ease-out;
}

.steps-drawer-title::before,
.steps-drawer-title::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    width: 16px;
    height: 2px;
    background-color: #000;
    transition: transform 0.25s ease-in-out;
    transform-origin: center center;
    background: rgb(111 135 160/var(--tw-text-opacity, 1));
}

.steps-drawer-title::after {
    transform: rotate(-90deg);
}

.steps-drawer-trigger:checked+.steps-drawer-title::before {
    transform: rotate(45deg);
}

.steps-drawer-trigger:checked+.steps-drawer-title::after {
    transform: rotate(-135deg);
}


.steps-drawer-title:hover {
    color: #4E4B52;
}

.steps-drawer-trigger:checked+.steps-drawer-title+.steps-drawer-content-wrapper {
    max-height: 350px;
}

.steps-drawer-trigger:checked+.steps-drawer-title::after {
    transform: rotate(-45deg);
    transition: 0.25s ease-in-out;
}

input[type="checkbox"] {
    display: none;
}

@media only screen and (max-width: 600px) {
    .container {
        padding: 80px;
    }
}

footer.site-footer {
    background-color: rgb(249 250 251/var(--tw-bg-opacity, 1));
    padding: 1.5rem 0;
}

footer span {
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
    font-size: .875rem;
    line-height: 1.25rem;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

.footer-nav a {
    text-decoration: none;
    color: inherit;
}

.footer-nav a:hover {
    text-decoration: underline;
}