/* Estilos generales */
@import './variables.css';

.error-page-container {
    background: var(--bg-gradient2);
    width: 100%;
    height: 100vh;
}

.error-content {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 2rem 2rem; /* p-8 */
    gap: 2rem; /* space-y-8 */
    height: 100vh;
}

/* Sección de texto (lado izquierdo) */
.error-text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem 0rem 5rem;
}

.main-title {
    font-size: 6rem;
    font-weight: 900; /* font-extrabold */
    color: white; /* text-gray-800 */
    height: 100%;
}

.subtitle {
    font-size: 2.25rem; 
    font-weight: 500; /* font-bold */
    color: var(--terciary-color2); /* text-yellow-500 */
    margin-bottom: 1.5rem; /* mb-6 */
    margin-top: -20px;
}

.description {
    color: var(--panel-background);
    font-size: 1.125rem; /* text-lg */
    padding-bottom: 1rem;
}

.options-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem; /* space-y-4 */
    margin-bottom: 2rem; /* mb-8 */
}

.option-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--panel-background); /* text-gray-700 */
    font-size: 1.125rem; /* text-lg */
}

.option-icon {
    height: 1.5rem; /* h-6 */
    width: 1.5rem; /* w-6 */
    color: var(--terciary-color2); /* text-yellow-500 */
    margin-right: 1rem; /* mr-4 */
}


.support-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem; /* mt-8 */
}
.support-button {
    background-color: var(--terciary-color2); /* bg-yellow-500 */
    color: #ffffff;
    font-weight: 600; /* font-semibold */
    padding: 1rem 2rem; /* py-4 px-8 */
    border-radius: 9999px; /* rounded-full */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-lg */
    transition: all 0.3s ease; /* transition-all duration-300 */
    border: none;
    cursor: pointer;
    height: 50px;
    width: 200px;
}

.support-button:hover {
    background-color: #d97706; /* hover:bg-yellow-600 */
}

/* Sección de imagen (lado derecho) */
.error-image-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.error-image {
    height: auto;
    border-radius: 1.5rem; /* rounded-3xl */
    max-width: 28rem; /* max-w-md */
    padding: 1rem 4rem 0rem 0rem;
}
 .mobile{
    display: none;
 }
/* Media Queries para responsividad */

/* Tablets y dispositivos mayores (desde 768px) */
@media (max-width: 768px) {

    .mobile {
        display: block;
    }
    .escritorio {
        display: none;
    }

    .error-page-container {
        background: var(--bg-gradient2);
        width: 100%;
        height: 100vh;
    }

    .error-content {
        display: flex;
        flex-flow: column wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 2rem; /* space-y-8 */
        padding-top: 8rem;
        height: 100vh;
    }

    .error-text-section {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0rem;
    }
    .main-title {
        font-size: 3rem;
        height: auto;
    }

    .subtitle {
        font-size: 2rem;
        margin-bottom: 0rem;
    }

    .description{
        padding-top: 1rem;
    }
    .options-list{
        margin: 0rem;
        gap: 0rem;
    }

    .error-image-section {
        display: flex;
        align-items: center;
        justify-content: center;
        height: auto;
        padding: 0rem;
    }

   .error-image {
        height: auto;
        width: 300px;  
        padding: 0rem;
   } 
}