/********************************************************************************************************************************/
/*                                                        GENERAL                                                               */
/********************************************************************************************************************************/

html {
    background: url(./fno.jpg) center/cover no-repeat;
}

html,
body {
    margin: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
    overflow-x: hidden;
    padding: 0;
    padding: 0 100px;
    cursor: url('./alien.png') 25 32, auto;
    box-sizing: border-box;
    width: 100%;
}

main {
    flex: 1;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/********************************************************************************************************************************/
/*                                                          CARD ALIEN                                                          */
/********************************************************************************************************************************/

.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 70px;
    margin-top: 100px;
}

.card {
    position: relative;
    width: 500px;
    height: 400px;
    background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card:hover {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card .front-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;

}

.card__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    background-color: #fff;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card:hover .card__content {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
}

.card__title {
    margin: 0;
    font-size: 60px;
    color: #d30d0d;
    font-weight: 700;
}

.card__description {
    margin: 10px 0 0;
    font-size: 20px;
    color: #000000;
    line-height: 1.4;
}

/********************************************************************************************************************************/
/*                                                        WELCOME CONTAINER                                                     */
/********************************************************************************************************************************/

.welcome-container {
    width: 80%;
    max-width: 600px;
    margin: 100px auto;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

.welcome-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.welcome-container p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.welcome-container .button {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 0.7em 2em;
    border: 3px solid #FF0072;
    border-radius: 2px;
    color: #FF0072;
    text-decoration: none;
    transition: all 0.3s ease;
}

.welcome-container .button:hover {
    background-color: #7a002f;
    transform: scale(1.05);
}

.welcome-container .button:active {
    transform: scale(0.95);
}

/********************************************************************************************************************************/
/*                                                          BUTONES INICIO                                                      */
/********************************************************************************************************************************/

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.button {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 0.7em 2em;
    border: 3px solid #FF0072;
    border-radius: 2px;
    color: #FF0072;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #FF0072;
    color: white;
}

.button:active {
    transform: scale(0.9);
}

/********************************************************************************************************************************/
/*                                                   "TXT ACCESSOS RAPIDOS"                                                     */
/********************************************************************************************************************************/

.quick-access {
    text-align: center;
    margin-top: 5px;
}

.quick-access h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

/********************************************************************************************************************************/
/*                                                       PAGINAS DE INTERNACIONAL                                               */
/********************************************************************************************************************************/

.internacional-container {
    width: 90%;
    max-width: 600px;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.internacional-container h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 20px 0;
    background: linear-gradient(45deg, #FF0072, #f89b29);
    background-clip: text;
    color: transparent;
    text-align: center;
}

.internacional-container p {
    font-size: 18px;
    margin: 0 0 20px;
    color: #fff;
    line-height: 1.6;
    text-align: center;
}

/********************************************************************************************************************************/
/*                                                         PAGINA ERROR                                                         */
/********************************************************************************************************************************/

.error-container {
    width: 90%;
    max-width: 800px;
    padding: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 100px 120px rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    margin-bottom: 70px;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error-container h1 {
    font-size: 100px;
    font-weight: bold;
    margin: 0 0 80px 0;
    background: linear-gradient(45deg, #FF0072, #f89b29);
    background-clip: text;
    color: transparent;
}

.error-container p {
    font-size: 24px;
    margin: 80px 0;
    text-align: center;
}

.error-container .button {
    margin-top: 30px;
    color: #fff;
    border-color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
}

.error-container .button:hover {
    background-color: #FF0072;
}

/********************************************************************************************************************************/
/*                                                    PAGINA OPERACIÓN BIKINI                                                   */
/********************************************************************************************************************************/

.card-new {
    --background-new: linear-gradient(to left, #ff4d97b0 0%, #c503649f 160%);
    width: 650px;
    height: 550px;
    padding: 30px;
    border-radius: 1rem;
    background: var(--background-new);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 160px;
}

.card-new::after {
    position: absolute;
    content: "";
    top: 30px;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    transform: scale(0.85);
    filter: blur(20px);
    background: var(--background-new);
    transition: opacity .5s;
}

.card-info-new {
    background: #1d1d1d;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: .7rem;
    overflow: visible;
    font-size: 1.7em;
}

.card-new .title {
    font-weight: bold;
    letter-spacing: .1em;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.ul_m8 {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.li_m8 {
    font-size: 1.1em;
    color: #ff009d;
    text-align: left;
}

._m8 {
    font-size: 1.3em;
    font-weight: bold;
    color: #4CAF50;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    width: 80%;
    margin: 20px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

._m8:hover {
    transform: scale(1.05);
}

.error_m8 {
    color: red;
    font-weight: normal;
    text-align: center;
    margin-top: 15px;
    font-size: 1em;
}

/********************************************************************************************************************************/
/*                                                 ESTILOS FOOTER                                                               */
/********************************************************************************************************************************/

footer {
    text-align: center;
    padding: 16px;
    background-color: #171717;
    color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 98px;
    width: 694px;
    font-size: 22px;
}

footer p {
    margin: 0;
    font-weight: bold;
}

footer a {
    color: #ff0f7b;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/********************************************************************************************************************************/
/*                                                        MEDIA QUERIES                                                         */
/********************************************************************************************************************************/

@media (max-width: 767px) {

    html,
    body {
        padding: 0 20px;
    }

    .welcome-container {
        width: 100%;
        padding: 20px;
        box-shadow: none;
    }

    .welcome-container h1 {
        font-size: 28px;
    }

    .welcome-container p {
        font-size: 16px;
    }

    .welcome-container .button {
        padding: 12px 25px;
        background-color: #FF0072;
        border-color: #FF0072;
        color: white;
        width: 100%;
        box-sizing: border-box;
    }

    .welcome-container .button:hover {
        background-color: #700032;
        border-color: #FF0072;
    }

    .welcome-container .button:active {
        transform: scale(0.9);
        background-color: #6b0030;
        border-color: #FF0072;
    }

    .button-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .card-new {
        width: 100%;
        height: auto;
    }

    ._m8 {
        width: 100%;
        padding: 12px;
    }

    ._m8 p {
        font-size: 1em;
    }

    .error_m8 {
        font-size: 0.9em;
    }

    .quick-access h2 {
        font-size: 1.9em;
        color: #000;
    }

    footer {
        font-size: 0.8em;
        padding: 12px 10px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    body {
        padding: 0 50px;
    }

    .welcome-container {
        padding: 25px;
    }

    .card-container {
        margin-top: 80px;
        margin-bottom: 60px;
    }

    .card {
        width: 400px;
        height: 350px;
    }

    .button-container {
        gap: 15px;
    }

    .quick-access h2 {
        font-size: 1.9em;
        color: #000;
    }

    footer {
        font-size: 0.8em;
        padding: 12px 10px;
    }
}

@media (max-width: 1024px) {
    .button-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 15px;
    }

    .button-container .button {
        width: calc(33.33% - -92px);
        padding: 12px 0;
        background-color: #FF0072;
        border-color: #FF0072;
        color: white;
    }

    footer {
        font-size: 1.0em;
        padding: 32px 16px;
        width: 70%;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .button-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 50px;
        width: 100%;
        box-sizing: border-box;
    }

    .button-container .button {
        flex: 1 1 30%;
        padding: 12px 25px;
        background-color: #FF0072;
        border-color: #FF0072;
        color: white;
        box-sizing: border-box;
        text-align: center;
    }

    .button-container .button:hover {
        background-color: #700032;
    }

    .button-container .button:active {
        transform: scale(0.95);
        background-color: #6b0030;
    }
}

@media (min-width: 1290px) and (max-width: 1476px) {
    .button-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 50px;
        width: 100%;
        box-sizing: border-box;
    }

    .button-container .button {
        flex: 1 1 30%;
        padding: 12px 25px;
        background-color: #FF0072;
        border-color: #FF0072;
        color: white;
        box-sizing: border-box;
        text-align: center;
        max-width: calc(33.33% - 20px);
    }

    .button-container .button:hover {
        background-color: #700032;
    }

    .button-container .button:active {
        transform: scale(0.95);
        background-color: #6b0030;
    }
}