/*
    Theme Name: Openfs Implelab
    Theme URI:  https://github.com/Open-FS/implelab
    Author: OpenFS LLC
    Author URI: https://github.com/hmcarlosj
    Description: Theme for Implelab
    Version: 1.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: laboratory
    Text Domain: implelab
*/

@font-face {
    font-family: 'Montserrat';
    src: url('assets/fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('assets/fonts/Montserrat-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand-primary: #0056b3;
    --brand-secondary: #35c7df;
    --brand-orange: #c55202;
    --text-color: #082b4b;
    --font-body: 'Lato', sans-serif;
    --font-section: 'Montserrat', sans-serif;
}

html,
body {
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
}

.text-primary {
    color: var(--brand-primary) !important;
}

.header {
    z-index: 999;
}

.header--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    transform: translateY(0);
    opacity: 1;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
    will-change: transform, opacity;
}

.header--hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header .container,
#menu-lg,
.nav-menu,
.hero-content,
.swiper-slide {
    display: flex;
    align-items: center;
}

.header .container {
    gap: 1rem;
    border-radius: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (min-width: 576px) {
    .header .container {
        border-radius: 0 0 15px 15px;
    }
}

#menu-lg,
.nav-menu {
    gap: 1.75rem;
}

.nav-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.logo-img img {
    max-height: 70px;
    width: auto;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 60%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
}

.swiper,
.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    height: 100%;
    color: white;
}

.swiper-slide__content {
    max-width: 100%;
}

.swiper-slide__content h1 {
    font-family: var(--font-section);
    font-weight: 900 !important;
    font-size: 60px;
}

@media (min-width: 992px) {
    .swiper-slide__content {
        max-width: 70%;
    }
}

.product-search {
    position: relative;
}

.product-search__field {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 999px;
    padding: 0 14px;
}

.product-search__input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 10px 8px;
    font-size: 14px;
    color: #082b4b;
    background: transparent;
}

.product-search__results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    max-height: 360px;
    overflow-y: auto;
    z-index: 1000;
}

.product-search__link {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 8px 16px;
    text-decoration: none;
    color: inherit;
}

.product-search__link:hover {
    background: #f5f8ff;
}

.product-search__thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
}

.product-search__clear {
    display: none !important;
}

.product-search__text {
    color: #737373;
    font-size: 12px;
}

.nav-menu li a {
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    padding: 2rem 0;
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color 180ms ease;
    font-weight: 600;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: var(--brand-orange);
}

.has-submenu > a::after {
    content: '▾';
    margin-left: 0.4rem;
    font-size: 0.7rem;
    display: inline-block;
    vertical-align: middle;
}

.nav-menu li.current-menu-item > a,
.nav-menu li.current-menu-parent > a,
.nav-menu li.current-menu-ancestor > a {
    color: var(--brand-orange);
}

.nav-menu li.current-menu-item > a:hover,
.nav-menu li.current-menu-parent > a:hover,
.nav-menu li.current-menu-ancestor > a:hover,
.nav-menu li.current-menu-item > a:focus,
.nav-menu li.current-menu-parent > a:focus,
.nav-menu li.current-menu-ancestor > a:focus {
    color: var(--brand-orange);
}

.submenu-custom {
    display: flex;
    position: absolute;
    left: 0;
    top: 104px;
    width: 100%;
    z-index: -1;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.submenu-container {
    background: #ffffff;
    padding: 56px 40px 32px 40px;
    box-sizing: border-box;
    justify-content: center;
    align-items: start !important;
    flex-wrap: wrap;
    border-radius: 8px !important;
}

.submenu-custom.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.has-submenu:hover .submenu-custom,
.has-submenu:focus-within .submenu-custom {
    display: flex;
}

.submenu-custom li {
    padding: 0 0.8rem;
    list-style: none;
}

.submenu-custom li a {
    color: var(--brand-primary);
    padding: 1rem 0;
}

.submenu-container > li > a {
    text-transform: uppercase;
    font-weight: 600;
}

.submenu-custom li a:hover {
    color: var(--brand-orange);
}

.submenu-custom .category-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.submenu-custom .category-icon img {
    object-fit: contain;
    transition: all 0.3s ease;
}

.submenu-custom .submenu-container li:hover .category-icon {
    background: var(--brand-primary);
}

.submenu-custom .submenu-container li:hover .category-icon img {
    filter: brightness(0) invert(1);
}

.mega-subcats {
    list-style: none;
    padding: 8px 0 0 0;
    margin: 0;
}

.mega-subcats li {
    padding: 0;
}

.mega-subcats li a {
    display: block;
    padding: 4px 0;
    font-size: 1rem;
    color: var(--brand-primary);
    opacity: 0.75;
    transition:
        opacity 0.2s ease,
        color 0.2s ease;
    white-space: nowrap;
    font-weight: 100;
    font-size: 15px;
}

.mega-subcats li a:hover {
    opacity: 1;
    color: var(--brand-orange);
}

.mega-subcats li {
    margin-left: 15px !important;
}

.primary-btn-1 {
    color: white;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    line-height: normal;
    white-space: nowrap;
    padding: 20px 24px;
    gap: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.6s;
    text-decoration: none;
    font-weight: 700;
}

.primary-btn-1 span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--brand-secondary);
    transition: all 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.primary-btn-1:hover {
    color: white;
}

.primary-btn-1:hover span {
    width: 225%;
    height: 1000.5px;
}

.primary-btn-1:active {
    background-color: var(--brand-secondary);
}

@media (max-width: 1199px) {
    #menu-lg {
        display: none;
    }
}

.submenu-normal {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 12px 0;
    list-style: none;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

.has-submenu:hover > .submenu-normal {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-normal li {
    width: 100%;
}

.submenu-normal li a {
    display: block;
    padding: 12px 20px;
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.submenu-normal li a:hover {
    background: var(--brand-primary);
    color: white;
}

.normal-parent {
    position: relative;
}

.submenu-normal {
    position: absolute;
    top: 100%;
    left: 0;
}

.submenu-normal li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

.mobile-menu {
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    padding: 12px 0;
}

.mobile-menu-item a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
}

.mobile-menu-item a:hover {
    color: var(--brand-orange);
}

.sub-menu-mobile {
    display: none;
    margin-top: 8px;
}

.sub-menu-mobile > .mobile-menu-item > a {
    text-transform: uppercase;
    font-weight: 600;
}

.mobile-subcats {
    margin-top: 4px;
}

.mobile-subcats li {
    padding: 4px 0;
}

.mobile-subcats li a {
    font-size: 0.9rem;
    color: var(--brand-primary);
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.mobile-subcats li a:hover {
    opacity: 1;
}

.submenu-toggle {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
}

.submenu-toggle i {
    display: inline-block !important;
    transition: transform 0.3s ease !important;
}

.submenu-toggle[aria-expanded='true'] i {
    transform: rotate(180deg) !important;
}

.section-space {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 768px) {
    .section-space {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

.feature-banner {
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-banner--with-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 100%;
    height: 200%;
    pointer-events: none;
    z-index: 0;
}

.feature-banner--custom::after {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    background: var(--feature-circle-color, rgba(255, 255, 255, 0.35));
    border-radius: 50%;
    z-index: 0;
}

.feature-banner--circle-right::after {
    bottom: 0;
    right: 0;
    transform: translate(20%, 30%);
}

.feature-banner--circle-left::after {
    top: 0;
    left: 0;
    transform: translate(-20%, -30%);
}

.feature-banner__content {
    position: relative;
    z-index: 1;
}

.feature-banner__content--right {
    text-align: right;
}

.feature-banner__title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0d3b66;
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .feature-banner__title {
        font-size: 2.8rem;
    }
    .feature-banner__subtitle {
        font-size: 1.8rem;
    }
}

.feature-banner__subtitle {
    font-size: 1.2rem;
    color: #0d3b66;
    margin-bottom: 5px;
}

.feature-banner__subtitle--highlight {
    color: #ffffff;
}

.feature-banner__desc {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.feature-banner__img {
    position: absolute;
    z-index: 1;
}

.feature-banner__img-blue {
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    transform: translateX(30%);
}

.feature-banner__img-yellow {
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    transform: translateX(-30%);
}

@media (min-width: 768px) {
    .feature-banner__img-blue {
        transform: none;
    }

    .feature-banner__img-yellow {
        transform: none;
    }
}

.feature-banner__image-wrap {
    position: absolute;
    top: 0;
    height: 100%;
    width: 55%;
    overflow: hidden;
    z-index: 1;
}

.feature-banner__image-wrap--right {
    right: 0;
}
.feature-banner__image-wrap--left {
    left: 0;
}

.feature-banner__image-wrap--right .feature-banner__img {
    position: static;
    height: 100%;
    width: auto;
    transform: translateX(30%);
}

.feature-banner__image-wrap--left .feature-banner__img {
    position: static;
    height: 100%;
    width: auto;
    transform: translateX(-30%);
}

@media (min-width: 768px) {
    .feature-banner__image-wrap--right .feature-banner__img,
    .feature-banner__image-wrap--left .feature-banner__img {
        transform: none;
        transition: transform 0.35s ease;
    }

    .feature-banner:hover .feature-banner__image-wrap .feature-banner__img {
        transform: scale(1.08);
    }
}

.products-section__title {
    background: url('../openfs/assets/img/leaf.webp');
    background-repeat: no-repeat;
    background-position: center;
    font-size: 28px;
    color: #2c5498;
    font-family: var(--font-section);
}

.products-section__subtitle {
    color: #777070;
    max-width: 600px;
    margin: 0 auto;
    font-size: 17px;
    font-weight: 100;
}

.products-categories {
    border-radius: 14px;
    overflow: hidden;
}

.products-categories .category-item {
    border: none;
    background: #033788;
    min-height: 140px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    transition:
        background 0.3s ease,
        color 0.3s ease;
    border: 1px solid #ffffff;
    text-decoration: none;
    color: inherit;
}

.products-categories .category-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.products-categories .category-item span {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    transition: color 0.3s ease;
}

.products-categories .category-item:hover,
.products-categories .category-item.active {
    background: #dff5ff;
}

.products-categories .category-item:hover img,
.products-categories .category-item.active img {
    filter: none;
}

.products-categories .category-item:hover span,
.products-categories .category-item.active span {
    color: #033788;
}

.product-item {
    position: relative;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
}

.product-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-item:hover::after {
    opacity: 1;
}

.product-item__image {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #fafafa;
    overflow: hidden;
}

.product-item__image img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-item:hover .product-item__image img {
    transform: scale(1.15);
}

.product-item__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}

.product-item__category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.product-item__title {
    font-weight: 700;
    color: #082b4b;
    margin-bottom: 12px;
}

.product-item__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
    line-height: 14px;
}

.product-item__title a:hover {
    color: var(--brand-primary);
}

.products-slider {
    overflow: hidden;
    width: 100%;
    height: auto;
}

.products-slider .swiper-wrapper {
    height: auto;
}

.products-slider .swiper-slide {
    flex-shrink: 0;
    height: auto;
    width: auto;
    color: inherit;
    display: block;
    align-items: initial;
}

.products-slider .product-item {
    height: 100%;
}

.products-slider__next,
.products-slider__prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: var(--brand-primary);
    width: auto;
    height: auto;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.products-slider__next::after,
.products-slider__prev::after {
    font-size: 28px;
    font-weight: 700;
}

.products-slider__next:hover,
.products-slider__prev:hover {
    color: var(--brand-secondary);
    background: none;
}

.products-slider-wrapper {
    position: relative;
}

.products-slider__next {
    right: 10px;
}

.products-slider__prev {
    left: 10px;
}

.product-item__badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: var(--brand-orange);
    border-radius: 999px;
    margin-bottom: 12px;
    margin-top: 12px;
}

@media (min-width: 769px) {
    .products-slider__next {
        right: -24px;
    }

    .products-slider__prev {
        left: -24px;
    }
}

@media (min-width: 577px) {
    .products-section__title {
        font-size: 34px;
    }

    .product-item__body {
        padding: 25px;
    }
}

@media (min-width: 993px) {
    .products-section__title {
        font-size: 50px;
    }

    .category-item {
        min-height: 180px;
    }

    .category-item span {
        font-size: 20px;
    }

    .product-item__title {
        font-size: 22px;
        line-height: 23px;
    }
}

.archive-categories {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.archive-categories .category-item {
    min-height: auto;
    flex-direction: row;
    justify-content: flex-start;
    padding: 14px 18px;
    border-radius: 12px;
    gap: 14px;
}

.archive-categories .category-item img {
    width: 36px;
    height: 36px;
}

.archive-categories .category-item span {
    font-size: 15px;
}

.archive-categories .category-item:hover,
.archive-categories .category-item.active {
    background: #dff5ff;
}

.archive-sidebar {
    background: var(--brand-primary);
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(0, 86, 179, 0.2);
}

.archive-sidebar .archive-sidebar__title {
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 14px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.archive-sidebar .archive-categories {
    gap: 8px;
}

.archive-sidebar .archive-categories .category-item {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--brand-primary);
}

.archive-sidebar .archive-categories .category-item span {
    color: var(--brand-primary);
    font-weight: 600;
}

.archive-sidebar .archive-categories .category-item img {
    filter: none;
}

.archive-sidebar .archive-categories .category-item:hover,
.archive-sidebar .archive-categories .category-item.active {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.archive-sidebar .archive-categories .category-item.active {
    background: var(--brand-secondary);
}

.archive-sidebar .archive-categories .category-item.active span {
    color: #fff;
}

.archive-sidebar .archive-categories .category-item.active img {
    filter: brightness(0) invert(1);
}

.archive-subcats {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.archive-subcats__title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.8;
}

.archive-subcats__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.archive-subcats__item:hover {
    opacity: 1;
}

.archive-subcats__item input[type='checkbox'] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.archive-search {
    display: flex;
    margin: 0 auto;
    border: 1px solid #e4e4e4;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}

.archive-search__input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    outline: none;
    font-size: 15px;
}

.archive-search__btn {
    border: none;
    background: var(--brand-primary);
    color: #fff;
    padding: 0 22px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.archive-search__btn:hover {
    background: var(--brand-secondary);
}

.cta-section {
    position: relative;
    background-color: #0256b3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #0256b3;
    opacity: 0.85;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .cta-section {
        background-attachment: scroll;
    }
}

@media (min-width: 768px) {
    .cta-section {
        background-position: 20% center;
    }
}

.cta-section__title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 40px;
    font-family: var(--font-section);
}

.cta-section__desc {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .cta-section {
        background-size: cover;
        text-align: center;
    }
}

.post-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 8.5 / 11;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.post-card__image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card__image img {
    transform: scale(1.08);
}

.post-card__content {
    z-index: 2;
}

.post-card__overlay {
    position: absolute;
    inset: 0;
    top: auto;
    height: 100%;
    background: linear-gradient(to top, #082b4b 0%, rgb(4 48 107 / 61%) 10%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.post-card__info {
    position: relative;
    z-index: 2;
    padding: 25px;
    color: #fff;
    transition: transform 0.35s ease;
}

.post-card:hover .post-card__info {
    transform: translateY(-70px);
}

.post-card__meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.post-card__meta i {
    color: #4da6ff;
}

.post-card__title {
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    transition: color 0.3s;
    display: block;
}

.post-card__title:hover {
    color: var(--brand-secondary);
}

.post-card__excerpt {
    color: rgba(255, 255, 255);
    font-size: 1rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card__content .primary-btn-1 {
    position: absolute;
    left: 25px;
    bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.post-card:hover .post-card__content .primary-btn-1 {
    opacity: 1;
    transform: translateY(0);
}

.post-card__tags {
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 20px;
}

.post-card__body {
    padding: 25px;
}

.footer {
    background-color: #06285d;
    background-image: url('../openfs/assets/img/footer-bg.png');
    background-size: cover;
    color: #fff;
    padding: 80px 0 20px;
}

.footer__logo {
    margin-bottom: 20px;
}

.footer__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer__list,
.footer__contact {
    list-style: none;
    padding: 0;
}

.footer__list li a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 2px;
}

.footer__contact li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.footer__bottom {
    text-align: center;
    border-top: 1px solid #9d9d9d3d;
    margin-top: 40px;
    padding-top: 20px;
    color: #9d9d9d;
}

.footer__bottom a {
    color: #9d9d9d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__bottom a:hover {
    color: #fff;
}

.page-banner {
    padding-top: 80px;
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 689;
    max-height: 689px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.page-banner::before,
.page-banner-products::before,
.page-banner--product::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(52 52 52 / 85%), rgb(42 42 42 / 68%));
}

.page-banner .container,
.page-banner-products .container,
.page-banner--product .container {
    position: relative;
    z-index: 1;
}

.page-banner__title {
    font-family: var(--font-section);
    font-size: 38px !important;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    text-align: start;
}

.page-banner--product {
    aspect-ratio: 1920 / 560;
    max-height: 560px;
}

@media (max-width: 991px) {
    .page-banner {
        padding-top: 180px;
        min-height: 400px;
    }

    .page-banner-products {
        padding-top: 140px;
    }

    .page-banner__title {
        font-size: 2rem !important;
    }

    .page-banner--product .page-banner__title {
        font-size: 1.5rem !important;
    }
}

.feature-box {
    margin-top: 30px;
}

.icon-wrapper {
    position: absolute;
    top: -48px;
    left: 16px;
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1;
}

.product-detail__image-wrapper {
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.product-detail__image {
    max-width: 100%;
    object-fit: contain;
}

.product-detail__content {
    height: 100%;
}

.product-detail__title {
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    color: #1c2733;
}

.product-detail__description {
    margin-bottom: 3rem;
    margin-top: 1rem;
    padding: 1.5rem;
    border: 1px solid #e4e9f0;
    border-radius: 12px;
    /* background: #f9fafc; */
    color: #79818b;
    line-height: 1.9;
    font-size: 1.05rem;
}

.product-detail__meta {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-detail__meta-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
}

.product-detail__label {
    font-weight: 700;
    color: #111;
}

.product-detail__value {
    color: #7d8793;
}

.product-detail__value--tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.product-detail__tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
}

.product-detail__tag--category {
    background: #e8f0fe;
    color: var(--brand-primary);
}

.product-detail__tag--subcategory {
    background: #e0f7f9;
    color: #0a7e8c;
}

.product-related {
    padding: 1.25rem;
    background: #f7f9fc;
    border: 1px solid #eceff4;
    border-radius: 12px;
    position: sticky;
    top: 160px;
}

.product-related__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.product-related__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #eceff4;
    border-radius: 10px;
    padding: 0.6rem;
    margin-bottom: 0.75rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-related__item:last-child {
    margin-bottom: 0;
}

.product-related__item:hover {
    box-shadow: 0 6px 16px rgba(0, 86, 179, 0.12);
}

.product-related__image {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #eef1f6;
}

.product-related__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-related__name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1d2736;
    line-height: 1.35;
    text-align: left;
}

.product-related__item:hover .product-related__name {
    color: var(--brand-primary);
}

@media (max-width: 991.98px) {
    .product-related {
        margin-top: 1rem;
    }
}

@media (max-width: 575.98px) {
.product-detail__image-wrapper {
        max-width: 420px;
        margin: 0 auto;
    }

    .product-detail__title {
        font-size: 1.5rem;
    }

    .product-detail__meta-item {
        grid-template-columns: 110px 1fr;
    }
}

.product-specs__header {
    margin-bottom: 2rem;
}

.product-specs__title {
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: #1d2736;
}

.product-specs__subtitle {
    margin: 0;
    color: #7a8594;
    font-size: 1rem;
}

.contact-section {
    position: relative;
    background-image: url('../openfs/assets/img/contact-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.contact-section__title {
    margin-bottom: 1rem;
    font-size: 30px;
    font-weight: 900;
    color: #1e293b;
}

.contact-section__subtitle {
    max-width: 520px;
    margin: 0 auto;
    color: #334155;
    line-height: 1.8;
}

.contact-card {
    height: 100%;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid #dce2ea;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #0d56b3;
}

.contact-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: #fe700e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
}

.contact-card__title {
    margin-bottom: 3px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #585858;
}

.contact-card__text {
    margin: 0;
    color: #6b7280;
    line-height: 20px;
}

.contact-form-wrapper {
    padding: 2rem;
    background: #f7f7f7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    transition: border-color 0.3s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    border-color: #0d56b3;
}

.contact-form__textarea {
    resize: none;
}

.contact-form__button {
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    background: #0d56b3;
    color: white;
    font-weight: 700;
}

.archive-categories .category-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    border: none;
    background: transparent;
}

.products-categories .category-item {
    text-decoration: none;
    color: inherit;
}

.product-archive-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.product-archive-pagination .page-numbers li {
    list-style: none;
}
.product-archive-pagination a,
.product-archive-pagination span:not(.page-numbers-dots) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    text-decoration: none;
    color: #1f2937;
}
.product-archive-pagination .page-numbers-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    color: #1f2937;
}
.product-archive-pagination .current {
    background: #dff5ff;
    border-color: #b8e4f5;
    font-weight: 600;
}

.brand-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 30px 20px;
    transition: box-shadow 0.3s ease;
}

.brand-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.brand-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.brand-card__img {
    max-width: 100%;
    object-fit: contain;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #edf0f5;
    overflow: hidden;
    height: 100%;
}

.product-card__inner {
    display: flex;
    align-items: stretch;
    gap: 30px;
    padding: 32px;
    height: 100%;
}

.product-card__image-link {
    flex: 0 0 200px;
    display: block;
    align-self: center;
}

.product-card__image {
    width: 100%;
}

.product-card__image img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__content {
    flex: 1;
    min-width: 0;
    align-self: center;
}

.product-card__brand {
    display: block;
    color: #7b8794;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.product-card__category {
    display: inline-block;
    background: #e8f0fe;
    color: var(--brand-primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
}

.product-card__subcategory {
    display: inline-block;
    background: #e0f7f9;
    color: #0a7e8c;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
}

.product-card__tag-sep {
    display: inline-block;
    color: #bbb;
    font-size: 0.8rem;
    margin: 0 4px;
}

.product-card__title {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.product-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card__title a:hover {
    color: var(--brand-primary);
}

.product-card__excerpt {
    color: #667085;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.product-card__actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    border-left: 1px solid #edf0f5;
    padding-left: 24px;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

@media (max-width: 1200px) {
    .product-card__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .product-card__image-link,
    .product-card__content {
        align-self: stretch;
    }

    .product-card__image img {
        height: 180px;
    }

    .product-card__actions {
        border-left: none;
        border-top: 1px solid #edf0f5;
        padding-left: 0;
        padding-top: 16px;
        justify-content: center;
    }
}

.marcas-section {
    background: #f4f8fb;
    overflow: hidden;
    padding-top: 110px;
    padding-bottom: 110px;
}

@media (min-width: 768px) {
    .marcas-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.marcas-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.marcas-fade-left,
.marcas-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marcas-fade-left {
    left: 0;
    background: linear-gradient(to right, #f4f8fb 0%, transparent 100%);
}

.marcas-fade-right {
    right: 0;
    background: linear-gradient(to left, #f4f8fb 0%, transparent 100%);
}

.marcas-slider {
    overflow: hidden;
    width: 100%;
    height: auto;
    flex: 1;
}

.marcas-slider .swiper-wrapper {
    height: auto;
    transition-timing-function: linear !important;
}

.marcas-slider .swiper-slide {
    height: auto;
    width: auto;
    flex-shrink: 0;
}

.marca-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 10px;
}

.marca-slide__img {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

@media (min-width: 576px) {
    .marcas-fade-left,
    .marcas-fade-right {
        width: 100px;
    }
}

@media (min-width: 992px) {
    .marcas-fade-left,
    .marcas-fade-right {
        width: 120px;
    }
}

/* Marcas archive pagination */

.marca-pagination {
    margin-top: 50px;
}

.marca-pagination__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.marca-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #dce2ea;
    border-radius: 10px;
    background: #fff;
    color: #1f2937;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.marca-pagination__link:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

.marca-pagination__link--active {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
    font-weight: 700;
}

.marca-pagination__dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    color: #9ca3af;
    font-size: 1rem;
}

.screen-reader-text {
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
}

/* Archives pagination (brochures, eventos) */

.archive-pagination {
    margin-top: 50px;
}

.archive-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #dce2ea;
    border-radius: 10px;
    background: #fff;
    color: #1f2937;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.archive-pagination a.page-numbers:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

.archive-pagination .page-numbers.current {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
    font-weight: 700;
}

.archive-pagination .page-numbers.dots {
    border-color: transparent;
    background: transparent;
    color: #9ca3af;
}

.floatWapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #7acf4a;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    transition: 0.3s all;
}

.floatWapp:hover {
    color: #fff;
    transform: scale(1.08);
    transition: 0.3s all;
}

.floatWapp svg {
    margin-top: 5px;
}

.floatWapp:after,
.floatWapp:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    border-radius: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid #7acf4a;
    -webkit-animation-name: popupBtn;
    animation-name: popupBtn;
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

#whatsapp-chat {
    position: fixed;
    background: #fff;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
    bottom: 90px;
    left: 30px;
    overflow: hidden;
    z-index: 99;
    animation-name: showchat;
    animation-duration: 0.5s;
    transform: scale(1);
}

a.blantershow-chat i {
    transform: scale(1.2);
    margin: 0 10px 0 0;
}

.header-chat {
    background: linear-gradient(to right top, #6f96f3, #164ed2);
    color: #fff;
    padding: 20px;
}

.header-chat h3 {
    margin: 0 0 10px;
}

.header-chat p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.info-avatar {
    position: relative;
}

.info-avatar img {
    border-radius: 100%;
    width: 50px;
    height: 50px;
    object-fit: cover;
    float: left;
    margin: 0 10px 0 0;
}

.info-avatar-icon {
    z-index: 1;
    background: #23ab23;
    color: #fff;
    padding: 4px 5px;
    border-radius: 100%;
    position: absolute;
    top: 30px;
    left: 30px;
}

.informasi {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}

.informasi + .informasi {
    border-top: 1px solid #f0f0f0;
}

.informasi:hover {
    background: #f5f7fa;
    text-decoration: none;
}

.info-avatar {
    flex-shrink: 0;
}

.info-avatar .info-avatar-icon {
    top: auto;
    left: auto;
    right: -2px;
    bottom: -2px;
}

.info-chat {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.chat-nama {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-color);
}

.chat-label {
    font-size: 13px;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-nama + .chat-label,
.chat-label + .chat-label {
    margin-top: 2px;
}

.show-wp {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    transition:
        visibility 0s,
        opacity 0.4s ease,
        transform 0.4s ease;
}

.hide-wp {
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
    transition:
        visibility 0s 0.4s,
        opacity 0.4s ease,
        transform 0.4s ease;
}

.close-chat {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 2;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    text-decoration: none;
    transition: background 0.2s ease;
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #fff;
    text-decoration: none;
}

@-webkit-keyframes popupBtn {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.6);
        opacity: 0.3;
    }
    to {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes popupBtn {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.6);
        opacity: 0.3;
    }
    to {
        transform: scale(2.2);
        opacity: 0;
    }
}

.social-rrss {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 50%;
    right: 0;
    margin-bottom: 10px;
    width: 195px;
    z-index: 9999;
}

.social-rrss a {
    text-decoration: none;
    font-weight: bold;
    padding: 0.6em;
    margin: 3px 0px;
    text-align: left;
    transform: translateX(150px);
    transition: all 0.5s;
    display: flex;
}

.book {
    color: #fff;
    border-radius: 10px 0px 0px 10px;
}

.icon {
    margin-right: 5px;
    width: 30px;
    height: 30px;
}

.book p {
    color: #fff;
    margin-bottom: 0px;
}

.social-rrss a i {
    margin-right: 20px;
    width: 30px;
    height: 30px;
    background: #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 100%;
}

.social-rrss > a:hover {
    transform: translateX(0px);
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    background: #2c5498;
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2c5498;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:active {
    background-color: #2c5498;
}

::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 0px;
}

::-webkit-scrollbar-track:hover,
::-webkit-scrollbar-track:active {
    background: #ffffff;
}

.body-product {
    background: #fff;
    margin-top: -131px;
    z-index: 2;
    position: relative;
    border-radius: 20px 20px 0px 20px;
    padding: 50px 20px;
}

.btn-filter {
    color: white;
    font-size: 14px;
    background-color: #34c7df;
    align-items: center;
    line-height: normal;
    white-space: nowrap;
    padding: 20px 24px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.6s;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    border: none !important;
}

.img-event {
    border-radius: 20px;
}

.event-detail__description {
    padding: 20px;
    border: 1px solid #dedede;
    border-radius: 10px;
}

.event-detail__description p,
.event-detail__content p,
.event-detail__gallery p {
    text-align: justify;
}

.event-detail__description iframe,
.event-detail__content iframe,
.event-detail__gallery iframe {
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 0 auto 1rem;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 0;
}

.title_single_event {
    font-size: 30px;
    font-weight: 900;
}

.text-about p {
    text-align: justify;
}

.text-about h2 {
    text-align: justify;
    font-family: var(--font-section);
    color: #0d56b3;
    font-size: 45px;
}

.bg-color-icon {
    background-color: #fe700e;
}

.about-feature {
    border-color: #0d56b3 !important;
}

.about-feature h4 {
    font-weight: 900;
}

.about-feature p {
    text-align: justify;
}

.text-about h3 {
    color: #0d56b3;
}

.about-content ul li::marker {
    color: var(--brand-orange);
}

.text-policy p {
    text-align: justify;
    font-size: 20px;
}

.form-home {
    margin-top: -65px;
}

@media (max-width: 991px) {
    .form-home {
        margin-top: 2rem;
    }
}

.section-form-home {
    padding-top: 20px;
    padding-bottom: 30px;
}

.sucursal-phone a {
    margin-left: 10px;
}

.sucursal-phone {
    color: #ff700e;
}

.contact-cards-layout {
    align-items: flex-start;
}

.contact-card--phones {
    height: auto;
    text-align: center;
}

.contact-branches__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    text-align: left;
}

.contact-branch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: #f8fafc;
}

.contact-branch__city {
    font-weight: 700;
    color: #585858;
}

.contact-branch__phone {
    color: #475569;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card--compact {
    height: 130px;
    padding: 1rem 1.25rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-card--compact .contact-card__icon {
    width: 48px;
    height: 48px;
    margin: 0;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-card--compact .contact-card__title {
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.contact-card--compact .contact-card__text {
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .contact-branch {
        flex-direction: column;
        align-items: flex-start;
    }
}

.contact-card--map {
    height: auto;
    padding: 20px 0px 0px 0px;
}

.contact-card__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-map__title {
    margin-bottom: 3px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0256b3;
}

.policy-content h2 strong {
    font-weight: 900;
    color: #0256b3;
}

.policy-content h3 strong {
    font-weight: 900;
    color: #0256b3;
}

.policy-content li strong {
    color: #0256b3;
}

.primary-btn-2 {
    color: white;
    font-size: 14px;
    font-weight: 500;
    background-color: #7acf4a;
    display: inline-flex;
    align-items: center;
    line-height: normal;
    white-space: nowrap;
    padding: 20px 24px;
    gap: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.6s;
    text-decoration: none;
    font-weight: 700;
}

.primary-btn-2 span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--brand-secondary);
    transition: all 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.primary-btn-2:hover {
    color: white;
}

.primary-btn-2:hover span {
    width: 225%;
    height: 1000.5px;
}

.primary-btn-2:active {
    background-color: var(--brand-secondary);
}

.home-slider {
    width: 100%;
    overflow: hidden;
}

@media (max-width: 767px) {
    .home-slider {
        margin-top: 125px;
    }
}

.home-slider .slider-image {
    width: 100%;
    aspect-ratio: 750 / 1000;
}

@media (min-width: 1200px) {
    .home-slider .slider-image {
        aspect-ratio: 1920 / 689;
    }
}

.home-slider .slider-image,
.home-slider .swiper-wrapper,
.home-slider .swiper-slide {
    height: 100%;
}

.home-slider .slider-image__link,
.home-slider .slider-image__picture {
    display: block;
    width: 100%;
    height: 100%;
}

.home-slider .slider-image__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.event-detail__gallery .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin: 0;
}

.event-detail__gallery .gallery-item,
.event-detail__gallery .gallery .gallery-item {
    float: none !important;
    margin: 0 !important;
    width: auto !important;
    max-width: none !important;
    text-align: left;
}

.event-detail__gallery .gallery-item,
.event-detail__gallery .gallery-icon,
.event-detail__gallery .gallery-item a {
    display: block;
    height: 100%;
}

.event-detail__gallery .gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    background: #f3f3f3;
}

.event-detail__gallery .gallery-icon {
    margin: 0;
    height: 100%;
}

.event-detail__gallery .gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0 !important;
    transition: transform 0.3s ease;
}

.event-detail__gallery .gallery-item:hover img {
    transform: scale(1.05);
}

.event-detail__gallery .gallery-caption,
.event-detail__gallery br {
    display: none !important;
}

.event-detail__gallery .gallery p {
    display: none !important;
}

.event-detail__gallery .gallery::before,
.event-detail__gallery .gallery::after {
    content: none !important;
    display: none !important;
}

@media (max-width: 575px) {
    .event-detail__gallery .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Ninja Forms — CTA home (form id=1) */
.form-home-new #nf-form-1-cont {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.form-home-new #nf-form-1-cont .nf-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Ocultar labels si usas placeholders */
.form-home-new #nf-form-1-cont .nf-field-label {
    display: none;
}

.form-home-new #nf-form-1-cont .nf-form-fields-required {
    display: none;
}

.form-home-new #nf-form-1-cont .nf-field-container {
    margin: 0;
    padding: 0;
}

/* Inputs: reutiliza clases del tema + fallback para .ninja-forms-field */
.form-home-new #nf-form-1-cont .contact-form__input,
.form-home-new #nf-form-1-cont .ninja-forms-field:not([type='submit']):not([type='button']) {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    transition: border-color 0.3s ease;
    box-shadow: none;
    height: auto;
}

.form-home-new #nf-form-1-cont .contact-form__input:focus,
.form-home-new #nf-form-1-cont .ninja-forms-field:not([type='submit']):not([type='button']):focus {
    border-color: #0d56b3;
}

/* Botón submit (Ninja usa <input type="submit">) */
.form-home-new #nf-form-1-cont .contact-form__button,
.form-home-new #nf-form-1-cont input[type='submit'].ninja-forms-field {
    width: 100%;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    background: #0d56b3;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.form-home-new #nf-form-1-cont input[type='submit'].ninja-forms-field:hover {
    background: #0a4690;
}

/* Mensajes de error */
.form-home-new #nf-form-1-cont .nf-error-msg {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Ninja Forms — Buzón sugerencias (form id=2) */
.suggestion-box #nf-form-2-cont {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.suggestion-box #nf-form-2-cont .nf-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.suggestion-box #nf-form-2-cont .nf-field-label {
    display: none;
}

.suggestion-box #nf-form-2-cont .nf-form-fields-required {
    display: none;
}

.suggestion-box #nf-form-2-cont .nf-field-container {
    margin: 0;
    padding: 0;
}

/* Inputs y select */
.suggestion-box #nf-form-2-cont .contact-form__input,
.suggestion-box #nf-form-2-cont select.ninja-forms-field,
.suggestion-box #nf-form-2-cont .ninja-forms-field:not([type='submit']):not([type='button']):not(textarea) {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    transition: border-color 0.3s ease;
    box-shadow: none;
    height: auto;
}

.suggestion-box #nf-form-2-cont .contact-form__input:focus,
.suggestion-box #nf-form-2-cont select.ninja-forms-field:focus,
.suggestion-box #nf-form-2-cont .ninja-forms-field:not([type='submit']):not([type='button']):not(textarea):focus {
    border-color: #0d56b3;
}

/* Textarea más alto (~6 filas como el HTML estático) */
.suggestion-box #nf-form-2-cont .contact-form__textarea,
.suggestion-box #nf-form-2-cont textarea.ninja-forms-field {
    width: 100%;
    min-height: 9rem; /* equivalente a rows="6" */
    padding: 1rem 1.25rem;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    transition: border-color 0.3s ease;
    box-shadow: none;
    resize: none;
    line-height: 1.5;
}

.suggestion-box #nf-form-2-cont .contact-form__textarea:focus,
.suggestion-box #nf-form-2-cont textarea.ninja-forms-field:focus {
    border-color: #0d56b3;
}

/* Botón */
.suggestion-box #nf-form-2-cont .contact-form__button,
.suggestion-box #nf-form-2-cont input[type='submit'].ninja-forms-field {
    width: 100%;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    background: #0d56b3;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.suggestion-box #nf-form-2-cont input[type='submit'].ninja-forms-field:hover {
    background: #0a4690;
}

.suggestion-box #nf-form-2-cont .nf-error-msg {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Nota legal debajo del form */
.suggestion-box .suggestion-box__note {
    margin-top: 1.5rem;
}

.nf-form-content select.ninja-forms-field:not([multiple]) {
    line-height: 15px !important;
}

.nf-response-msg {
    padding: 20px;
    background: #4777b9;
    border-radius: 10px;
    color: #fff;
    text-align: center;
}

.support-slider .swiper-slide {
    display: flex;
    justify-content: center;
}

.support-slider .contact-card--compact {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.support-slider .contact-card__text a {
    text-decoration: none;
    color: var(--brand-primary);
    font-weight: 700;
}

.support-slider .contact-card--compact .contact-card__title {
    font-size: 1.15rem;
}

.support-slider .contact-card__icon {
    background-color: #25d366;
}

.support-section .contact-card__icon {
    width: 68px;
    height: 68px;
    font-size: 1.7rem;
    background-color: #25d366;
}

.support-section .contact-card__text a {
    text-decoration: none;
    color: var(--brand-primary);
    font-weight: 700;
}

.support-section .contact-card--compact .contact-card__title {
    font-size: 1.3rem;
}

.support-section .contact-card--compact .contact-card__text {
    font-size: 1rem;
}

.support-section__image {
    max-height: 520px;
    width: 100%;
    object-fit: cover;
}
