:root {
    --primary-dark: #bd5c1d;
    --secondary-dark: #c88f1c;
    --primary: #c2a18a;
    --secondary: #cfbc94;
    --tertiary: #f8ceb6;
    --color: #062843;
    --dark-green: #04701b;
    --disabled: #bebebe;
    --notification-green: #c0e2bc;
    --notification-yellow: #e1e2b5;
    --notification-red: #ddb0b0;
    --notification-blue: #b8dbdb;
    --red: #cc1717;
}

.phone-and-tablet{
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Ubuntu", sans-serif;
    overflow: hidden;
}

.hero-section {
    display: flex;
    flex-direction: column;
    width: 80%;
    gap: 2vh;
}

.info-articles {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    width: 100%;
}

article {
    display: flex;
    flex-direction: column;
    gap: 0.8vh;
    width: 100%;
    border-radius: 0.8vh;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 1.6vh;
    box-sizing: border-box;
    transition: all ease-in-out;
    background-color: var(--secondary);
    min-height: 32vh;
}

article ul {
    display: flex;
    flex-direction: column;
    gap: 0.2vh;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  height: 4vh;
  font-family: 'Ubuntu', sans-serif;
  border-radius: 1.6vh;
  border: 0.2vh solid var(--color);
  color: var(--color);
  font-size: 2vh;
  cursor: pointer;
  background-color: transparent;
  transition: box-shadow 0.3s ease;
}

.chip:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.active {
    background-color: var(--color);
    color: white;
}

.animate-article {
    animation-name: toast-open;
    animation-duration: 200ms;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

h2, h3 {
    color: var(--color);
}


.form1 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4vh;
}

input {
    height: 6vh;
    width: 32%;
    padding: 0.4%;
    color: var(--color);
    font-size: 2vh;
    font-family: "Ubuntu", sans-serif;
}

input::placeholder {
    color: var(--color);
    font-size: 2vh;
    font-family: "Ubuntu", sans-serif;
}

.double-box {
    width: 100vw;
    display: flex;
    height: auto;
}

.left {
    width: 42vw;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4vh;
    border-right: 0.08vw solid var(--color);
    padding: 2vh;
    overflow-y: auto;
}

.left img {
    width: 60%;
}

.right {
    width: 58vw;
    height: 100vh;
    padding: 2vh;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 4vh;
    overflow: auto;
}

.right2 {
    width: 68vw;
    height: 100vh;
    padding: 2vh;
    align-items: start;
    justify-content: start;
    display: flex;
    flex-direction: column;
    gap: 4vh;
    overflow: auto;
}

.title {
    text-align: center;
    width: 100%;
    color: var(--color);
    font-size: 4vh;
}

.subtitle {
    text-align: center;
    width: 100%;
    color: var(--color);
    font-size: 3.2vh;
}

.nav-btn {
    border: none;
    display: flex;
    width: 32%;
    align-items: center;
    justify-content: space-between;
    height: 8vh;
    cursor: pointer;
    border-radius: 0.8vh;
    background-color: var(--primary);
    transition: background-color 0.3s ease-in-out;
}

.nav-btn2 {
    border: none;
    display: flex;
    width: 54%;
    align-items: center;
    justify-content: space-between;
    height: 8vh;
    cursor: pointer;
    border-radius: 0.8vh;
    background-color: var(--primary);
    transition: background-color 0.3s ease-in-out;
}


.nav-btn:hover {
    background-color: var(--secondary);
}

.nav-btn2:hover {
    background-color: var(--secondary);
}

.nav-btn p {
    color: var(--color);
    font-size: 2.4vh;
    font-weight: bold;
    width: 68%;
}

.nav-btn2 p {
    color: var(--color);
    font-size: 2.4vh;
    font-weight: bold;
    width: 68%;
}

.nav-btn .icon-box {
    width: 16%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn2 .icon-box {
    width: 16%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box svg {
    color: var(--color);
    fill: var(--color);
    width: 60%;
}

.info-text {
    color: var(--color);
    font-size: 2vh;
    font-family: "Ubuntu", sans-serif;
}

.green-text {
    color: var(--dark-green);
}

.disabled {
    background-color: var(--disabled);
}

.disabled:hover {
    background-color: var(--disabled);
}

.toast-container {
    position: fixed;
    right: 4vh;
    bottom: 4vh;
    width: 100%;
    max-width: 24vw;
    display: flex;
    gap: 2vh;
    flex-direction: column-reverse;
    color: white;
}

.toast {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 8vh;
    border-radius: 2vh;
    animation-name: toast-open;
    animation-duration: 200ms;
    animation-timing-function: ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 15px;
}

.sucess {
    background-color: var(--notification-green);
}

.warning {
    background-color: var(--notification-yellow);
}

.error {
    background-color: var(--notification-red);
}

.info {
    background-color: var(--notification-blue);
}

.red-btn {
    border: none;
    display: flex;
    width: 16%;
    align-items: center;
    justify-content: space-between;
    height: 6vh;
    cursor: pointer;
    border-radius: 0.8vh;
    background-color: white;
    transition: background-color 0.3s ease-in-out;
}


.red-btn:hover {
    background-color: var(--notification-red);
}

.red-btn p {
    color: var(--color);
    font-size: 1.6vh;
    font-weight: bold;
    width: 68%;
}

.red-btn .icon-box {
    width: 24%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.red-btn .icon-box svg {
    width: 48%;
}

.purple-btn {
    border: none;
    display: flex;
    width: 16%;
    align-items: center;
    justify-content: space-between;
    height: 6vh;
    cursor: pointer;
    border-radius: 0.8vh;
    background-color: white;
    transition: background-color 0.3s ease-in-out;
}


.purple-btn:hover {
    background-color: var(--secondary);
}

.purple-btn p {
    color: var(--color);
    font-size: 1.6vh;
    font-weight: bold;
    width: 68%;
}

.purple-btn .icon-box {
    width: 24%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purple-btn .icon-box svg {
    width: 48%;
}

.green-btn {
    border: none;
    display: flex;
    width: 16%;
    align-items: center;
    justify-content: space-between;
    height: 6vh;
    cursor: pointer;
    border-radius: 0.8vh;
    background-color: white;
    transition: background-color 0.3s ease-in-out;
}


.green-btn:hover {
    background-color: var(--notification-green);
}

.green-btn p {
    color: var(--color);
    font-size: 1.6vh;
    font-weight: bold;
    width: 68%;
}

.green-btn .icon-box {
    width: 24%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.green-btn .icon-box svg {
    width: 48%;
}

.toast-container {
    z-index: 10;
}

.toast .toast-content {
    display: grid;
    grid-template-columns: 2vw auto;
    align-items: center;
    gap: 1.6vh;
    padding: 1.6vh;
}

.toast-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.toast-close-btn:hover {
    scale: 1.2;
    cursor: pointer;
}

.toast-icon {
    width: 4vh;
    height: 4vh;
    color: var(--color);
}

.toast-text {
    margin-left: 2vh;
}

.toast-title {
    font-family: "Ubuntu", sans-serif;
    font-size: large;
    font-weight: bold;
    margin-bottom: 0.8vh;
    color: var(--color);
}

.toast-body {
    font-family: "Ubuntu", sans-serif;
    font-size: medium;
    font-weight: bold;
    color: var(--color);
}

.toast.toast-close {
    animation-name: toast-close;
    animation-duration: 200ms;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.toast.toast-autoclose:after {
    content: "";
    width: 100%;
    height: 0.4vh;
    background-color: #45464750;
    position: absolute;
    bottom: 0;
    animation-name: toast-close-progress;
    animation-duration: 5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.input-row {
    width: 32%;
    height: 6vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-row input {
    width: 80%;
    height: 6vh;
}

.input-row button {
    width: 16%;
    border: none;
    background-color: var(--primary);
    color: var(--color);
    cursor: pointer;
    height: 100%;
    border-radius: 0.8vh;
}

.input-row button:hover {
    background-color: var(--secondary);
}

.input-row button svg {
    width: 64%;
    color: var(--color);
}

.form2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: auto;
    align-items: start;
    justify-content: start;
    gap: 4vh;
    border-bottom: 0.08vw solid var(--color);
}

.form2 input {
    width: 40%;
}

.subtitle2 {
    text-align: start;
    width: 100%;
    color: var(--color);
    font-size: 3.2vh;
}

.form-box {
    width: 60%;
    margin-bottom: 4vh;
    display: flex;
    flex-direction: row-reverse;
}

.form-box .nav-btn {
    width: 50%;
    padding: 2vh;
}

.form-box .nav-btn p {
    width: 40%;
}

.form-box .nav-btn svg {
    width: 80%;
}

.custom-file-input {
    display: none;
}

.custom-file-input-label {
    border: none;
    display: flex;
    width: 32%;
    align-items: center;
    justify-content: space-between;
    height: 8vh;
    cursor: pointer;
    border-radius: 0.8vh;
    background-color: var(--primary);
    transition: background-color 0.3s ease-in-out;
}

.custom-file-input-label:hover {
    background-color: var(--secondary);
}

.custom-file-input-label p {
    color: var(--color);
    font-size: 2.4vh;
    font-weight: bold;
    width: 68%;
    margin-left: 2vw;
}

.custom-file-input-label .icon-box {
    width: 16%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1vw;
}

.image-profile {
    width: 32%;
    aspect-ratio: 1 / 1;
    border: 0.08vw solid var(--color);
    border-radius: 8vh;
    object-fit: cover;
    display: block;
    background-color: #f0f0f0;
}

.app-icon {
    width: 24%;
    aspect-ratio: 1 / 1;
    border: 0.08vw solid var(--color);
    border-radius: 2vh;
    object-fit: cover;
    display: block;
    background-color: #f0f0f0;
}

.form3 {
    display: flex;
    flex-direction: column;
    padding: 2vh;
    gap: 2vh;
    width: 100%;
    border-radius: 2vh;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

textarea {
    height: 26vh;
    width: 100%;
    padding: 0.4%;
    color: var(--color);
    font-size: 2vh;
    border: none;
    font-family: "Ubuntu", sans-serif;
    resize: none;
    border-radius: 2vh;
    box-sizing: border-box;
    padding: 2vh;
}

textarea::placeholder {
    color: var(--color);
    font-size: 2vh;
    font-family: "Ubuntu", sans-serif;

}

textarea:focus {
    border: none;
    outline: none;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 2vh;
}

.end-box {
    display: flex;
    align-items: center;
    justify-content: end;
}

.text-info {
    text-align: start;
    width: 100%;
    color: var(--color);
    font-size: 2.4vh;
}

.center-input {
    text-align: center;
}

.center-input::placeholder {
    text-align: start;
}

.rezize {
    field-sizing: content;
    width: auto;
}

.blank-btn {
    background-color: white;
}

.otp-container {
    width: 32vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2vh;
    column-gap: 2vh;
    place-items: center;
    padding-top: 2vh;
    padding-bottom: 2vh;
    border-radius: 0.8vh;
}

.otp-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    border: 2px solid var(--color);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
}

.otp-input:focus {
    border-color: var(--dark-green);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.otp-input::placeholder {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.importante {
    color: var(--red);
    width: fit-content;
    margin-right: 0.8vh;
}

.row {
    display: flex;
    width: 100%;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

.nav {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    height: 24vh;
    border-bottom: var(--color) solid 0.08vw;
}

.nav-left {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vh;
}

.nav-left button {
    width: 8vh;
    height: 8vh;
    background-color: var(--primary);
    border: none;
    border-radius: 1.6vh;
}

.nav-left button:hover {
    background-color: var(--secondary);
}

.nav-left button svg {
    color: var(--color);
    width: 60%;
}

.nav-right button {
    width: 8vh;
    height: 8vh;
    background-color: var(--primary);
    border: none;
    border-radius: 1.6vh;
}

.nav-right button:hover {
    background-color: var(--secondary);
}

.nav-right button svg {
    color: var(--color);
    width: 60%;
}

.nav-logo {
    width: 100%;
}

.nav-center {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nav-right {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vh;
}

.nav-btn, .nav-btn2, .red-btn, .purple-btn, .green-btn {
    /* Aplicamos la opción 1 por defecto */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease; /* Para que el cambio sea suave */
}

.nav-btn:hover, .nav-btn2:hover, .red-btn:hover, .purple-btn:hover, .green-btn:hover {
    /* Se eleva un poquito más al pasar el mouse */
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.nav-btn:active, .nav-btn2:active, .red-btn:active, .purple-btn:active, .green-btn:active {
    /* Se "hunde" al hacer click */
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.row2 {
    display: flex;
    width: 100%;
    align-items: start;
    justify-content: start;
    flex-direction: row;
    gap: 2vh;
}

.row3 {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: start;
    align-items: start;
    gap: 2vh;
}

.app-card-dev {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vh;
    padding: 2vh;
    border-radius: 0.8vh;
    width: 32%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.body-text {
    font-family: "Ubuntu", sans-serif;
    font-weight: 200;
}

.to-column {
    display: flex;
    gap: 2vh;
    flex-direction: row;
    width: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 4vh;
    gap: 4vh;
    overflow-y: scroll;
    width: 100vw;
    height: 100vh;
}

.container h1, h2, h3, p {
    font-family: 'Ubuntu', sans-serif;
}

ul {
    list-style: none;
}

section{
    margin-left: 2vw;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: var(--secondary-dark);
}

.margin {
    margin-left: 2vw;
}

footer {
    display: none;
}

.pay-img {
    width: 60%;
}

@keyframes toast-open {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes toast-close {
    from {
        transform: translateX(0px);
    }

    to {
        transform: translateX(calc(100% + 4vh));
    }
}

@keyframes toast-close-progress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

@keyframes scale-down {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(0.4);
    }
}

@media (min-width: 768px) and (max-width: 1200px) {

    body {
        overflow-y: auto;
    }
    
    .phone-and-tablet{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav {
        display: flex;
    }

    .left {
        display: none;
        overflow-y: hidden;
    }

    .right {
        overflow-y: hidden;
        width: 100vw;
        height: auto;
        min-height: 60vh;
    }

    .right2 {
        width: 100vw;
        height: auto;
        overflow-y: hidden;
        min-height: 60vh;
    }

    .nav-btn {
        width: 54%;
    }

    .nav-btn2 {
        width: 54%;
    }

    .nav-btn .icon-box {
        width: 12%;
    }

    .nav-btn2 .icon-box {
        width: 12%;
    }

    input {
        width: 54%;
    }

    .input-row {
        width: 54%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .input-row button {
        display: flex;
        align-self: center;
        justify-content: center;
    }

    .input-row button svg {
        width: 60%;
    }

    .form2 {
        width: 100%;
    }

    .form2 img {
        width: 60%;
    }

    .form-box {
        width: 100%;
    }

    .custom-file-input-label {
        width: 60%;
    }

    .form2 input {
        width: 60%;
    }

    .otp-container {
        width: 60vw;
    }

    .row {
        align-items: start;
        justify-content: start;
        flex-direction: column;
    }

    .toast-container {
        max-width: 94vw;
        right: 3vw;
        bottom: 2vh;
    }

    .nav-btn, .nav-btn2 {
        width: 32%;
    }

    .app-card-dev {
        width: 48%;
    }

    footer {
        display: flex;
    }

.row3{
    flex-direction: column;
}

article {
    height: auto;
}

.red-btn, .purple-btn, .green-btn {
    width: 50%;
}

.pay-img {
    width: 100%;
}

}

@media (max-width: 767px) {

    body {
        overflow-y: auto;
    }
    
    .phone-and-tablet{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .app-card-dev {
        width: 80%;
    }
    
    .app-icon {
        width: 40%;
    }

    .to-column {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

.otp-container {
        width: 60vw;
    }

    .nav {
        display: flex;
    }

    .left {
        display: none;
    }

    .right {
        overflow-y: hidden;
        width: 100vw;
        height: auto;
        min-height: 60vh;
    }

    .right2 {
        width: 100vw;
        height: auto;
        overflow-y: hidden;
        min-height: 60vh;
    }

    .nav-btn {
        width: 62% !important;
    }

    .nav-btn2 {
        width: 62% !important;
    }

    input {
        width: 62% !important;
    }

    .input-row {
        width: 62% !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .input-row button {
        display: flex;
        align-self: center;
        justify-content: center;
    }

    .input-row button svg {
        width: 80%;
    }

    .form2 {
        width: 100%;
    }

    .form2 img {
        width: 80%;
    }

    .form-box {
        width: 100%;
    }

    .custom-file-input-label {
        width: 80%;
    }

    .form2 input {
        width: 80%;
    }

    .row {
        align-items: start;
        justify-content: start;
        flex-direction: column;
    }

    .toast-container {
        max-width: 94vw;
        right: 3vw;
        bottom: 2vh;
    }

    .nav-btn, .nav-btn2 {
        width: 32%;
    }

    footer {
        display: flex;
    }

.row3 {
    flex-direction: column;
}

article {
    height: auto;
}

.red-btn, .purple-btn, .green-btn{
    width: 50%;
}

.pay-img {
    width: 100%;
}

}