<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
:root {
    --font-size-default: 18px;
    --border-radius-default: 5px;
    --font-size-large: 22px;
    --font-size-medium: 20px;
    --font-size-default: 18px;
    --font-size-small: 16px;
    --font-size-x-small: 14px;
    --font-size-h1: 34px;
    --font-size-h2: 30px;
    --font-size-h3: 24px;
    --color-666666: #666666;
    --color-lightblue: #ebf8ff;
    --color-skyblue: #0984e340;
    --color-0000000D: #0000000d;
    --color-CBCBCB: #cbcbcb;
    --color-blue: #0984e3;
    --color-yellow: #ffdd00;
    --color-dark: #0d0c22;
    --color-F0F0F0: #f0f0f0;
    --color-EFEFEF: #efefef;
    --color-D9D9D9: #d9d9d9;
    --color-FF5C5C: #ff5c5c;
}

*, :before, :after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e2e8f0;
}

body {
    background-color: rgb(30 41 59 / 1);
    flex-direction: column;
    min-height: 100vh;
    display: flex;
    margin: 0;
    line-height: inherit;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #4a4a4a;
    scrollbar-width: thin;
}

.page-wrap {
    color: rgb(255 255 255 / 1);
    background-color: rgb(30 41 59 / 1);
    overflow: hidden;
    flex-grow: 1;
    margin-top: -5rem;
    position: relative;
}

.main-content {
    padding-top: 4rem;
    justify-content: center;
    align-items: center;
}

.animate-spin {
    border-color: #2563eb4d;
    border-bottom-width: 1px;
    border-radius: 9999px;
    aspect-ratio: 1 / 1;
    right: 0px;
    top: -50%;
    position: absolute;
}

.animate-spin-8s {
    width: 33.333333%;
    animation: spin 8s linear infinite;
}

.animate-spin-6s {
    width: 50%;
    animation: spin 6s linear infinite;
}

.animate-spin-4s {
    width: 66.666667%;
    animation: spin 4s linear infinite;
}

.animate-spin-2s {
    width: 100%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.main-content {
    position: relative;
    min-height: 100%;
}

/* Navbar bÃ¡sica */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 10% 1rem 10%;
    background: var(--background);
    box-shadow: 0 2px 4px var(--shadow);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text);
}

.logo img {
    width: 45px;
}

/* MenÃº principal */
.menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.menu-item {
    text-decoration: none;
    transition: color 0.3s ease;
    --border-color: #60a5fa;
    --border-width: 2px;
    --bottom-distance: 0px;
    background-image: linear-gradient(var(--border-color), var(--border-color));
    background-size: 0% var(--border-width);
    background-repeat: no-repeat;
    transition: background-size 0.3s;
    display: inline-block;
    color: #fff;
    padding: 5px 0;
    border: 3px solid transparent;
    background-position: 50% calc(100% - var(--bottom-distance));
}

.menu-item.active {
    background-size: 100% var(--border-width);
    text-decoration: none;
    color: #fff;
}

.menu-item:hover {
    background-size: 100% var(--border-width);
    text-decoration: none;
    color: #fff;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--background);
    box-shadow: 0 2px 4px var(--shadow);
    border-radius: 0.5rem;
    min-width: 150px;
    z-index: 1;
}

.dropdown-content a {
    color: var(--text);
    text-decoration: none;
    padding: 0.75rem 1rem;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f3f4f6;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* BotÃ³n primario */
.btn-primario {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-primario:hover {
    opacity: 0.9;
}

/* BotÃ³n menÃº mÃ³vil */
.menu-mobile {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
}

/* Responsive */
@media (max-width: 768px) {
    .menu {
        display: none;
        width: 100%;
    }
    
    .menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1e293b;
        padding: 1rem;
        box-shadow: 0 2px 4px var(--shadow);
    }
    
    .menu-mobile {
        display: block;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
    }
    
    .btn-primario {
        width: 100%;
        margin-top: 1rem;
    }
}

.box-shadow {
    box-shadow: 0px 10px 8px #102135;
}

h1 {
    font-size: 34px;
    margin-top: 70px;
    font-weight: bold;
    text-align: center;
    line-height: normal;
}

.description {
    text-align: center;
    margin-top: 20px;
    line-height: 30px;
}

.tool {
    padding: 20px;
    border-radius: 30px;
    margin-top: 35px;
    background-color: rgb(51 65 85 / 1);
    width: 85%;
    margin: 35px auto auto auto;
}

.tool-inner {
    padding: 1.5rem;
    width: 100%;
    cursor: pointer;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    position: relative;
    border-radius: 15px;
    border: 2px dashed #60a5fa;
    background: #1e293b;
    box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.05);
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.drag_n_drop_title {
    line-height: 30px;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
}

.drag_n_drop_sub_title {
    font-size: var(--font-size-x-small);
    color: #85878e;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
}

.browse-btn {
    gap: 6px;
    background-color: #e7ebf3;
    border-radius: 8px;
    padding: 0px 23px;
    color: #0d1120;
    font-size: 16px;
    height: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-right: 10px;
    cursor: pointer;
}

.tool-upload-btns .tool-link-btn {
    border-radius: 10px;
    border: 2px solid #60a5fa;
    opacity: 0.5;
    display: inline-flex;
    height: 40px;
    padding: 13px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.tool-upload-btn {
    display: flex;
    flex-direction: row;
}

.tool-upload-btns {
    margin-bottom: 30px;
}

.privacy-text {
    position: absolute;
    bottom: 4px;
    left: 12px;
    font-weight: 400;
    font-size: var(--font-size-x-small);
    color: #85878e;
    user-select: none;
    margin: 10px;
}

.more-tools {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    clear: both;
    margin-top: 60px;
}

.more-tools h3 {
    font-weight: bold;
    margin-top: 30px;
}

.more-tools .tools {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    gap: 1rem;
    flex-wrap: wrap;
}

.more-tools .tools &gt; .tool-link {
    border-radius: 10px;
    background: #1e293b;
    box-shadow: 0px 50px 139px 21px rgba(0, 0, 0, 0.05);
    padding: 20px 0px;
    text-align: center;
    width: 30%;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    display: flex;
    font-style: normal;
    gap: 0.324rem;
    font-weight: 500;
    border: 2px solid #60a5fa;
    cursor: pointer;
    text-decoration: none;
}

.section .steps-title {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-bottom: 50px;
    gap: 0.324rem;
    padding: 0 20px 50px 20px;
}

.steps-title .title {
    margin-top: 70px;
    color: #fff;
    font-size: var(--font-size-h3);
    text-align: center;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.steps-title .des{
    color: #85878e;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    counter-reset: counter;
}

.steps-row .number {
    position: relative;
    z-index: 1;
    transition: all 300ms ease-in-out;
}

.steps-row .number:hover {
    transform: translateY(-10px);
}

.step-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: var(--border-radius-default);
    position: relative;
    z-index: 10;
    height: 100%;
    background-color: #182437;
    transition: all 300ms ease-in;
}

.step-card .header {
    display: flex;
    justify-content: space-between;
}

.step-card .heading {
    margin-top: 1rem;
    font-size: var(--font-size-large);
    color: white;
    font-weight: 500;
}

.step-card .descriptions {
    font-weight: 300;
    color: #85878e;
    line-height: 30px;
}

.content-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    background-color: rgba(247, 250, 252, 1);
    padding: 2rem;
    border-radius: var(--border-radius-default);
}

.steps-row &gt; .number::before {
    counter-increment: counter;
    content: "0" counter(counter);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 4rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    z-index: -1;
    top: -45px;
    color: #535353;
    transition: all 300ms ease-in-out;
}

.number:hover::before {
    transform: translateY(-35px);
    color: #ffffff;
}

.shadow {
    box-shadow: 0px 40px 99px #0000000d;
}

.number svg {
    color: white;
}

/************************ FOOTER STYLES *****************************/

.footer-grid {
    display: flex;
    gap: 1.5rem;
}

.footer-grid .fraction:nth-child(1), .fraction:nth-child(3), .fraction:nth-child(4) {
    flex: 1;
}

.fraction .heading {
    font-size: var(--font-size-h3);
    font-weight: 500;
    margin-bottom: 1rem;
    border-bottom: 2px solid #60a5fa;
    width: fit-content;
    padding-bottom: 10px;
}

.fraction ul {
    list-style: none;
    padding: 0px;
    line-height: 35px;
}

.fraction ul li {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.fraction ul li * {
    font-size: var(--font-size-small);
}

.footer {
    margin-top: 100px;
}

.footer-border {
    --tw-gradient-to: rgb(96 165 250 / 0);
    --tw-gradient-stops: #1e293b, #60a5fa, #1e293b;
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
    height: 1px;
    -webkit-font-smoothing: antialiased;
    color: rgb(30 41 59 / 1);
    margin-top: 50px;
    margin-bottom: 50px;
}

.fraction ul li a {
    text-decoration: none;
    color: #fff;
}

@media (max-width: 996px) {
    .container {
        width: 100%;
        margin: 0;
        max-width: 100%;
    }

    .more-tools .tools &gt; .tool-link {
        width: 40%;
    }

    .steps-row {
        grid-template-columns: none;
        gap: 5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
}

@media (max-width: 460px) {
    .footer-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .more-tools .tools &gt; .tool-link {
        width: 100%;
    }

    .tool-upload-btns {
        margin-bottom: 40px;
    }
}

@media (max-width: 750px) {
    .tool-image {
        display: block !important;
    }

    .image-description {
        border-radius: 20px;
        text-align: center;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .image-extract-textarea {
        min-height: 170px;
        border-radius: 20px;
    }

    .image-text {
        margin-left: 0 !important;
    }
}

/****************** TOOLS STYLING ******************/
.tool-image {
    display: flex;
    margin-bottom: 20px;
}

.tool-image:last-child {
    margin-bottom: 0;
}

.image-description {
    background: #1e293b;
    padding: 15px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.image-description img {
    width: fit-content;
    height: fit-content;
    margin-bottom: 15px;
    border-radius: 5px;
    width: 150px;
    height: 125px;
}

.image-description .image-title {
    text-align: center;
    max-width: 150px;
    line-height: 20px;
}

.image-extract-textarea {
    width: 100%;
    background: #1e293b;
    height: 100%;
    resize: none;
    overflow-y: auto;
    outline: none;
    padding: 15px;
    color: #fff;
    scrollbar-width: thin;
    position: relative;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.image-extract-textarea:focus {
    background: #1e293b;
    border: 1px solid #60a5fa;
    color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
}

.image-text {
    width: 100%;
    margin-left: 15px;
    position: relative;
}

.upload-more {
    margin: 0;
    font-size: 16px;
}

.tool-btn {
    background: #334155;
    padding: 8px;
    color: #fff;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 16px;
    transition: 0.3s;
}

.textarea-tool-btn {
    position: absolute;
    z-index: 1;
    right: 0;
    margin-right: 12px;
}

.drag-over {
    border: 2px solid #60a5fa;
}

.tool-images {
    margin-bottom: 20px;
}

.tool-btn:hover {
    color: #5ea2f6;
}

.tool-btn.btn-delete:hover {
    color: red;
}

.extract-loading-text {
    width: 100%;
    text-align: center;
    position: absolute;
    height: 100%;
    vertical-align: middle;
    align-items: center;
    top: 43%;
    font-weight: bold;
}

.disable-pointer-events {
    opacity: 0.6;
    pointer-events: none;
}

.spinner-border {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.color-red {
    color: red !important;
}</pre></body></html>