:root {
    --header-bg-color: #131510;
    --main-bg-color: #131510;
    --footer-bg-color: #131510;
    --main-text-color: #D6D7DC;
    --button-text-color: #FFFFFF;
    --button-bg-color: #4FB95F;
    --button-second-bg-color: #4FB95F;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-size-adjust: none;
}

html {
    box-sizing: border-box;
}

body {
    font-family: Chakra Petch, sans-serif;
    line-height: 1.6;
    color: var(--main-text-color);
}

button {
    font-family: Chakra Petch, sans-serif;
    cursor: pointer;
    border: none !important;
}

a {
    color: var(--button-text-color);
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
    color: var(--main-text-color);
}

h1, h2, h3, h4 {
    color: var(--main-text-color);
}

h1 {
  font-size: 45px;
  font-weight: 900;
  line-height: 45px;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  h1 {
    font-size: 30px;
    line-height: 42px;
  }
}

h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  h2 {
    font-size: 30px;
    line-height: 44px;
  }
}

h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  h3 {
    font-size: 24px;
    line-height: 32px;
  }
}

p {
  font-size: 16px;
  letter-spacing: normal;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 24px;
}
@media screen and (max-width: 992px) {
    p {
        font-size: 14px;
        line-height: 29px;
    }
}

strong {
    font-weight: 600;
}
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    white-space: nowrap;
    display: block;
    overflow-x: auto;
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

table p {
    margin: 0;
}

tbody {
    width: calc(100% - 2px);
    display: table;
}

th {
    background: var(--footer-bg-color);
}

th, td {
    border: 1px solid var(--main-text-color);
    padding: 8px;
    box-sizing: border-box;
}

th:first-child {
    border-top-left-radius: 10px;
}

th:last-child {
    border-top-right-radius: 10px;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

tr:first-child td:first-child {
    border-top-left-radius: 10px;
}

tr:first-child td:last-child {
    border-top-right-radius: 10px;
}

table::-webkit-scrollbar {
    height: 8px;
}

table::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

table::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}



tr:nth-child(even) {
    /*background: #efefef;*/
}

footer, header, nav, section, main {
    display: block;
    position: relative;
}

main {
    background-color: var(--main-bg-color);
}

section {
    padding: 20px 0;
}

@media screen and (max-width: 768px) {
    section {
        padding: 20px 0;
    }
}

.reciclamascarilla-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1200px) {
    .reciclamascarilla-container {
        max-width: 100%;
        padding: 0 15px;
    }
}

img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


.reciclamascarilla-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.reciclamascarilla-col:first-child {
    width: 820px;

}
.reciclamascarilla-col:last-child {
    flex: 0 0 330px;
}
@media (max-width: 1030px) {
    .reciclamascarilla-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    .reciclamascarilla-col:first-child, .reciclamascarilla-col:last-child {
        width: 100%;
        flex: auto;
    }
}

.reciclamascarilla-jc-end {
    justify-content: end !important;
}

.reciclamascarilla-jc-center {
    justify-content: center;
}

.reciclamascarilla-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: inherit;
    height: auto;
    padding: 10px 24px;
    border-radius: 18px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.reciclamascarilla-btn:hover {
    transform: scale(1.1);
}
.reciclamascarilla-btn__wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .reciclamascarilla-btn__wrapper {
        gap: 20px;
    }
}
.reciclamascarilla-btn-primary {
    color: var(--button-text-color);
    background-color: var(--button-bg-color);
    box-shadow: 0px 0px 10px 2px var(--button-bg-color);
}

.reciclamascarilla-btn-primary:hover {
    color: var(--button-text-color);
    background-color: var(--button-bg-color);
}

.reciclamascarilla-btn-secondary {
    color: var(--button-text-color);
    background-color: var(--button-second-bg-color);
    box-shadow: 0px 0px 10px 2px var(--button-second-bg-color);
}

.reciclamascarilla-btn-secondary:hover {
    color: var(--button-text-color);
    background-color: var(--button-second-bg-color);
}

.reciclamascarilla-btn-pulse {
    animation: pulse 1.5s infinite;
}

.reciclamascarilla-btn-uppercase {
    text-transform: uppercase;
}
.reciclamascarilla-header {
    background-color: var(--header-bg-color);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.reciclamascarilla-header ul, .reciclamascarilla-header ol, .reciclamascarilla-header li,
.reciclamascarilla-footer ul, .reciclamascarilla-footer ol, .reciclamascarilla-footer li {
    margin: 0;
    padding: 0;
    border: 0;
    list-style-type: none;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-size-adjust: none;
}
.reciclamascarilla-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.reciclamascarilla-header__inner-primary {
    display: flex;
    align-items: center;
    /*width: 100%;*/
    justify-content: space-between;
    flex: auto;
}

.reciclamascarilla-header__inner-second {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reciclamascarilla-header__row {
    flex-direction: row;
    height: 80px;
}

.reciclamascarilla-header__inner-second .reciclamascarilla-header__row {
    flex-direction: row;
    gap: 10px;
    height: auto;
}

.reciclamascarilla-header__col {
    flex-direction: column;
}

.reciclamascarilla-header__inner-second.reciclamascarilla-header__col {
    padding: 10px 0;
}

.reciclamascarilla-header__logo {
    display: flex;
    max-height: 60px;
    height: 100%;
}

.reciclamascarilla-header__logo a {
    text-decoration: none;
    display: flex;
}
.reciclamascarilla-header__logo img {
    object-fit: contain;
    border-radius: initial;
}

.reciclamascarilla-header__nav {
    display: flex;
}
.reciclamascarilla-header__nav ul {
    display: flex;
    gap: 10px;
    height: 100%;
    align-items: center;
    list-style-type: none;
    padding: 0;
}

.reciclamascarilla-header__nav ul li {
    display: flex;
    align-items: center;
    height: 100%;
}

.reciclamascarilla-header__nav ul li a {
    color: var(--button-text-color);
    text-decoration: none;
    padding: 10px;
}

.reciclamascarilla-header__nav ul li a:hover {
    color: var(--main-text-color);
}

.reciclamascarilla-section img  {
    max-width: 1006px;
    display: block;
    margin: auto;
}

.reciclamascarilla-section--main .reciclamascarilla-container > :not(:last-child) {
    margin-bottom: 30px;
}

.reciclamascarilla-btn__wrapper-main {
    max-width: 300px;
    width: 100%;
    margin: auto;
}

.reciclamascarilla-btn__wrapper-main .reciclamascarilla-btn-primary {
    padding: 20px 70px;
    border-radius: 30px;
}

.reciclamascarilla-burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.reciclamascarilla-burger-menu span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--main-text-color);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.reciclamascarilla-burger-menu.reciclamascarilla-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.reciclamascarilla-burger-menu.reciclamascarilla-active span:nth-child(2) {
    opacity: 0;
}

.reciclamascarilla-burger-menu.reciclamascarilla-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.reciclamascarilla-section--content h1:first-of-type,
.reciclamascarilla-section--content h2:first-of-type,
.reciclamascarilla-section--content h3:first-of-type,
.reciclamascarilla-section--content h4:first-of-type {
    margin-top: 0;
    margin-bottom: 30px;
}

.reciclamascarilla-section--content h1:not(:first-of-type),
.reciclamascarilla-section--content h2:not(:first-of-type),
.reciclamascarilla-section--content h3:not(:first-of-type),
.reciclamascarilla-section--content h4:not(:first-of-type) {
    margin: 30px 0;
}

.reciclamascarilla-section--content .reciclamascarilla-update-post {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 20px 0;
}

.reciclamascarilla-section--content .reciclamascarilla-update-post p{
    margin: 0;
}

footer {
    background-color: var(--footer-bg-color);;
    color: var(--main-text-color);
}

.reciclamascarilla-footer__wrapper {
    display: flex;
    flex-direction: column;
    justify-self: center;
    padding: 20px 0;
    gap: 17px;
}

.reciclamascarilla-footer__nav, .reciclamascarilla-footer__icons, .reciclamascarilla-footer__inner {
    display: flex;
    justify-content: center;
}

.reciclamascarilla-footer__icons--link img {
    border-radius: initial;
}

.reciclamascarilla-footer__nav--list {
    display: flex;
    list-style-type: none;
    justify-content: center;
    gap: 42px;
}

.reciclamascarilla-footer__nav--link {
    text-decoration: none;
}
.reciclamascarilla-footer__nav--link:hover {
    color: var(--main-text-color);
}

.reciclamascarilla-footer__icons {
    gap: 24px;
    flex-wrap: wrap;
}

.reciclamascarilla-footer__inner p {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--button-bg-color);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px 8px var(--button-bg-color);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--button-bg-color);
    }
}

@media screen and (max-width: 768px) {
    .reciclamascarilla-burger-menu {
        display: flex;
        order: 1;
    }
    .reciclamascarilla-header__inner {
        justify-content: space-between;
        gap: 20px;
    }
    .reciclamascarilla-header__logo {
        max-height: 50px;
    }
    .reciclamascarilla-header__logo img {
        max-width: 100px;
    }

   #reciclamascarilla-nav-menu {
       position: absolute;
       top: 68px;
       left: 0;
       width: 100%;
       height: 100vh;
       background-color: var(--header-bg-color);
       flex-direction: column;
       align-items: center;
       justify-content: flex-start !important;
       display: none;
   }

    .reciclamascarilla-header__nav ul {
        flex-direction: column;
        text-align: center;
        width: 100%;
        height: auto;
        padding: 20px 0;
    }

    .reciclamascarilla-header__nav ul li {
        padding: 10px 0;
    }

    .reciclamascarilla-header .reciclamascarilla-btn {
        padding: 6px 12px;
    }

    #reciclamascarilla-nav-menu.reciclamascarilla-active {
        display: flex;
    }

    .reciclamascarilla-header__row {
       height: 68px;
    }

    .reciclamascarilla-header__inner-second.reciclamascarilla-header__col {
        flex-direction: row;
    }

    .reciclamascarilla-footer__nav--list {
        gap: 20px;
    }
}


/* Random Images Block */
.reciclamascarilla-showcase__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    justify-content: space-between;
}

.reciclamascarilla-showcase__block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 270px;
}

.reciclamascarilla-showcase__image {
    position: relative;
    display: block;
    overflow: hidden;
    width: 270px;
    height: 200px;
}

.reciclamascarilla-showcase__image img {
    max-width: 100%;
    display: initial;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.reciclamascarilla-showcase__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reciclamascarilla-showcase__image:hover .reciclamascarilla-showcase__image-overlay {
    opacity: 1;
    visibility: visible;
}

.reciclamascarilla-showcase__image .reciclamascarilla-btn__wrapper {
    z-index: 2;
}

.reciclamascarilla-showcase__desc {
    display: flex;
    flex-direction: column;
}
.reciclamascarilla-showcase__desc p, .reciclamascarilla-showcase__desc span {
    margin: 0;
}
.reciclamascarilla-showcase__desc span {
    font-size: 14px;
}

@media screen and (max-width: 1210px) {
    .reciclamascarilla-showcase__block {
        width: calc(25% - 20px);
    }
    .reciclamascarilla-showcase__image {
        width: auto;
    }
}

@media screen and (max-width: 992px) {

    .reciclamascarilla-showcase__image {
        height: 120px;
    }

    .reciclamascarilla-showcase__desc span {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .reciclamascarilla-showcase__wrapper {
        justify-content: center;
    }
    .reciclamascarilla-showcase__block {
        width: calc(50% - 20px);
    }
    .reciclamascarilla-showcase__image {
        width: auto;
        height: 120px;
    }
}

/* TOC Styles */
.reciclamascarilla-toc {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px 0 40px;
    margin: 0;
}
.reciclamascarilla-toc-wrapper {
    margin: 20px auto;
    border-radius: 10px;
    border: 1px solid var(--main-text-color);
}

.reciclamascarilla-toc-title {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 10px;
}

.reciclamascarilla-toc.reciclamascarilla-is-open {
    margin: inherit;
    margin-top: 0;
}

.reciclamascarilla-toc-arrow {
    width: 8px;
    height: 8px;
    margin-bottom: 4px;
    border: solid var(--main-text-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.reciclamascarilla-toc-arrow.reciclamascarilla-rotated {
    transform: rotate(-135deg);
    margin-bottom: -4px;
}