* {
    padding: 0px;
    margin: 0px;
    font-family: "Roboto", sans-serif;
}

section {
    max-width: 1600px !important;
}

:root {
    --primary-color: #f44336;
    --ligth-bg: #f5f7fdaf;
}

.text-primary {
    color: var(--primary-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-light {
    background-color: var(--ligth-bg);
}

button {
    font-size: 16px !important;
}

.header__section {
    max-width: 1080px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;

    h2,
    p {
        text-align: center;
        max-width: 90%;
    }
}

h1 {
    font-size: 34px !important;
    font-weight: 600 !important;
}

h2 {
    font-size: 28px !important;
    font-weight: 600 !important;
}

h3 {
    font-size: 20px !important;
    font-weight: 600 !important;
}

p {
    font-size: 18px !important;
}

.logo__icon svg {
    background: linear-gradient(180deg, #f44336, #000000) !important;
}

.hero {
    background: linear-gradient(-45deg, var(--ligth-bg), #f443360e);
}

.d-none {
    display: none !important;
}

#input,
#output {
    font-size: 18px !important;
}

.tool {
    width: 80vw;
    margin: auto;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 1px solid rgb(223, 223, 223);
    overflow: hidden;
    #humanizeBtn {
        background-color: #000;
        border-radius: 100px;
        color: #fff;
        box-shadow:
            rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
            rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    }
}

.tool__bar {
    background-color: #000;
}
.modes {
    color: #f3f3f3;
    flex-wrap: wrap;

    button {
        background-color: #2b2b2b;
        font-size: 14px !important;
    }

    button:hover,
    button.active {
        background-color: #f54336;
        color: #fff;
        /* background: linear-gradient(180deg, #f44336, #000000) !important;
        color: #fff; */
    }
}

.tool__loader {
    background-color: rgb(255 255 255 / 10%);
    backdrop-filter: blur(3px);

    .loader__rotate {
        animation: tool__loader 4s ease infinite;
        position: absolute;
        height: 18px;
        margin-top: 24px;
        margin-left: 8px;
    }
}

#downloadButton,
#trashButton,
#copyButton {
    position: relative;
    user-select: none;
    outline: none;
    touch-action: none;
}

#downloadButton img,
#trashButton img,
#copyButton img {
    user-select: none;
    outline: none;
    touch-action: none;
}
#downloadButton::before,
#trashButton::before,
#copyButton::before {
    position: absolute;
    left: -10%;
    background-color: var(--primary-color);
    color: #fff;
    padding: 4px 6px;
    border-radius: 5px;
    top: -30px;
    font-size: 12px;
    display: none;
}
#downloadButton:hover::before,
#trashButton:hover::before,
#copyButton:hover::before {
    display: flex;
}

#copyButton::before {
    content: "Copiar";
}

#copyButton.active_copy::before {
    content: "Copiada";
}

#downloadButton::before {
    content: "Descargar";
    left: -60%;
}

#trashButton::before {
    content: "Basura";
}

@keyframes tool__loader {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

#output span {
    color: #961c13 !important;
}

.custom-scrollbar {
    overflow-y: auto;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 12px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #f44336;
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #f44336 !important;
}

/* Custom Scrollbar for Firefox */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #f44336 #f1f1f1;
    resize: none;
}

.ai_companies {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 900px;
    justify-content: center;
    margin: auto;

    > div {
        display: flex;
        align-items: center;
        background: linear-gradient(45deg, var(--ligth-bg), #f443360e);

        flex: 1;
        justify-content: center;
        gap: 10px;
        padding: 10px 5px;
        min-width: 190px;
        max-width: 150px;
        border-radius: 7px;
    }

    img {
        width: 25px;
        border-radius: 100%;
    }
}

.uses__cards {
    flex-wrap: wrap;
    > div {
        min-width: 280px;
    }
}

.uses__cards > div,
.feature_cards {
    background: linear-gradient(45deg, var(--ligth-bg), #f443360e);
}

.users__list {
    display: flex;
    flex-direction: column;
    /* max-width: 920px; */
    width: 90%;
    min-width: 320px;
    margin: auto;

    li {
        display: flex;
        gap: 50px;
        padding-bottom: 30px;
        margin-bottom: 30px;
        /* border-bottom: 1px solid lightgray; */
        align-items: center;
        background: linear-gradient(45deg, var(--ligth-bg), #f443360e);
        padding: 50px;
        border-radius: 12px;

        h3 {
            margin-bottom: 5px;
        }

        img {
            width: 80px;
            height: 80px;
        }
    }
}

.faqs {
    display: flex;
    width: 90%;
    margin: auto;
    gap: 20px;
    margin-top: 40px;
    padding: 20px !important;
    flex-wrap: wrap;
    background: linear-gradient(45deg, var(--ligth-bg), #f443360e);
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.faqs > div {
    background-color: #fff;
    border-radius: 12px;
    flex: 1;
    padding: 20px;
}

.faqs > div div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: center;
    background: linear-gradient(45deg, var(--ligth-bg), #f443360e);
    padding: 15px;
    border-radius: 7px;
}

.faqs > div p {
    padding: 0px 5px;
}

.faqs > div img {
    width: 15px;
}

footer {
    background: linear-gradient(45deg, var(--ligth-bg), #f443360e);
}

.footer__links a {
    background: linear-gradient(180deg, #f44336, #000000) !important;
}

.social-pages {
    max-width: 1080px !important;
    margin: auto;
    margin-top: 40px;
    width: 90% !important;
}

.social-pages * {
    line-height: 150%;
}

.social-pages p {
    line-height: 150%;
    margin-top: 10px !important;
}

.social-pages strong {
    font-weight: 600 !important;
}

.social-pages h2,
.social-pages h3 {
    margin-bottom: 10px !important;
    margin-top: 40px !important;
    font-weight: 600 !important;
}

.social-pages h1 {
    margin-bottom: 10px !important;
}

.social-pages ul {
    margin-bottom: 15px;
    list-style-type: disc;
    list-style-position: inside;
    margin-left: 20px;
}

.social-pages ul {
    margin-top: 10px !important;
    margin-bottom: 5px !important;
}

li {
    font-size: 18px !important;
    margin-top: 10px;
    margin-bottom: 10px;
}

.social-pages a {
    color: var(--primary-color) !important;
    font-size: 18px !important;
    transition: 0.3s ease;
    text-decoration: none;
    word-break: break-word;
    /* overflow-wrap: break-word; */
    word-wrap: break-word;
    white-space: normal;
}

.social-pages a:hover {
    text-decoration: underline !important;
}

@media only screen and (max-width: 768px) {
    h1 {
        font-size: 30px !important;
        text-align: center;
    }

    h2{
        font-size: 26px !important;
    }
    .mobile_hide {
        display: none !important;
    }
    .users__list {
        min-width: 280px !important;
    }
    .tool {
        width: 90vw;
    }

    .modes button {
        font-size: 14px !important;
    }

    #humanizeBtn {
        font-size: 14px !important;
    }

    .hide__output {
        display: none;
    }
    .tool__inner__wrapper {
        flex-direction: column;
    }

    .output__wrapper {
        border-top: 1px solid #e5e7eb;
    }

    .faqs {
        grid-template-columns: repeat(1, 1fr);
    }

    p {
        font-size: 16px !important;
    }

    .users__list {
        li {
            padding: 10px !important;
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }
    }
}

@media only screen and (max-width: 450px) {
    .faqs {
        width: 100% !important;
        padding: 5px !important;
        grid-template-columns: repeat(1, 1fr);
    }

    .faqs > div {
        padding: 10px !important;

        p {
            font-size: 16px !important;
        }
    }
}
