﻿a, body {
    color: #fff
}

input, input[type=text], textarea {
    padding: .8rem;
    margin: .5rem
}

.Boton, .BotonBlanco, .TituloSeccion, a {
    text-decoration: none
}

* {
    margin: 0;
    padding: 0
}

body {
    background: #141414;
    font-family: 'Trebuchet MS'
}

a:hover {
    color: grey
}

input[type=text], textarea {
    border-radius: .5rem;
    border: 1px solid gray
}

.Seccion {
    clear: both
}

.TituloSeccion {
    color: #f1d075;
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    max-width: 80%
}

    .TituloSeccion:hover {
        color: gray
    }

.Ficha {
    border: 1px solid silver;
    padding: 1rem;
    background-color: #fff;
    color: #484848;
    font-size: 1rem;
    border-radius: 1rem
}

.Boton, .BotonBlanco, .BotonOK {
    padding: .6rem;
    cursor: pointer
}

.Mediano {
    font-size: 1.3rem
}

.Grande {
    font-size: 1.5rem
}

.Amarillo {
    color: #f1d075
}

.Gris {
    color: #8a8a8a
}

.BotonGrisSutil a:hover, .BotonOK {
    color: #fff
}

.BordeRedondeado {
    border-radius: 1rem
}

.TablaDatos th, td {
    padding: .5rem
}

.Boton, .BotonBlanco {
    color: #fff;
    background-color: brown;
    border-radius: .5rem;
    border: 1px solid brown
}

    .Boton:hover, .BotonBlanco:hover, .BotonPanel:hover {
        background-color: #000
    }

.BotonOK {
    background-color: #8fbc8f;
    border-radius: .5rem;
    border: 1px solid #8fbc8f;
    text-decoration: none
}

.BotonGrisSutil, .BotonGrisSutil a {
    color: #696969;
    text-decoration: none
}

.BotonOK:hover {
    background-color: #fff;
    color: #000
}

.BotonGrisSutil {
    background-color: #000;
    border-radius: 3px;
    border: 1px solid #696969;
    padding: .5rem;
    cursor: pointer;
    box-shadow: 0 0 1rem #000;
    margin-left: .5rem;
    margin-bottom: .5rem;
    float: left
}

    .BotonGrisSutil:hover {
        color: silver;
        background-color: #484848
    }

.BotonSoloTexto {
    color: brown;
    padding: 1rem;
    border: 0;
    text-align: center;
    margin: 0;
    text-decoration: none;
    background-color: #fff;
    cursor: pointer
}

    .BotonSoloTexto:hover {
        text-decoration: underline
    }

.BotonPanel {
    color: #fff;
    background-color: brown;
    border-radius: .5rem;
    border: 1px solid brown;
    padding: .6rem;
    cursor: pointer;
    width: 10rem;
    height: 3rem;
    line-height: 3rem;
    margin: auto;
    text-decoration: none;
    display: block
}

.Cabecera_Desktop {
    width: 98%;
    margin: auto;
    padding: 1rem;
    position: -webkit-sticky;
    position: sticky;
    z-index: 1;
    top: 0;
    height: 3rem;
    min-height: 3rem;
    background: #141414;
    font-size: 1.3rem
}

.ContenedorPrincipal {
    width: 99%;
    margin: auto;
    clear: both;
    padding-top: .5rem;
    background-image: url('/Images/fondo25.jpg');
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: right;
    background-attachment: fixed;
}

.PiePagina {
    padding: 10px;
    text-align: center;
    margin-top: 2rem;
    background-color: #221f1f
}

@media (min-width:1000px) {
    html {
        font-size: calc(7px + .3vw)
    }

    .ContenidoMovil {
        display: none
    }

    .TiraImagenes {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 1.4rem;
        padding-bottom: 1rem;
    }

    .Imagen {
        border-radius: 1rem;
        width: 200px;
        max-width: 200px;
        height: 200px;
        max-height: 200px;
        position: relative;
        border: 1px solid rgba(0,0,0,.5);
        overflow: hidden;
        transition: transform 0.3s ease; /* Animación de zoom suave */
    }

        .Imagen img {
            border-radius: 1rem;
            width: 200px
        }

        .Imagen:hover {
            border: 1px solid #f1d075;
            transform: scale(1.1); /* Aumenta el tamaño al pasar el ratón */
        }

        .Imagen .TextosImagen {
            border-radius: 1rem;
            font-size: 1rem;
            visibility: visible;
            color: #fff;
            z-index: 1;
            position: absolute;
            top: 0;
            left: 0;
            width: 95%;
            padding-left: 1rem;
            padding-top: .5rem;
            padding-bottom: 1rem;
            background: linear-gradient(to bottom,#000,transparent)
        }

        .Imagen:hover > .TextosImagen {
            visibility: hidden;
            animation-name: fadeInOpacity;
            animation-iteration-count: 1;
            animation-timing-function: ease-in;
            animation-duration: .2s
        }

    .Seccion_75_25 {
        width: 100%;
        display: grid;
        grid-template-columns: 3fr 1fr;
        gap: .5rem
    }

    .Comentarios {
        width: 60%;
        margin: auto;
        padding-left: 2rem
    }
}

.Cabecera_Movil {
    position: -webkit-sticky;
    position: sticky;
    top: 0rem;
    width: 100%;
    background-color: #141414;
    padding: .5rem;
    z-index: 2;
    min-height: 3.5rem
}

.BotonMenuCabeceraMovil {
    font-size: 1.5rem;
    padding: .5rem;
    border: 1px solid #888;
    border-radius: .5rem;
    margin-top: 1rem;
}

.MenuMovil {
    display: none;
    position: fixed;
    z-index: 1;
    background-color: #000;
    border: 1px solid #888;
    border-radius: .5rem;
    width: 80%;
    min-height: 50vh;
    font-size: 2rem
}

.ContenedorPrincipalMovil {
    width: 100%;
    margin: auto;
    padding: 4.5rem .5rem .5rem;
    clear: both
}

.ImagenMovil {
    border-radius: 1rem;
    border: 1px solid #696969;
    width: 93%;
    max-width: 93%;
    padding: .5rem;
}

@media (max-width:999px) {
    html {
        font-size: calc(11px + .3vw)
    }

    .ContenidoPC, .SoloDesktop {
        display: none
    }
}

.fadein {
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: .2s
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,.4)
}

.modal-content {
    font-family: Arial,Helvetica,sans-serif;
    font-size: 13px;
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 30%
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: 700
}

    .close:focus, .close:hover {
        color: #000;
        text-decoration: none;
        cursor: pointer
    }
