/* ----------------------------------- Toast Notifications ------------------------------ */

.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: rgba(77, 77, 77, 0.95); /* Fondo claro para que pegue con los quotes */
    color: #e0e0e0;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    border-left: 5px solid #454545; /* Línea de acento oscuro */
    min-width: 200px;
    animation: slideIn 0.3s ease, fadeOut 0.5s ease 2.5s forwards;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    to { opacity: 0; transform: translateY(10px); }
}

/* ----------------------------------- End Toast ---------------------------------------- */


:root {
    --btn-size: 45px;
    --btn-size-hover: 55px;
 }

       /* -----------------------------------Body------------------------------ */
    body {
        margin: 0;
        background: #696969; 
        font-family: Arial, sans-serif;
    }
    /* -----------------------------------Header------------------------------ */

    header {
        display: flex;
        align-items: center;
        padding: 10px 20px;
        height: 120px; 
        background: #5e5e5e; 
        user-select: none;
    }

    header img {
        height: 90px; 
        width: auto;
        margin-right: 15px;
        pointer-events: none;

    }

    header h2 {
        color: #dcdcdc; 
        font-size: 40px;
        margin: 0;
        font-weight: 400;
        margin-top: 40px;
    }

/* ----------------------------------- Back Home Link ------------------------------ */
.backhome-link {
    margin-left: auto; 
    text-decoration: none;
    display: flex;
}

.backhome {
    display: flex;
    align-items: center;
    color: #dcdcdc;
    padding: 5px 15px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.backhome img {
    height: 40px; 
    margin-right: 40px;
}

.backhome h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.backhome:hover {
    border-color: rgba(255, 255, 255, 0.3);
    text-decoration: underline;
}

.backhome:active {
    border-color: rgba(255, 255, 255, 0.1);
    transform: scale(0.98);
}
/* --------------------------------- End Back Home ---------------------------------- */

.buttoms-accounts {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}


/* -----------------------------------Content Wrapper------------------------------ */

.content-wrapper {
    width: 100%;
    display: flex;
    justify-content: left;
    padding: 40px 0;
}

/* Contenido centrado */
.content {
    width: 80%;
    max-width: 900px;
    margin-left: 20px;
    margin-top: 60px;
}

/* Texto principal */
.content p {
    color: #dcdcdc;
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.content h2 {
    color: #eee9e9;
    font-size: 32px;
    margin: 0;
    font-weight: 400;
}

.content h3 {
    color: #00ff22;
    text-decoration: underline;
    font-size: 22px;
    margin: 0;
    font-weight: 400;
     display: inline-block;
    vertical-align: middle;
}

.downloadsbt {
    height: 39px;
    width: 80px;
    pointer-events: none;
    display: inline-block;
    vertical-align: middle;
    
}

.downeyobj {
   background-color: #818181;
   height: 20px;
}



/* ------------------------------- Gallery ----------------------------------- */
.gallery {
    
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #4e4e4e;
}

.gallery-viewer img {
    
    max-width: calc(400vw - 1px);   /* margen de 80px por lado */
    max-height: calc(400vh - 1px);  /* margen de 80px arriba y abajo */
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
    object-fit: contain;
}


/* ------------------------------ Controls ----------------------------------- */
.gallery-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.gallery-controls button {
    background: rgba(0,0,0,0.4);
    border: none;
    color: white;
    font-size: 32px;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.2s ease;
}

.gallery-controls button:hover {
    background: rgba(0,0,0,0.6);
}

/* ------------------------------- Overlay ----------------------------------- */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px); 
    z-index: 1000; 
}

.overlay img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain; 
    border-radius: 4px; 
    cursor: zoom-out; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); 
}
/* ---------------------------- End Overlay ---------------------------------- */

/* ----------------------------------- Youtube Video ------------------------------ */

.youtube-video {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 90px;
    background-color: #797979;
    scale: 1.2;
}

/* ----------------------------------- End Youtube Video ------------------------------ */

/* -----------------------------------Plastic download btn------------------------------ */

.btn-plastic {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(180deg, #333333 0%, #1a1a1a 100%);
    border: 1px solid #454545;
    border-radius: 4px; 
    padding: 2px 8px;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 2px 4px rgba(0,0,0,0.3);
    height: 90px; 
    width: 845px;
    transition: filter 0.2s;
}

.btn-plastic:hover {
    filter: brightness(1.2);
}

.plastic-icon img {
    width: 54px;
    height: 54px;
    display: block;
    margin-left: 16px;
}

.plastic-separator-v {
    width: 1px;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 8px;
    margin-left: 20px;
}

.plastic-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top-text, .bottom-text {
    color: #ffffff;
    font-family: sans-serif;
    font-size: 17px;
    font-weight: regular;
    line-height: 1;
}

.plastic-separator-h {
    width: 700px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 2px 0;

}
/* -----------------------------------End Plastic download btn------------------------------ */

/* -----------------------------------Requirements Area------------------------------ */

.requirements-wrapper {
    width: 100%;
    display: flex;
    justify-content: left;
    padding: 40px 0;
    margin-top: 60px;
}

.requirements-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alineado a la derecha */
    gap: 10px;
}

.req-quote {
    display: flex;
    align-items: center;
    background-color: #b9b9b9; /* Fondo claro */
    padding: 0.5em 1em;
    border-radius: 4px; /* Estilo redondeado */
    width: fit-content;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.req-text {
    color: #333333; /* Texto gris casi oscuro */
    font-size: 16px;
    font-weight: 500;
    margin-right: 12px;
    user-select: none;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    transition: transform 0.1s;
}

.copy-btn:hover {
    transform: scale(1.1);
}

.copy-btn img {
    width: 16px;
    height: 16px;
    filter: invert(0.2); /* Ajuste para que el icono se vea sobre el fondo claro */
}

/* -----------------------------------End Requirements Area-------------------------- */