@charset "UTF-8";
@font-face {
    font-family: technaSans;
    src: url(../fonts/TechnaSans-Regular.otf);
}
:root{
    /* Test Colors */
    --testRed: rgba(255, 0, 0, 0.1);
    --testGreen: rgba(0, 255, 0, 0.1);
    --testBlue: rgba(0, 0, 255, 0.1);
    /* Background Color */
    --colorGrayBlue: rgba(227,241,254,1.0);
    --brownFp:rgba(69,26,29,1.0);
    --redFp:rgba(238,47,38,1.0);
    --yellowFp:rgba(240,94,36,1.0);
    --blueFp: rgb(19, 115, 241);
    --blueDarkFp: rgb(24, 33, 114);
    --white: rgba(255,255,255,1.00);
    --gray10:rgba(245,245,245,1.00);
    --gray25:rgba(200,200,200,1.00);
    --gray90: rgba(45,45,45,1.00);

    --colorHeader: rgb(31, 5, 7);
}
*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: auto;
}
body{
    display: block;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    /*background-color: var(--colorGrayBlue);*/

    background: url("../imgs/backgroundimagemain.webp") no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
img{
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
h1,h2,h3,h4,h5,h6{
    font-family: technaSans, sans-serif;
}
/* Flex Rules */
.flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
/* Container & Wrapper */
.container,.wrapper{
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.container{
    padding-left: 2%;
    padding-right: 2%;
}
.wrapper{
    max-width: 1920px;
    min-width: 1px;
}
/* No Display */
.no-display{
    display: none;
    opacity: 0;
    visibility: hidden;
}
/* Logotipo Header & Footer */
a.logo-container{
    width: 180px;
    height: auto;
    display: block;
}
a.logo-container > img{
    width: 100%;
    min-width: 1px;
    height: auto;
}

/* Social Media Icons */
a.socialIcon-container{
    width: 50px;
    height: auto;
    display: block;
    opacity: 1;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s; 
    -o-transition: all 0.4s; 
    transition: all 0.4s;
}
a.socialIcon-container > img{
    width: 100%;
    min-width: 1px;
    height: auto;
}
a.socialIcon-container:hover{
    opacity: 0.6;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s; 
    -o-transition: all 0.1s; 
    transition: all 0.1s;
}
/* Styles for the nav links  */
a.link-menu{
    font-size: 0.9em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.02em;
    color: var(--white);
    text-shadow: 0px 4px 4px rgba(0,0,0,0);
    border-bottom: 3px transparent var(--white);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s; 
    -o-transition: all 0.3s; 
    transition: all 0.3s;
}
a.link-menu:hover{
    color: var(--yellowFp);
    text-shadow: 0px 4px 4px rgba(0,0,0,0.45);
    border-bottom: 3px solid var(--yellowFp);
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s; 
    -o-transition: all 0.1s; 
    transition: all 0.1s;
}
/* Fixed Social */
div#fixed-social{
    position: fixed;
    z-index: 1002;
    top: 25%;
    left: auto;
    right: 0;
    padding: 12px 0px 12px 12px;
    background-color: rgba(33,33,33,0.8);
    border-radius: 25px 0px 0px 25px;
    -webkit-border-radius: 25px 0px 0px 25px;
    -moz-border-radius: 25px 0px 0px 25px;
}
ul#fixed-social-container{
    flex-flow: column wrap;
}
ul#fixed-social-container > li{
    list-style: none;
    margin-bottom: 5px;
}
ul#fixed-social-container > li:last-child{
    margin-bottom: 0px;
}
/* Background Color */
header,#footerMap{
    background: var(--colorHeader);
    /*background: linear-gradient(90deg, rgba(34,15,16,1) 0%, rgba(104,25,24,1) 100%); */
}
/* Styles for the site */
header,main{
    padding-top: 12px;
    padding-bottom: 12px;
}
/* Header */
header{
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    border-bottom: 4px solid var(--redFp);
}
#header-container{
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}
div#header-one{
    order: 1;
}
nav{
    order: 2;
    margin-left: auto;
}
nav ul{
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
}
nav > ul > li{
    list-style: none;
    margin-left: 34px;
}
/* Menu */
div#header-three{
    order: 3;
    margin-left: 28px;
}
#menu-button{
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 0.4rem 0.5rem;
    font-size: 1.8rem;
    line-height: 0;
    cursor: pointer;
    color: var(--white);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 0.45s;
    -moz-transition: all 0.45s; 
    -o-transition: all 0.45s; 
    transition: all 0.45s;
}
#menu-button:hover{
    color: var(--yellowFp);
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s; 
    -o-transition: all 0.1s; 
    transition: all 0.1s;
}
#menu{
    /* IMPORTANT! NO EREASE RULE */
    display: none;
    /* Safe Rules */
    width: 240px;
    height: auto;
    margin: 22px 0px 0px 0px;
    overflow: hidden;
    position: fixed;
    z-index: 999;
    left: auto;
    right: 38px;
    background-color: var(--colorHeader);
    box-shadow: 8px 9px 17px 0px var(--gray90);
    -webkit-border-bottom-right-radius: 12px;
    -moz-border-bottom-right-radius: 12px;
    -webkit-border-bottom-left-radius: 12px;
    -moz-border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}
#menu > li{
    margin: 10px auto;
    padding: 3px 10px;
}
/* Main & Sections */
main{
    margin-top: 86px;

}
/* Carousel Styles */
.carousel-container{
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    margin: 0 auto 16px auto;
}
.carousel{
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}
a.slide{
    width: 100%;
    flex: 0 0 100%; 
    max-width: 800px;
    margin: 0 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 0.5s;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s; 
    -o-transition: all 0.4s; 
    transition: all 0.4s;
}
a.slide:first-child{
    margin-left: 0px;
}
a.slide:last-child{
    margin-right: 0px;
}
a.slide > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
a.slide:hover{
    -moz-transform: scale(1.05); /* Mozilla */
    -o-transform: scale(1.05); /* Opera */
    -ms-transform: scale(1.05); /* Internet Explorer */
    transform: scale(1.05);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s; 
    -o-transition: all 0.4s; 
    transition: all 0.4s;
}
button.button-carousel{
    font-size: 1em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s; 
    -o-transition: all 0.1s; 
    transition: all 0.1s;
}
.prev-carousel{
    left: 0;
}
.next-carousel{
    right: 0;
}
button:hover{
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s; 
    -o-transition: all 0.1s; 
    transition: all 0.1s;
}
/* News Letter Styles */
div.newsletter-div{
    width: 100%;
    height: 100px;
    margin: 0 auto;
    padding: 12px;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    position: relative;
    overflow: hidden;
    z-index: 3;
    background: rgb(51,67,220);
    background: linear-gradient(90deg, rgba(51,67,220,1) 0%, rgba(77,1,117,1) 50%, rgba(216,0,202,1) 100%);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
div.newsletter-div::before{
    content: "";
    width: 2px; 
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    box-shadow: 
    10px 20px #fff, 30px 50px #fff, 40px 10px #fff, 60px 30px #fff,
    80px 70px #fff, 100px 20px #fff, 120px 60px #fff, 150px 40px #fff,
    180px 80px #fff, 200px 30px #fff, 220px 70px #fff, 240px 50px #fff,
    260px 10px #fff, 280px 20px #fff, 300px 90px #fff, 320px 60px #fff,
    340px 40px #fff, 360px 10px #fff, 380px 50px #fff, 400px 70px #fff,
    420px 20px #fff, 440px 40px #fff, 460px 80px #fff, 480px 50px #fff,
    500px 10px #fff, 520px 90px #fff, 540px 30px #fff, 560px 60px #fff,
    580px 80px #fff, 600px 20px #fff, 620px 50px #fff, 640px 10px #fff,
    660px 30px #fff, 680px 60px #fff, 700px 40px #fff, 720px 20px #fff,
    740px 90px #fff, 760px 70px #fff, 780px 50px #fff, 800px 30px #fff,
    810px 20px #fff, 830px 50px #fff, 840px 10px #fff, 860px 30px #fff,
    880px 70px #fff, 900px 20px #fff, 920px 60px #fff, 950px 40px #fff,
    980px 80px #fff, 1000px 30px #fff, 1020px 70px #fff, 1040px 50px #fff,
    1060px 10px #fff, 1080px 20px #fff, 1100px 90px #fff, 1120px 60px #fff,
    1140px 40px #fff, 1160px 10px #fff, 1180px 50px #fff, 1200px 70px #fff,
    1220px 20px #fff, 1240px 40px #fff, 1260px 80px #fff, 1280px 50px #fff,
    1300px 10px #fff, 1320px 90px #fff, 1340px 30px #fff, 1360px 60px #fff,
    1380px 80px #fff, 1400px 20px #fff, 1420px 50px #fff, 1440px 10px #fff,
    1460px 30px #fff, 1480px 60px #fff, 1500px 40px #fff, 1520px 20px #fff,
    1540px 90px #fff, 1560px 70px #fff, 1580px 50px #fff, 1500px 30px #fff,
    1580px 80px #fff, 1600px 30px #fff, 1620px 70px #fff, 1640px 50px #fff,
    1660px 10px #fff, 1680px 20px #fff, 1700px 90px #fff, 1720px 60px #fff,
    1740px 40px #fff, 1760px 10px #fff, 1780px 50px #fff, 1800px 70px #fff;
}
div.newsletter-left{
    width: auto;
    height: auto;
    display: block;
    order: 1;
    flex-grow: 1;
    margin-left: 4%;
    margin-right: 4%;
    z-index: 2;
}
div.newsletter-left > p{
    font-size: 1.8em;
    font-weight: 700;
    line-height: 1.1em;
    letter-spacing: 0.01em;
    color: var(--white);
    text-shadow: 0px 4px 4px rgba(0,0,0,0.85);
}
a.newsletter-right{
    order: 2;
    width: 190px;
    height: max-content;
    display: block;
    margin-right: 4%;
    margin-left: 4%;
    padding: 6px 0;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    z-index: 4;
    color: rgb(77,1,117);
    background-color: var(--white);
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    border-radius: 26px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s; 
    -o-transition: all 0.4s; 
    transition: all 0.4s;
}
a.newsletter-right:hover{
    color: var(--white);
    background-color: rgb(14, 88, 247);
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s; 
    -o-transition: all 0.1s; 
    transition: all 0.1s;
}
img#cover-newsletter{
    width: 100px;
    height: auto;
    top: -10;
    left: 750px;
    z-index: 2;
    position: absolute;
    -moz-transform: rotate(-15deg); /* Mozilla */
    -o-transform: rotate(-15deg); /* Opera */
    -ms-transform: rotate(-15deg); /* Internet Explorer */
    transform: rotate(-15deg);
}

/* Container Content (left and right) */
.container-content{
    flex-flow: row nowrap;
    align-items: flex-start;
    align-content: flex-start;
    column-gap: 40px;
    margin: 15px auto;
}
.left-content{
    order: 1;
    flex-grow: 1;
    width: 100%;
}
.right-content{
    order: 2;
    width: 100%;
    max-width: 320px;
}
/* Sections */
section{
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 12px;
}
section:last-child{
    margin-bottom: 0px;
}
/* Title */
.title{
    font-size: 2.4em;
    font-weight: 700;
    margin-bottom: 16px;
}
.subtitle{
    font-size: 1.6em;
    font-weight: 400;
    margin-bottom: 12px;
}
.align-center{
    text-align: center;
}
.body-pargraph{
    font-size: 1em;
    margin-bottom: 18px;
}
.body-list{
    font-size: 0.95em;
    margin-left: 2.1em;
    margin-bottom: 18px;
}
.colorP-Brown{
    color: var(--brownFp);
}
.colorP-White{
    color: var(--white);
}
.colorP-Red{
    color: var(--redFp);
}
/* Document Box */
.doc-box{
    display: block;
    padding: 25px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}
.doc-gray{
    border: 1px solid var(--white);
    background-color: var(--colorGrayBlue);
}
.size960p{
    width: 100%;
    max-width: 960px;
    min-width: 1px;
    height: auto;
    margin: 18px auto;
}
/* Newsletter Box Styles*/
.form-columns-1{
    background-color: #E52B50;
}
/* Warning Box */
#warningBox{
    width: 100vw;
    height: 100vh;
    display: none; /* Oculta inicialmente */
    position: fixed;
    margin: 0 auto;
    z-index: 1005;
}
#warningBox.show {
    display: block; /* Lo muestra cuando se agrega la clase */
}
.blackBox{
    width: 100%;
    height: 100%;
    padding: 0;
    display: block;
    position: fixed;
    z-index: 1006;
    top: 0;
    left: 0;
    background-color: rgba(33,33,33,0.75);
}
#aviso-box{
    width: 92%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    z-index: 1007;
    border: 1px solid rgb(196, 0, 59);
    background: #E52B50;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.45);
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.45);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.45);
}
.iconHeart{
    font-size: 3rem;
    line-height: 0px;
    margin-bottom: 1px;
}
#aviso-box > p > a{
    color: rgb(255, 255, 240);
    font-weight: 700;
}
/* Buttons */
.buttonFp{
    width: max-content;
    height: max-content;
    display: block;
    padding: 6px 21px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    border-radius: 26px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s; 
    -o-transition: all 0.4s; 
    transition: all 0.4s;
}
.buttonFp:hover{
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s; 
    -o-transition: all 0.4s; 
    transition: all 0.4s;
}
.button-blue{
    color: var(--white);
    background-color: var(--blueFp);
}
.button-blue:hover{
    color: var(--blueFp);
    background-color: var(--blueDarkFp);
}
.button-white{
    color: var(--redFp);
    background-color: var(--white);
}
.button-white:hover{
    color: var(--redFp);
    background-color: var(--brownFp);
}
/* Grid Rules for Magazines Covers*/
.grid{
    /* Grid Display */
    display: -ms-grid;
    display: grid;
    width: 100%;
    height: auto;
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    /* rules for Firefox (prevent overlap) */
    min-width: 0;
    min-height: 0;
    grid-template-columns:  repeat(4, 1fr);
    grid-template-rows: 1fr;
}
/* Thumbnail Rules */
a.thumbnail{
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    color: var(--brownFp);
    background-color: var(--white);
    border: 1px solid var(--white);
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s; 
    -o-transition: all 0.1s; 
    transition: all 0.1s;
}
a.thumbnail > img{
    width: 100%;
    height: auto;
    z-index: 1;
    -moz-transform: scale(1); /* Mozilla */
    -o-transform: scale(1); /* Opera */
    -ms-transform: scale(1); /* Internet Explorer */
    transform: scale(1);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s; 
    -o-transition: all 0.4s; 
    transition: all 0.4s;
}
a.thumbnail > p.title-thumb,p.author-thumb{
    margin-left: 12px;
    margin-right: 12px;
    white-space: nowrap; /* Evita que el texto haga un salto de línea */
    overflow: hidden;    /* Oculta el texto que excede el contenedor */
    text-overflow: ellipsis; /* Muestra los puntos suspensivos */
    line-height: 1.4em;
    position: relative;
    z-index: 2;
}
a.thumbnail > p.title-thumb{
    margin-top: 9px;
    font-size: 0.9em;
    font-weight: 700;
}
a.thumbnail > p.author-thumb{
    margin-bottom: 9px;
    font-size: 0.8em;
    font-weight: 400;
}
a.thumbnail:hover{
    color: var(--white);
    background-color: var(--yellowFp);
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s; 
    -o-transition: all 0.1s; 
    transition: all 0.1s;
}
a.thumbnail:hover > img{
    -moz-transform: scale(1.05); /* Mozilla */
    -o-transform: scale(1.05); /* Opera */
    -ms-transform: scale(1.05); /* Internet Explorer */
    transform: scale(1.05);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s; 
    -o-transition: all 0.4s; 
    transition: all 0.4s;
}
/* Article Magazines */
article.file-container{
    width: 100%;
    height: auto;
    flex-flow: row no-wrap;
    justify-content: center;
    gap: 4%;
}
img.magazine-cover{
    order: 1;
    width: 100%;
    max-width: 450px;
    height: 100%;
    display: block;
    overflow: hidden;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}
.magazine-file{
    order: 2;
    width: 100%;
    max-width: 960px;
    min-width: 1px;
    display: block;
}
/* Magazine Tags */
ul.magazine-tags{
    margin: 28px 0px;
    list-style: none;
    flex-flow: row nowrap;
    gap: 10px;
}
ul.magazine-tags > li{
    display: block;
    padding: 8px 20px;
    font-size: 0.9em;
}
li.normal-tag{
    color: var(--white);
    background-color: rgba(104,25,24,1);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
li.pg18-tag{
    color: var(--white);
    background-color: var(--redFp);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
/* Capítulos */
.chapter-container{
    flex-flow: column wrap;
    gap: 21px;
}
.chapter-box{
    width: 100%;
    max-width: 860px;
    min-width: 1px;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    overflow: hidden;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}
.chapter-box > img{
    width: 100%;
    max-width: 120px;
    height: auto;
    /*object-fit: none;*/
    order: 1;
    margin-right: 30px;
}
div.info-chapter{
    order: 2;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 0 4%;
    gap: 12px 12px;
    color: var(--brownFp);
}
h5.chapter-title{
    font-size:1.6em;
}
p.chapter-dateRelease{
    font-size: 0.9em;
}
a.read-button{
    color: var(--white);
    background-color: var(--redFp);
}
a.read-button:hover{
    color: var(--redFp);
    background-color: var(--white);
}
/* r18 Warning Box */
.buttonsflex-warning{
    flex-flow: row wrap;
    justify-content: center;
    gap: 18px;
}
/* Aside Firepanda Socios */
aside{
    width: 100%;
    height: auto;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    row-gap: 18px;
}
a.fp-socios{
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden;
    color: var(--brownFp);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
a.fp-socios > img{
    width: 100%;
    min-width: 1px;
    height: auto;
}
/* Footer */
footer{
    border-top: 4px solid var(--redFp);
}
#footerMap,#footerLegal{
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding-top: 12px;
    padding-bottom: 12px;
}
/* #footerMap{} */
#footerLegal{
    background-color: rgb(12, 0, 2);
}

.footerMap-section{
    width: 100%;
    height: auto;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 12px;
}
.footerMap-section:last-child{
    margin-bottom: 0px;
}
/* Logo Footer */
#logo-footer{
    margin: 0 auto;
}
/* HR Line Footer */
hr.footer-lines{
    width: 100%;
    max-width: 960px;
    min-width: 150px;
    height: 1px;
    margin: 14px auto;
    border: 1px solid var(--white);
}
/* Footer MAPS */
ul.map-list{
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    list-style: none;
    gap: 26px;
}
/* Footer Social */
ul#footer-social-map{
    gap: 16px;
}

/* Distribuidores */
#footer-distribuidores{
    padding-top: 26px;
    padding-bottom: 6px;
}
#footer-distribuidores > h6{
    font-size: 1.45em;
    text-align: center;
    margin-bottom: 1em;
    color: var(--white);
}
ul#distribuidores{
    gap: 28px;
}
ul#distribuidores > li > a{
    width: 75px;
    height: auto;
    display: block;
    opacity: 1;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s; 
    -o-transition: all 0.4s; 
    transition: all 0.4s;
}
ul#distribuidores > li > a:hover{
    opacity: 0.6;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s; 
    -o-transition: all 0.1s; 
    transition: all 0.1s;
}
ul#distribuidores > li > a > img{
    width: 100%;
    min-width: 1px;
    height: auto;
}
#footer-distribuidores > p{
    margin-top: 16px;
    font-size: 0.9em;
    text-align: center;
    color: var(--white);
}
#footer-distribuidores > p > a{
    font-weight: 700;
    text-decoration: none;
    color: var(--yellowFp);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s; 
    -o-transition: all 0.4s; 
    transition: all 0.4s;
}
#footer-distribuidores > p > a:hover{
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s; 
    -o-transition: all 0.1s; 
    transition: all 0.1s;
}
a#logo-amj{
    width: 100%;
    max-width: 75px;
    height: auto;
    display: block;
    margin: 0 auto;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s; 
    -o-transition: all 0.4s; 
    transition: all 0.4s;
}
a#logo-amj img{
    width: 100%;
    min-width: 1px;
    height: auto;
    display: block;
}
a#logo-amj:hover{
    opacity: 0.75;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s; 
    -o-transition: all 0.1s; 
    transition: all 0.1s;
}
/* Address Footer */
address{
    font-size: 0.7em;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    line-height: 1.4em;
    color: var(--gray25);
}
address > strong{
    color: var(--white);
}
/* Styles: 1080px */
@media only screen and (max-width: 1344px){
    .right-content{
        max-width: 280px;
    }
    /* Grid Rules for Magazines Covers*/
    /*.grid{
        grid-template-columns:  repeat(5, 1fr);
    }*/
    /* Menu */
    #menu{
        /* Safe Rules */
        width: 240px;
        margin: 22px 0px 0px 0px;
        right: 22px;
        -webkit-border-bottom-right-radius: 12px;
        -moz-border-bottom-right-radius: 12px;
        -webkit-border-bottom-left-radius: 12px;
        -moz-border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        border-bottom-left-radius: 12px;
    }
    #menu > li{
        margin: 10px auto;
        padding: 3px 10px;
    }
    /* Newsletter */
    div.newsletter-left > p{
        font-size: 1.7em;
    }
    a.newsletter-right{
        width: 180px;
        margin-right: 4%;
        margin-left: 4%;
        padding: 6px 0;
        font-size: 17px;
    }
    img#cover-newsletter{
        left: 650px;
    }
}
/* Styles: 1080px */
@media only screen and (max-width: 1080px){
    .container-content{
        column-gap: 30px;
    }
    .right-content{
        max-width: 250px;
    }
    /* Sections */
    .title{
        font-size: 2.3em;
        margin-bottom: 15px;
    }
    /* Grid Rules for Magazines Covers*/
    /*.grid{
        grid-template-columns:  repeat(4, 1fr);
    }*/
    /* Newsletter */
    div.newsletter-left > p{
        font-size: 1.6em;
    }
    a.newsletter-right{
        width: 170px;
        margin-right: 4%;
        margin-left: 4%;
        padding: 6px 0;
        font-size: 16px;
    }
    img#cover-newsletter{
        left: 550px;
    }
}
/* Styles: 960px */
@media only screen and (max-width: 960px){
    /* Logotipo Header & Footer */
    a.logo-container{
        width: 160px;
        height: auto;
        display: block;
    }
    /* Social Media Icons */
    a.socialIcon-container{
        width: 40px;
    }
    /* Styles for the nav links  */
    a.link-menu{
        font-size: 0.85em;
        text-shadow: 0px 3px 3px rgba(0,0,0,0);
        border-bottom: 2px transparent var(--white);
    }
    .container-content{
        column-gap: 20px;
    }
    .right-content{
        max-width: 200px;
    }
    /* Styles for the site */
    header,main{
        padding-top: 10px;
        padding-bottom: 10px;
    }
    /* Header */
    nav > ul > li{
        margin-left: 26px;
    }
    /* Menu */
    div#header-three{
        margin-left: 24px;
    }
    #menu-button{
        font-size: 1.6rem;
    }
    #menu{
        /* Safe Rules */
        width: 220px;
        margin: 18px 0px 0px 0px;
        right: 18px;
    }
    #menu > li{
        margin: 8px auto;
        padding: 2px 9px;
    }
    /* Main & Sections */
    main{
        margin-top: 78px;
    }
    /* News Letter Styles */
    div.newsletter-div{
        height: 80px;
        padding: 10px;
        flex-flow: row nowrap;
        justify-content: space-around;
        align-items: center;
        align-content: center;
    }
    div.newsletter-left{
        order: 1;
        flex-grow: 0;
        margin-left: 2%;
        margin-right: 2%;
    }
    div.newsletter-left > p{
        font-size: 1.4em;
    }
    a.newsletter-right{
        width: 160px;
        margin-right: 2%;
        margin-left: 2%;
        padding: 4px 0;
        font-size: 15px;
    }
    img#cover-newsletter{
        left: 450px;
    }
    /* Sections */
    .title{
        font-size: 2.2em;
        margin-bottom: 14px;
    }
    .subtitle{
        font-size: 1.4em;
        text-align: left;
        margin-bottom: 10px;
    }
    .body-pargraph{
        font-size: 0.9em;
    }
    /* Grid Rules for Magazines Covers*/
    .grid{
        grid-column-gap: 12px;
        grid-row-gap: 12px;
        grid-template-columns:  repeat(3, 1fr);
    }
    /* Thumbnail Rules */
    a.thumbnail{
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;
    }
    a.thumbnail > p.title-thumb,p.author-thumb{
        margin-left: 10px;
        margin-right: 10px;
        line-height: 1.2em;
    }
    a.thumbnail > p.title-thumb{
        margin-top: 8px;
        font-size: 0.8em;
    }
    a.thumbnail > p.author-thumb{
        margin-bottom: 8px;
        font-size: 0.7em;

    }
    /* Article Magazines */
    article.file-container{
        flex-flow: column wrap;
        align-items: center;
        align-content: center;
    }
    img.magazine-cover{
        max-width: 350px;
        margin-bottom: 16px;
    }
    div.magazine-file{
        padding: 18px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }
    /* Magazine Tags */
    ul.magazine-tags{
        margin: 21px 0px;
        list-style: none;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        align-content: center;
        gap: 8px;
    }
    ul.magazine-tags > li{
        padding: 6px 18px;
        font-size: 0.85em;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }
    /* Capítulos */
    .chapter-container{
        justify-content: center;
        align-items: center;
        align-content: center;
        gap: 12px;
    }
    .chapter-box{
        max-width: 600px;
        flex-flow: row nowrap;
        justify-content: flex-start;
        gap: 12px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
    }
    .chapter-box > img{
        width: 160px;
        margin-right: 12px;
    }
    h5.chapter-title{
        font-size:1.4em;
    }
    p.chapter-dateRelease{
        font-size: 0.8em;
    }
    /* Aside Firepanda Socios */
    aside{
        flex-flow: column wrap;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
        row-gap: 16px;
    }
    /* Footer */
    #footerMap,#footerLegal{
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .footerMap-section{
        margin-bottom: 10px;
    }
    /* HR Line Footer */
    hr.footer-lines{
        width: 100%;
        max-width: 450px;
        margin: 12px auto;
    }
    /* Footer MAPS */
    ul.map-list{
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        align-content: center;
        list-style: none;
        gap: 8px 21px;
    }
    /* Footer Social */
    ul#footer-social-map{
        gap: 14px;
    }
    /* Distribuidores */
    #footer-distribuidores{
        padding-top: 24px;
        padding-bottom: 4px;
    }
    ul#distribuidores{
        gap: 24px;
    }
    ul#distribuidores > li > a{
        width: 65px;
    }
    #footer-distribuidores > p{
        margin-top: 14px;
        font-size: 0.85em;
    }
    a#logo-amj{
        max-width: 65px;
    }
}
/* Styles: 805px */
@media only screen and (max-width: 805px){
    /* Header */
    #header-container{
        flex-flow: row nowrap;
        justify-content: center;
        align-items: center;
        align-content: center;
    }
    div#header-one{
        order: 1;
    }
    nav{
        order: 0;
        margin-left: 0px;
        display: none;
        visibility: hidden;
        opacity: 0;
    }
    /* Menu */
    div#header-three{
        order: 2;
        margin-left: auto;
    }
    #menu{
        /* Safe Rules */
        width: 220px;
        margin: 18px 0px 0px 0px;
        right: 14px;
    }
    #menu > li{
        margin: 8px auto;
        padding: 2px 9px;
    }
    /* Main & Sections */
    main{
        margin-top: 74px;
    }
    /* Newsletter */
    div.newsletter-div{
        height: auto;
        margin: 0 auto;
        padding: 12px;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
        align-content: center;
    }
    div.newsletter-left > p{
        margin-bottom: 5px;
        font-size: 1.4em;
        text-align: center;
    }
    a.newsletter-right{
        width: 170px;
        margin-top: 14px;
        margin-right: auto;
        margin-left: auto;
        padding: 6px 0;
        font-size: 16px;
    }
    img#cover-newsletter{
        left: auto;
        right: 60px;
        opacity: 0.6;
    }
    #footer-distribuidores > h6{
        font-size: 1.35em;
        margin-bottom: 0.8em;
    }
}
/* Styles: 705px */
@media only screen and (max-width: 705px){
    /* Fixed Social */
    div#fixed-social{
        display: none;
        visibility: hidden;
        opacity: 0;
        z-index: 0;
        top: 0;
        left: 0;
        right: 0;
        padding: 0px;
    }
    ul#fixed-social-container{
        flex-flow: column wrap;
    }
    ul#fixed-social-container > li{
        list-style: none;
        margin-bottom: 5px;
    }
    ul#fixed-social-container > li:last-child{
        margin-bottom: 0px;
    }
    .container-content{
        flex-flow: column nowrap;
        column-gap: 0px;
        row-gap: 21px;
    }
    .left-content{
        flex-grow: 0;
    }
    .right-content{
        max-width: 100%;
    }
    /* Newsletter */
    a.newsletter-right{
        width: 160px;
        margin-top: 12px;
        padding: 6px 0;
        font-size: 14px;
    }
    /* Sections */
    .title{
        font-size: 2em;
        text-align: center;
        margin-bottom: 12px;
    }
    .subtitle{
        font-size: 1.3em;
        text-align: center;
        margin-bottom: 8px;
    }
    .body-pargraph{
        font-size: 0.9em;
        text-align: center;
    }
    /* Grid Rules for Magazines Covers*/
    /*.grid{
        grid-template-columns:  repeat(3, 1fr);
    }*/
    /* Aside Firepanda Socios */
    aside{
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        align-content: flex-start;
        column-gap: 2%;
        row-gap: 12px;
    }
    a.fp-socios{
        width: 32%;
    }

}
/* Styles: 450px */
@media only screen and (max-width: 450px){
    /* Logotipo Header & Footer */
    a.logo-container{
        width: 145px;
        height: auto;
        display: block;
    }
    /* Styles for the nav links  */
    a.link-menu{
        font-size: 0.8em;
    }
    /* Styles for the site */
    header,main{
        padding-top: 8px;
        padding-bottom: 8px;
    }
    #menu{
        /* Safe Rules */
        width: 210px;
        margin: 14px 0px 0px 0px;
        right: 14px;
    }
    /* Main & Sections */
    main{
        margin-top: 66px;
    }
    /* Newsletter */
    div.newsletter-left > p{
        font-size: 1.1em;
    }
    /* Sections */
    .title{
        font-size: 1.8em;
        margin-bottom: 10px;
    }
    .subtitle{
        font-size: 1.2em;
    }
    .body-pargraph{
        font-size: 0.85em;
    }
    /* Grid Rules for Magazines Covers*/
    .grid{
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        grid-template-columns:  repeat(2, 1fr);
    }
    /* Article Magazines */
    img.magazine-cover{
        max-width: 250px;
        margin-bottom: 14px;
    }
    div.magazine-file{
        padding: 16px;
    }
    /* Magazine Tags */
    ul.magazine-tags{
        margin: 18px 0px;
        gap: 6px;
    }
    ul.magazine-tags > li{
        padding: 5px 16px;
        font-size: 0.8em;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
    }
    /* Capítulos */
    .chapter-container{
        gap: 12px;
    }
    .chapter-box{
        max-width: 450px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        border-radius: 8px;
    }
    .chapter-box > img{
        width: 140px;
        margin-right: 0px;
    }
    div.info-chapter{
        flex-flow: column wrap;
        justify-content: center;
        padding: 4%;
    }
    h5.chapter-title{
        font-size:1.2em;
        text-align: center;
    }
    p.chapter-dateRelease{
        font-size: 0.7em;
        text-align: center;
    }
    /* Aside Firepanda Socios */
    aside{
        row-gap: 10px;
    }
    a.fp-socios{
        width: 48%;
    }
    /* Footer */
    #footerMap,#footerLegal{
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .footerMap-section{
        margin-bottom: 8px;
    }
    /* HR Line Footer */
    hr.footer-lines{
        width: 100%;
        max-width: 350px;
        margin: 10px auto;
    }
    /* Footer Social */
    ul#footer-social-map{
        gap: 12px;
    }
    /* Distribuidores */
    #footer-distribuidores{
        padding-top: 21px;
        padding-bottom: 2px;
    }
    #footer-distribuidores > h6{
        font-size: 1.25em;
        margin-bottom: 0.7em;
    }
    ul#distribuidores{
        gap: 18px;
    }
    ul#distribuidores > li > a{
        width: 55px;
    }
    #footer-distribuidores > p{
        margin-top: 12px;
        font-size: 0.8em;
    }
    a#logo-amj{
        max-width: 55px;
    }
    /* Address Footer */
    address{
        font-size: 0.6em;
    }
}