:root {
    --principal: #eccfba;
    --secundario: black;
    --link: rgb(234, 169, 47);
    --ocre: rgb(187, 98, 30);
    --clarogris: #eaeaea;
    --neutrogris: #bebebe;
    --secTransparente: rgba(0, 0, 0, 0.50);
    --prinClaro: rgb(250, 221, 199);
}

* {
    margin: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* overflow-x: hidden; */
}

body {
    background-color: var(--clarogris);
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--secundario);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, p {
    margin: 0px;
}

a {
    color: var(--principal);
    text-decoration: none;
}

hr {
    opacity: 1;
}

@font-face {
    font-family: Inlanders;
    src: url("Inlanders\ Demo.otf");
}

@font-face {
    font-family: MilestoneBrush;
    src: url("MilestoneBrush.otf");
}

.on {
    display: block;
}

.off {
    display: none;
}

.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--secundario);
    color: var(--principal);
    z-index: 9999;
    top: 0;
}

.progress-bar-container {
    width: 80%;
    height: 20px;
    background-color: var(--clarogris);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--principal);
    border-radius: 10px;
    transition: width 0.4s ease;
}

/* Menu Desktop*/

.menu {
    height: 50px;
    width: 100%;
    padding: 0 30px;

    position: fixed;
    top: 0px;
    z-index: 10;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: var(--secundario);
    border-bottom: solid var(--principal) 1px;
    box-shadow: 0px 3px 5px var(--secundario);
}

.menu .submenu {
    display: flex;
    justify-content: flex-end;
    width: 80%;
}
.menu .submenu a{
    margin-left: 30px;
}

.menu a {
    color: var(--principal);
    text-decoration: none;
    cursor: pointer;
}

.menu a:hover {
    color: var(--link);
    text-decoration: none;
    /* font-weight: bold; */
}

.menu .img {
    align-self: start;
    margin-top: 10px;
}

.menu .img img {
    box-shadow: 0 2px 5px var(--secundario);
}

/* Menu Samll */

.dropdown-toggle::after {
    display: none;
}

.menuS {
    width: calc(100%);
    height: 50px;
    background-color: var(--secundario);
    display: flex;
    justify-content: space-between;
    border-bottom: solid var(--principal) 2px;
    padding: 5px;
    position: fixed;
    top: 0;
    z-index: 99;
}

.menuS .img {
    z-index: 999;
}

.menuS .icon {
    height: 100%;
    background-color: transparent;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menuS .icon button {
    background-color: transparent;
    border: 0px;
    height: 100%;
    width: 40px;
}

.menuS .icon ul {
    background-color: var(--secundario);
    width: 100vw;
    z-index: 998;
}

.menuS .icon ul li a{ 
    color: var(--principal);
    padding: 15px 20px;
    text-align: center;
    font-size: 24px;
}
.menuS .icon ul li:hover a{ 
    color: var(--secundario);
    background-color: var(--prinClaro);
}


#inicio {
    width: 100%;
    height:calc(100vh - 50px);
    margin-top: 50px;
    padding: 50px;

    background: var(--secTransparente);
    background-blend-mode: overlay;
    background-attachment: fixed;
    background-image: url("img2/Fondo-1-Verde.jpg");
    background-position: top;
    background-size: contain;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: s;
    align-content: center;

    position: relative;
    overflow: hidden;
}

#inicio .titulo {
    width: 100%;
    height: 100%;
    border: 2px  var(--principal) dotted;
    /* backdrop-filter: blur(3px); */
    color: var(--principal);
    /* display: flex;
    flex-direction: column;
    text-align: center; */
    /* flex-wrap: wrap; */
    justify-content: center;
    justify-items: center;
    align-items: center;
    backdrop-filter: blur(1px) grayscale(.5);
    
}

.yoimg {
    width: 200px;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 50%;
    margin-bottom: 15px;
}

.titulo .center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center ;
}

.titulo .center hr{
    width: 100%;
}

#inicio img.sign {
    position: absolute;
    bottom: -30px;
    right: -30px;
    transform: translateX(50%) rotate(-15deg); 
    transform-origin: bottom;
    height: 400px;
    width: auto;
    animation: rotate infinite 2s ease-in-out;
    filter: drop-shadow(5px 5px 5px black);
}

@keyframes rotate {
    0% {
        transform: translateX(30%) rotate(-30deg); 
    }
    50% {
        transform: translateX(30%) rotate(-10deg); 
    }
    100% {
        transform: translateX(30%) rotate(-30deg); 
    }
}

#inicio .imagen {
    height: 200px;
    width: 200px;

    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;

    border: solid 3px var(--ocre);
    box-shadow: 5px 5px 10px gray;
}

#inicio .imagen img {
    width: auto;
    height: 100%;
}

/* ============================== */
/* OC's */
/* ============================== */
.charactersheet {
    width: 80%;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
}

.charactersheet summary {
    text-align: left;
}

.charactersheet .perfil {
    height: 300px;
    width: 300px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0px 50px 20px 0px;
    align-self: self-start;
}

.charactersheet .perfil img {
    height: 100%;
    width: auto;
}

.charactersheet .contenido {
    height: auto;
    padding-left: 20px;
    width: calc(100% - 350px);
}
.charactersheet .contenido{
    text-align: left;
}
.charactersheet .contenido h2{
    text-align: center;
}
.charactersheet .contenido p{
    text-align: justify;
}
.charactersheet .atributos {
    max-width: 300px;
}
.charactersheet .extra {
    width: 100%;
}


/* ============================ */

.seccionOC {
    margin-top: 60px;
}

.seccionClara {
    background-color: var(--secundario);
}

.seccionClara .imagenc{
    /* height: max-content; */
    display: flex;
    justify-content: center;
    position: relative;
}

.seccionClara img {
    height: 80vh;
    width: auto;
    z-index: 3;
}

.seccionClara span.grander {
    font-family: Inlanders;
    font-size: 50vh;
    color: rgba(255, 255, 255, 0.532);
    position: absolute;
    top: 0px;
    text-align: center;
    z-index: 1;
}

.seccionClara .informacion {
    text-align: justify;
    display: flex;
    align-self: center;
    justify-content: center;
    flex-direction: column;
    z-index: 5;
}
.seccionClara .informacion h2 {
    font-size: 2rem;
    font-family: Inlanders;
    text-align: center;

    color: #4ace8c;
}

.seccionClara.aurora .informacion h2 {
    color: #c3632e;
}

.seccionClara .informacion h4, .seccionClara .informacion summary{
    font-family: Inlanders;
    font-size: 1.5rem;
}

.seccionClara .informacion h2 span {
    color: white;
    
}

.seccionClara hr {
    border: none; 
    height: 2px; 
    color: var(--principal); 
    background-color: var(--principal);

}

.seccionClara .informacion li {
    color: #4ace8c;

    /* Ambos */
    font-size: 24px;
    letter-spacing: 1px;
    position: relative;
    cursor: pointer;
}

.seccionClara .informacion li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #73737396;
    z-index: -1;
    transition: .5s all ease-out;
    
}

.seccionClara .informacion li:hover::after {
    width: 50%;
}

.seccionClara.aurora .informacion li {
    color: #c3632e;
}

.seccionClara .informacion li b {
    color: white;
    letter-spacing: 0px;
}

a.hojaboton {
    width: fit-content;
    margin: 0 auto;
    transition: all .2s ease;
}

.hojaboton button {
    background-color: var(--clarogris);
    border: 0;
    color: var(--secundario);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
}

a.hojaboton:hover button {
    background-color: var(--principal);
}

.stickya {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: calc(10vh); /* Ajusta este valor según necesites */
    height: fit-content;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}



/* ============================== */
/* Galeria */
/* ============================== */

.bgprin {
    background-color: var(--secTransparente);
    background-blend-mode: overlay;
    background-image: url("img2/Fondo-1-Verde.jpg");
    background-attachment: fixed;
    background-size: cover;
    box-shadow: 0 0 10px black inset;
}

.bgprin * {
    color: var(--clarogris) !important;
}
.bgsec {
    background-color: var(--secTransparente);
    background-blend-mode: overlay;
    background-image: url("img2/Fondo-2-Pantano.gif");
    background-attachment: fixed;
    background-size: cover;
    box-shadow: 0 0 10px black inset;
}

.bgprin * {
    color: var(--clarogris) !important;
}

.sectionGral {
    color: var(--principal);
    height: auto;
    width: 100%;
    /* padding: 30px; */

    /* background-color: var(--principal); */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sectionGral .text {
    width: 100%;
    padding: 50px 0 0px 0;
    font-family: Inlanders;
}

.sectionGral .box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.sectionGral .box div.imagen {
    /* min-width: 299px;
    height: 300px;
    max-width: 310px;
    width: 300px !important; */
    /* margin: 30px; */
    padding: 0;

    max-height: 300px;

    overflow: hidden;
    display: none;
    justify-content: center;
    align-items: center;
    
    transition: .5s flex ease;
    filter: grayscale(.3);
    border: dotted transparent 4px;
}

.sectionGral .box div.imagen img {
    width: 100%;
    height: auto;
}

/* .sectionGral .box a img.horizontal {
    width: auto;
    height: 100%;
} */


.sectionGral .box .imgGaleria {
    display: none;
}

.sectionGral .box .imgGaleria.imgActive {
    display: flex;
}


.sectionGral .box .blurActive::before {
    content: "NSFW";
    display: flex;
    color: var(--secundario);
    justify-content: center;
    align-items: center;
    font-size: 55px;
    backdrop-filter: blur(50px);
    /* background-color: red; */
    width: 100%;
    height: 100%;
    position: absolute;
    transition: backdrop-filter .5s ease;
}

.sectionGral .box .blurActive:hover::before {
    content: "Puerco/a";
    font-size: 35px;
    backdrop-filter: blur(35px);
    /* background-color: red; */
    width: 100%;
    height: 100%;
    position: absolute;
}

.sectionGral .box div.imagen:hover {
    cursor: pointer;
    filter: grayscale(0);
    /* flex: 1; */
    border: dotted var(--principal) 4px;
}


/* ============================== */

/* Precios */

.titleCostos {
    background-color: var(--prinClaro);
    color: var(--secundario);
    text-align: center;
    padding: 50px 50px 0 50px;
}

.CardsPrice {
    width: 100%;
    padding: 30px;

    background-color: var(--prinClaro);

    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;

    
}

.CardsPrice .cardD{
    width: 300px;
    border: solid var(--secundario) 1px;

    border-radius: 20px;
    overflow: hidden;

    margin: 20px 20px;
}
.CardsPrice .cardD .img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.CardsPrice .cardD .img img{
    width: auto;
    height: 100%;
}

/* Tablas */
table {
    border: 1px solid var(--clarogris);
    width: 100%;
    border-collapse: collapse;
    color: var(--clarogris);
}

thead {
    background-color: var(--clarogris);
}

th, td {
    border: 1px solid var(--clarogris);
    padding: 8px;
    text-align: center;
    /* background-color: var(--clarogris); */
}
th {
    background-color: var(--clarogris);
    color: var(--secundario);
}
tr:hover td {
    background-color: var(--prinClaro);
    color: var(--secundario);
}
td:hover {
    background-color: var(--principal) !important;
    color: var(--secundario);
}


footer div h4

footer a {
    color: var(--principal);
}

footer ul {
    list-style-type: none;
}


.editx {
    height: 100vh !important;
}

.moveScroll {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    height: 100%;
    width: 100%;
    position: relative;
    /* display: flex;
    justify-content: center;
    align-items: center; */
}

.offcanvas-header {
    display: flex;
    align-items: center;
    flex-direction: column;
}


#imageBig{
    width: auto;
    height: 100%;
    /* width: 100%;
    height: auto; */
}

.btnzoom {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* background-color: red; */
}

.zoom {
    background-color: var(--secundario);
    color: var(--principal);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    font-size: 25px;
    font-weight: bold;

    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    transition: all .2s ease;
}

.zoom:hover {
    background-color: var(--secTransparente);
}

.zoomout::after {
    content: ":)";
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.zoomin::after {
    content: "(:";
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#vermas {
    font-size: 20px;
    background-color: transparent;
    color: var(--secundario);
    margin: 20px 0;
    padding: 5px 25px;
    border-radius: 5px;
    transition: all .2s ease;
    font-weight: bold;
    width: 100%;
    border: solid 1px var(--clarogris);
}

#vermas:hover {
    background-color: var(--secTransparente);
    color: var(--clarogris) !important;
    /* border: solid 3px var(--secundario); */
}



.optionsPrice {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 20px 0;
}

.optionsPrice button {
    margin: 0 15px;
    background-color: var(--principal);
    color: var(--secundario);
    border: 0;
    border-radius: 5px;
    padding: 5px 15px;
}

.optionsPrice button:hover {
    background-color: var(--link);
}

.optionsPrice button.selected {
    background-color: var(--link);
}

.redsocial {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.redsocial:hover img {
    transform: scale(1.3);
}