@charset "UTF-8";
/* ========================================
   LOADER BAR - TOPO DA PÁGINA
======================================== */
#loader-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #4158d0, #c850c0, #fecd00);
    z-index: 999999;
    transition: width 0.3s ease-out;
    box-shadow: 0 0 20px rgba(65, 88, 208, 0.5), 0 0 60px rgba(200, 80, 192, 0.3);
    border-radius: 0 2px 2px 0;
}

#loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loaderShine 1.2s ease-in-out infinite;
}

@keyframes loaderShine {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

#loader-bar.complete {
    width: 100% !important;
    transition: width 0.5s ease-out;
    opacity: 1;
}

#loader-bar.hidden {
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

/* ========================================
   RESET E ESTILOS GLOBAIS
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: linear-gradient(135deg, #4158d0 0%, #c850c0 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif;
    padding-top: 0 !important;
    line-height: 1.6;
    color: #1a1a2e;
}

body.menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ========================================
   CONTAINER E GRID SYSTEM
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 12px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.row-gap-4 {
    row-gap: 1.25rem;
}

[class*="col-"] {
    padding: 0 8px;
    width: 100%;
    flex-shrink: 0;
}

.col-12 { width: 100%; }
.col-4 { width: 33.333%; }
.col-6 { width: 50%; }
.col-3 { width: 25%; }
.col-2 { width: 16.666%; }

@media (min-width: 576px) {
    .col-sm-3 { width: 25%; }
    .col-sm-6 { width: 50%; }
    .col-sm-12 { width: 100%; }
}

@media (min-width: 768px) {
    .col-md-2 { width: 16.666%; }
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.333%; }
    .col-md-6 { width: 50%; }
    .col-md-8 { width: 66.666%; }
    .col-md-12 { width: 100%; }
    .container { padding: 0 24px; }
    .container-fluid { padding: 0 20px; }
}

@media (min-width: 992px) {
    .col-lg-2 { width: 16.666%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.333%; }
    .col-lg-6 { width: 50%; }
    .col-lg-8 { width: 66.666%; }
    .col-lg-10 { width: 83.333%; }
    .col-lg-12 { width: 100%; }
    .container { padding: 0 32px; }
    .container-fluid { padding: 0 28px; }
}

@media (min-width: 1200px) {
    .col-xl-2 { width: 16.666%; }
    .col-xl-3 { width: 25%; }
    .col-xl-4 { width: 33.333%; }
}

/* ========================================
   UTILITÁRIOS
======================================== */
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-end { justify-content: flex-end; }
.text-center { text-align: center; }
.text-start { text-align: left; }
.text-end { text-align: right; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline-block { display: inline-block !important; }

@media (min-width: 576px) {
    .d-sm-block { display: block !important; }
    .d-sm-none { display: none !important; }
}

@media (min-width: 768px) {
    .d-md-block { display: block !important; }
    .d-md-none { display: none !important; }
    .d-md-flex { display: flex !important; }
}

@media (min-width: 992px) {
    .d-lg-block { display: block !important; }
    .d-lg-none { display: none !important; }
    .d-lg-flex { display: flex !important; }
}

.icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.icon-svg svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 0;
}

/* ========================================
   HEADER
======================================== */
.header-section {
    background: rgba(255, 255, 255, 0.07) !important;
    padding: 0 !important;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border: none !important;
    border-radius: 0 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08) !important;
}

.header-section.header-transparent {
    background: rgba(255, 255, 255, 0.07) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.header-section.header-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.header-top-bar {
    background: rgba(255, 255, 255, 0.3) !important;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.header-section.header-scrolled .header-top-bar {
    background: rgba(255, 255, 255, 0.2) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-top-bar .social-icons-top {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.header-top-bar .social-icons-top a {
    color: rgba(26, 26, 46, 0.7);
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    backdrop-filter: blur(4px);
}

.header-top-bar .social-icons-top a:hover {
    color: #fecd00;
    background: rgba(254, 205, 0, 0.2);
    transform: translateY(-2px);
}

.header-main {
    background-color: #ffffff42;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.header-section.header-scrolled .header-main {
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
}

.header-logo {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.header-logo:hover {
    transform: scale(1.08) rotate(-1deg);
}

.header-logo img {
    max-height: 50px;
    width: auto;
    transition: filter 0.3s ease, transform 0.3s ease;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.05));
}

.header-section.header-scrolled .header-logo img {
    filter: none;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    flex: 1;
}

.main-menu__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
    align-items: center;
    flex-wrap: wrap;
}

.main-menu__list li a {
    display: block;
    padding: 8px 14px;
    color: rgba(26, 26, 46, 0.8);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.main-menu__list li a:hover,
.main-menu__list li a.active {
    background: rgba(254, 205, 0, 0.15);
    color: #1a1a2e;
}

.main-menu__list li a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 3px;
    background: #fecd00;
    border-radius: 4px;
}

.mobile-nav__toggler {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(26, 26, 46, 0.1);
    transition: all 0.3s ease;
    color: #1a1a2e;
    padding: 0;
    margin-left: 4px;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.mobile-nav__toggler:hover {
    background: rgba(254, 205, 0, 0.2);
    border-color: rgba(254, 205, 0, 0.3);
    transform: scale(1.05);
}

.mobile-nav__toggler svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 991px) {
    .header-logo img { max-height: 42px; }
    .main-menu__list { display: none !important; }
    .mobile-nav__toggler { display: inline-flex !important; }
}

@media (max-width: 767px) {
    .header-top-bar .social-icons-top a { width: 26px; height: 26px; font-size: 12px; }
    .header-top-bar .social-icons-top { gap: 4px; }
    .header-logo img { max-height: 36px; }
    .mobile-nav__toggler { width: 36px; height: 36px; }
    .mobile-nav__toggler svg { width: 20px; height: 20px; }
}

@media (max-width: 480px) {
    .header-logo img { max-height: 32px; }
    .header-top-bar .social-icons-top a { width: 22px; height: 22px; font-size: 10px; }
    .header-top-bar { padding: 2px 0; }
    .header-main { padding: 4px 0; }
    .mobile-nav__toggler { width: 32px; height: 32px; border-width: 1.5px; }
    .mobile-nav__toggler svg { width: 18px; height: 18px; }
}

/* ========================================
   MOBILE MENU
======================================== */
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 340px;
    height: 100vh;
    background: #1a1a2e;
    z-index: 99999;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 24px 20px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.3);
}

.mobile-nav__wrapper.open {
    right: 0;
}

.mobile-nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mobile-nav__overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.mobile-nav__close:hover {
    background: rgba(254, 205, 0, 0.2);
    border-color: rgba(254, 205, 0, 0.4);
    transform: rotate(90deg) scale(1.1);
    color: #fecd00;
}

.mobile-nav__close:active {
    transform: scale(0.9);
}

.mobile-nav__content .logo-box {
    margin-bottom: 24px;
    padding-top: 8px;
}

.mobile-nav__content .logo-box img {
    max-height: 45px;
    width: auto;
}

.mobile-nav__list {
    margin: 0 0 24px 0;
}

.mobile-nav__list li a {
    display: block;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav__list li a:hover,
.mobile-nav__list li a.active {
    color: #fecd00;
    padding-left: 8px;
}

.mobile-nav__list li:last-child a {
    border-bottom: none;
}

.mobile-nav__contact {
    margin: 0 0 16px 0;
}

.mobile-nav__contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    padding: 8px 0;
}

.mobile-nav__contact li .icon-svg {
    width: 18px;
    height: 18px;
    color: #fecd00;
}

.mobile-nav__contact li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav__contact li a:hover {
    color: #fecd00;
}

.mobile-nav__social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav__social a .icon-svg {
    width: 20px;
    height: 20px;
}

.mobile-nav__social a:hover {
    background: rgba(254, 205, 0, 0.15);
    color: #fecd00;
    border-color: rgba(254, 205, 0, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .mobile-nav__wrapper { max-width: 300px; padding: 20px 16px; }
    .mobile-nav__list li a { font-size: 15px; padding: 10px 0; }
    .mobile-nav__contact li { font-size: 13px; }
    .mobile-nav__close { width: 36px; height: 36px; font-size: 20px; top: 12px; right: 12px; }
}

/* ========================================
   MODAL MAPS
======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal-overlay.active {
    display: flex;
}

.modal-map-content {
    background: #fff;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    border: 3px solid #fecd00;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-map-header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    padding: 12px 18px;
    border-bottom: 3px solid #fecd00;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-map-header h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

.modal-map-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 22px;
    cursor: pointer;
    padding: 0 6px;
    transition: color 0.3s ease;
}

.modal-map-close:hover {
    color: #fff;
}

.modal-map-body iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.modal-map-footer {
    background: #fff;
    padding: 8px 16px;
    border-top: 1px solid #e9ecef;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}

.btn-map-close,
.btn-map-route {
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: none;
}

.btn-map-close {
    background: linear-gradient(135deg, #fecd00, #fdb813);
    color: #1a1a2e;
}

.btn-map-route {
    background: #25D366;
    color: #fff;
    text-decoration: none;
}

.btn-map-close:hover,
.btn-map-route:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

@media (max-width: 767px) {
    .modal-overlay { padding: 10px; }
    .modal-map-content { border-radius: 12px; border-width: 2px; }
    .modal-map-header { padding: 10px 14px; }
    .modal-map-header h5 { font-size: 0.9rem; }
    .modal-map-body iframe { height: 280px; }
    .modal-map-footer { flex-direction: column; padding: 8px 12px; }
    .btn-map-close,
    .btn-map-route { width: 100%; justify-content: center; padding: 8px 16px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .modal-map-body iframe { height: 220px; }
    .modal-map-header h5 { font-size: 0.8rem; }
}

/* ========================================
   MODAL DE ZOOM DA IMAGEM
======================================== */
.image-zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: zoomFadeIn 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.image-zoom-modal.active {
    display: flex;
}

@keyframes zoomFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.image-zoom-modal .zoom-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    font-weight: 300;
    line-height: 1;
}

.image-zoom-modal .zoom-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
    border-color: #fecd00;
}

.image-zoom-modal .zoom-content {
    max-width: 92vw;
    max-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(254, 205, 0, 0.3);
}

.image-zoom-modal .zoom-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    background: #1a1a2e;
}

.image-zoom-modal .zoom-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 30px 20px 18px;
    color: #fff;
}

.image-zoom-modal .zoom-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fecd00;
}

.image-zoom-modal .zoom-info p {
    font-size: 13px;
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 767px) {
    .image-zoom-modal { padding: 10px; }
    .image-zoom-modal .zoom-close { top: 10px; right: 12px; font-size: 26px; width: 38px; height: 38px; }
    .image-zoom-modal .zoom-content { max-width: 98vw; max-height: 80vh; }
    .image-zoom-modal .zoom-info { padding: 20px 14px 14px; }
    .image-zoom-modal .zoom-info h3 { font-size: 15px; }
    .image-zoom-modal .zoom-info p { font-size: 12px; }
}

@media (max-width: 480px) {
    .image-zoom-modal .zoom-close { top: 8px; right: 8px; font-size: 20px; width: 32px; height: 32px; border-width: 1.5px; }
    .image-zoom-modal .zoom-info { padding: 16px 10px 10px; }
    .image-zoom-modal .zoom-info h3 { font-size: 13px; }
    .image-zoom-modal .zoom-info p { font-size: 11px; }
}

/* ========================================
   PRELOADER
======================================== */
#preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #4158d0, #c850c0);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease;
}
#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}
#preloader img {
    width: 100px;
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@media (max-width: 480px) {
    #preloader img { width: 70px; }
}

/* ========================================
   WHATSAPP FLUTUANTE
======================================== */
.IconeFlutuanteWhatsapp {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 9999;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.IconeFlutuanteWhatsapp a {
    display: block;
    position: relative;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid #25D366;
    background: #25D366;
    padding: 4px;
    width: 52px;
    height: 52px;
}

.IconeFlutuanteWhatsapp a:hover {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    border-color: #fecd00;
}

.IconeFlutuanteWhatsapp img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    object-fit: contain;
    padding: 2px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 767px) {
    .IconeFlutuanteWhatsapp { bottom: 85px; right: 16px; }
    .IconeFlutuanteWhatsapp a { width: 46px; height: 46px; padding: 3px; border-width: 2.5px; }
}

@media (max-width: 480px) {
    .IconeFlutuanteWhatsapp { bottom: 75px; right: 12px; }
    .IconeFlutuanteWhatsapp a { width: 40px; height: 40px; padding: 3px; border-width: 2px; }
}

/* ========================================
   BACK TO TOP
======================================== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 20px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4158d0, #c850c0);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(65, 88, 208, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 32px rgba(65, 88, 208, 0.6);
    color: #fff;
}

.back-to-top .arrow-icon svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 767px) {
    .back-to-top { width: 38px; height: 38px; bottom: 22px; right: 16px; }
    .back-to-top .arrow-icon svg { width: 16px; height: 16px; }
}

@media (max-width: 480px) {
    .back-to-top { width: 34px; height: 34px; bottom: 18px; right: 12px; }
    .back-to-top .arrow-icon svg { width: 14px; height: 14px; }
}

/* ========================================
   SCROLL REVEAL
======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.delay-1 { transition-delay: 0.05s; }
.delay-2 { transition-delay: 0.1s; }
.delay-3 { transition-delay: 0.15s; }
.delay-4 { transition-delay: 0.2s; }
.delay-5 { transition-delay: 0.25s; }
.delay-6 { transition-delay: 0.3s; }
.delay-7 { transition-delay: 0.35s; }
.delay-8 { transition-delay: 0.4s; }

/* ========================================
   PÁGINA CATEGORIAS - HERO
======================================== */
.products-hero {
    padding: 120px 0 30px;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.products-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.products-hero .hero-content h1 {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
    margin-bottom: 8px;
}

.products-hero .hero-content h1 .highlight {
    color: #fecd00;
}

.products-hero .hero-content p {
    font-size: clamp(14px, 1.2vw, 20px);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.products-hero .hero-badge {
    display: inline-block;
    background: rgba(254, 205, 0, 0.95);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   SEÇÃO DE CATEGORIAS
======================================== */
.products-section {
    background: #ffffff;
    padding: 30px 0 50px;
}

.products-section .filter-bar {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 12px 20px;
    margin-bottom: 24px;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.products-section .filter-bar .filter-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.products-section .filter-bar .filter-left .filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    color: #1a1a2e;
    cursor: pointer;
    transition: all 0.3s ease;
}

.products-section .filter-bar .filter-left .filter-btn:hover {
    background: rgba(65, 88, 208, 0.05);
    border-color: #4158d0;
}

.products-section .filter-bar .filter-left .filter-btn svg {
    width: 16px;
    height: 16px;
}

.products-section .filter-bar .filter-left .result-count {
    color: #666;
    font-size: 14px;
}

.products-section .filter-bar .filter-left .result-count strong {
    color: #1a1a2e;
}

.products-section .filter-bar .filter-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-section .filter-bar .filter-right select {
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid #e9ecef;
    background: #fff;
    font-size: 13px;
    color: #1a1a2e;
    outline: none;
    cursor: pointer;
}

.products-section .filter-bar .filter-right select:focus {
    border-color: #4158d0;
}

/* ========================================
   CATEGORY CARD
======================================== */
.featured-product-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(65, 88, 208, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.featured-product-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 60px rgba(65, 88, 208, 0.12);
}

.featured-product-card .image-box {
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    position: relative;
    cursor: pointer;
}

.featured-product-card .image-box .product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #4158d0, #c850c0);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(65, 88, 208, 0.3);
    z-index: 2;
}

.featured-product-card .image-box .product-badge.hot {
    background: linear-gradient(135deg, #fecd00, #fdb813);
    color: #1a1a2e;
}

.featured-product-card .image-box .product-badge.new {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.featured-product-card .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-product-card:hover .image-box img {
    transform: scale(1.06);
}

.featured-product-card .image-box .zoom-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 3;
    opacity: 0;
    transform: translateY(10px);
}

.featured-product-card:hover .image-box .zoom-btn {
    opacity: 1;
    transform: translateY(0);
}

.featured-product-card .image-box .zoom-btn:hover {
    background: #fecd00;
    border-color: #fecd00;
    transform: scale(1.1);
}

.featured-product-card .image-box .zoom-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #1a1a2e;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.featured-product-card .image-box .zoom-btn:hover svg {
    stroke: #fff;
}

.featured-product-card .product-desc {
    padding: 14px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-product-card .product-title {
    color: #1a1a2e;
    font-weight: 700;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    line-height: 1.3;
    transition: all 0.3s ease;
    margin-bottom: 4px;
}

.featured-product-card .product-title:hover {
    color: #4158d0;
}

.featured-product-card .product-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.featured-product-card .product-tags span {
    font-size: 8px;
    padding: 2px 10px;
    border-radius: 50px;
    background: rgba(65, 88, 208, 0.08);
    color: #4158d0;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-product-card .product-tags span.hot {
    background: rgba(254, 205, 0, 0.12);
    color: #b8960a;
}

.featured-product-card .product-tags span.new {
    background: rgba(46, 204, 113, 0.12);
    color: #27ae60;
}

.featured-product-card .black {
    color: #666;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 10px;
}

.featured-product-card .product-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cus-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #25D366, #1ebe5c);
    color: #fff;
    padding: 8px 16px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cus-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37,211,102,0.35);
    color: #fff;
}

.featured-product-card .functional-bar .cus-btn {
    background: linear-gradient(135deg, #fecd00, #fdb813);
    color: #1a1a2e;
    padding: 8px 18px;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 4px 20px rgba(254, 205, 0, 0.2);
}

.featured-product-card .functional-bar .cus-btn:hover {
    background: linear-gradient(135deg, #ffd700, #fdb813);
    box-shadow: 0 8px 35px rgba(254, 205, 0, 0.35);
    color: #1a1a2e;
}

.cus-btn svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   PAGINAÇÃO
======================================== */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination ul {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    background: #f8f9fa;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-decoration: none;
}

.pagination ul li a:hover:not(.disabled) {
    background: rgba(65, 88, 208, 0.08);
    border-color: #4158d0;
    transform: translateY(-2px);
}

.pagination ul li.active a {
    background: linear-gradient(135deg, #4158d0, #c850c0);
    color: #fff;
    border-color: #4158d0;
    box-shadow: 0 4px 15px rgba(65, 88, 208, 0.3);
}

.pagination ul li a.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ========================================
   SHOP SIDEBAR
======================================== */
.shop-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: #ffffff;
    z-index: 99999;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 24px 20px;
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.1);
}

.shop-sidebar.open {
    left: 0;
}

.shop-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.shop-sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.shop-sidebar .sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
}

.shop-sidebar .sidebar-header h6 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}

.shop-sidebar .sidebar-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #1a1a2e;
    transition: all 0.3s ease;
}

.shop-sidebar .sidebar-close:hover {
    background: rgba(254, 205, 0, 0.15);
    border-color: #fecd00;
    transform: rotate(90deg);
}

.shop-sidebar .category-block .title h6 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}

.shop-sidebar .content-block {
    margin-bottom: 12px;
}

.shop-sidebar .content-block .cus-checkBox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-sidebar .content-block .cus-checkBox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4158d0;
    cursor: pointer;
}

.shop-sidebar .content-block .cus-checkBox label {
    font-size: 14px;
    color: #1a1a2e;
    cursor: pointer;
}

.shop-sidebar .content-block p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.shop-sidebar .hr-line {
    height: 1px;
    background: #e9ecef;
    margin: 16px 0;
}

.shop-sidebar .filtro-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4158d0, #c850c0);
    color: #fff;
    padding: 10px 24px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.shop-sidebar .filtro-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(65, 88, 208, 0.3);
}

.shop-sidebar .filtro-btn svg {
    fill: #fff;
    stroke: #fff;
}

/* ========================================
   FOOTER
======================================== */
.pula-footer {
    position: relative !important;
    background: linear-gradient(180deg, #e8f4f8 0%, #d4e9f0 30%, #b8d8e8 60%, #8ec5d6 100%) !important;
    border-radius: 0 !important;
    margin-top: 0 !important;
    padding-top: 40px !important;
    padding-bottom: 0 !important;
    overflow: hidden !important;
    border: none !important;
    color: #1a2a3a !important;
    font-family: 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif !important;
    width: 100% !important;
    display: block !important;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
}

.pula-footer .cloud-layer {
    position: absolute !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.pula-footer .cloud-layer-1 { top: -20px; left: -5%; width: 30%; animation: cloudFloat 25s ease-in-out infinite; }
.pula-footer .cloud-layer-2 { top: 10px; right: -8%; width: 35%; animation: cloudFloat 30s ease-in-out infinite reverse; }
.pula-footer .cloud-layer-3 { bottom: 30%; left: -2%; width: 25%; animation: cloudFloat 20s ease-in-out infinite 5s; }
.pula-footer .cloud-layer-4 { bottom: 20%; right: -3%; width: 28%; animation: cloudFloat 28s ease-in-out infinite 8s; }
.pula-footer .cloud-layer-5 { top: 40%; left: 40%; width: 20%; animation: cloudFloat 22s ease-in-out infinite 12s; }

@keyframes cloudFloat {
    0%, 100% { transform: translateX(0) scale(1); }
    33% { transform: translateX(30px) scale(1.02); }
    66% { transform: translateX(-20px) scale(0.98); }
}

.pula-footer .cloud-layer svg {
    opacity: 0.5;
    filter: drop-shadow(0 4px 20px rgba(255,255,255,0.15));
}

.pula-footer .container-fluid {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 12px !important;
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
}

.pula-footer .footer-title {
    color: #1a2a3a !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    margin-bottom: 12px !important;
    padding-bottom: 8px !important;
    position: relative !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

.pula-footer .footer-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 30px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #3DA5D5, #7EC3E3) !important;
    border-radius: 4px !important;
}

.pula-footer .footer-brand img {
    max-height: 50px !important;
    width: auto !important;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.08)) !important;
    transition: transform 0.3s ease !important;
    margin-bottom: 10px !important;
    display: inline-block !important;
}

.pula-footer .footer-brand .brand-desc {
    color: rgba(26, 42, 58, 0.75) !important;
    line-height: 1.6 !important;
    font-size: 13px !important;
    margin-bottom: 10px !important;
    text-align: justify !important;
}

.pula-footer .footer-links li {
    margin-bottom: 4px !important;
}

.pula-footer .footer-links li a {
    color: rgba(26, 42, 58, 0.7) !important;
    text-decoration: none !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 2px 0 !important;
}

.pula-footer .footer-links li a::before {
    content: '›' !important;
    font-size: 14px !important;
    color: #3DA5D5 !important;
    opacity: 0.6 !important;
    transition: all 0.3s ease !important;
    font-weight: 700 !important;
}

.pula-footer .footer-links li a:hover {
    color: #1a2a3a !important;
    transform: translateX(4px) !important;
}

.pula-footer .footer-contact li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin-bottom: 10px !important;
}

.pula-footer .footer-contact li .icon-box {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    border-radius: 8px !important;
    background: rgba(61, 165, 213, 0.10) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(61, 165, 213, 0.12) !important;
    transition: all 0.3s ease !important;
}

.pula-footer .footer-contact li .contact-text {
    color: rgba(26, 42, 58, 0.65) !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
}

.pula-footer .footer-contact li .contact-text strong {
    color: rgba(26, 42, 58, 0.85) !important;
    display: block !important;
    font-weight: 600 !important;
    font-size: 13px !important;
}

.pula-footer .footer-social {
    display: flex !important;
    gap: 6px !important;
    margin-top: 10px !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
}

.pula-footer .footer-social a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(61, 165, 213, 0.12) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.pula-footer .footer-social a:hover {
    background: rgba(61, 165, 213, 0.15) !important;
    border-color: #3DA5D5 !important;
    transform: translateY(-3px) !important;
}

.pula-footer .footer-social a svg {
    width: 16px !important;
    height: 16px !important;
    fill: rgba(26, 42, 58, 0.45) !important;
    transition: fill 0.3s ease !important;
}

.pula-footer .footer-social a:hover svg {
    fill: #3DA5D5 !important;
}

.pula-footer .dev-link {
    color: #1a2a3a !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    background: linear-gradient(135deg, rgba(254, 205, 0, 0.15), rgba(255, 215, 0, 0.10)) !important;
    border-radius: 6px !important;
    border: 1px solid rgba(254, 205, 0, 0.30) !important;
    padding: 2px 10px 2px 6px !important;
    font-size: 12px !important;
    letter-spacing: 0.3px !important;
}

.pula-footer .dev-link:hover {
    color: #1a2a3a !important;
    background: linear-gradient(135deg, rgba(254, 205, 0, 0.25), rgba(255, 215, 0, 0.20)) !important;
    border-color: rgba(254, 205, 0, 0.50) !important;
    transform: scale(1.05) !important;
}

.pula-footer .dev-link .dev-icon {
    display: inline-block !important;
    margin-right: 3px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    color: red !important;
    background: rgba(254, 205, 0, 0.20) !important;
    padding: 0 3px !important;
    border-radius: 3px !important;
    border: 1px solid rgba(254, 205, 0, 0.20) !important;
}

.pula-footer .dev-link:hover .dev-icon {
    color: #0063fe !important;
}

.pula-footer .dev-link .dev-text {
    display: inline-block !important;
    font-weight: 700 !important;
    color: red !important;
}

.pula-footer .dev-link:hover .dev-text {
    color: #0057fe !important;
}

.pula-footer .heart-icon {
    color: #ff4757 !important;
    display: inline-block !important;
    animation: pulse-heart 1.5s ease-in-out infinite !important;
    font-size: 12px !important;
}

@keyframes pulse-heart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.pula-footer .footer-bottom {
    border-top: 1px solid rgba(61, 165, 213, 0.12) !important;
    padding-top: 14px !important;
    padding-bottom: 12px !important;
    margin-top: 20px !important;
    text-align: center !important;
}

.pula-footer .footer-bottom p {
    margin: 0 !important;
    color: rgba(26, 42, 58, 0.5) !important;
    font-size: 12px !important;
    line-height: 1.8 !important;
}

.pula-footer .footer-copy {
    margin-bottom: 2px !important;
}

.pula-footer .copy-symbol { color: #3DA5D5 !important; font-weight: 300 !important; }
.pula-footer .copy-brand { color: rgba(26, 42, 58, 0.75) !important; font-weight: 700 !important; }
.pula-footer .copy-divider { color: rgba(26, 42, 58, 0.25) !important; margin: 0 4px !important; }
.pula-footer .copy-rights { color: rgba(26, 42, 58, 0.45) !important; }

.pula-footer .footer-dev {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 3px !important;
    flex-wrap: wrap !important;
    font-size: 11px !important;
    color: rgba(26, 42, 58, 0.5) !important;
}

@media (max-width: 991px) {
    .pula-footer .cloud-layer-1,
    .pula-footer .cloud-layer-2,
    .pula-footer .cloud-layer-3,
    .pula-footer .cloud-layer-4,
    .pula-footer .cloud-layer-5 { width: 40% !important; }
    .pula-footer .row { row-gap: 20px !important; }
}

@media (max-width: 767px) {
    .pula-footer { padding-top: 30px !important; }
    .pula-footer .cloud-layer-1,
    .pula-footer .cloud-layer-2,
    .pula-footer .cloud-layer-3,
    .pula-footer .cloud-layer-4,
    .pula-footer .cloud-layer-5 { width: 60% !important; opacity: 0.35 !important; }
    .pula-footer .footer-title { font-size: 13px !important; margin-bottom: 10px !important; }
    .pula-footer .footer-brand .brand-desc { font-size: 12px !important; }
    .pula-footer .footer-links li a { font-size: 12px !important; }
    .pula-footer .footer-contact li .contact-text { font-size: 11px !important; }
    .pula-footer .footer-social { justify-content: center !important; }
    .pula-footer .footer-bottom p { font-size: 11px !important; }
    .pula-footer .dev-link { font-size: 11px !important; padding: 2px 8px 2px 5px !important; }
    .pula-footer .footer-dev { font-size: 10px !important; }
    .products-section .filter-bar { padding: 10px 14px; flex-direction: column; align-items: stretch; }
    .products-section .filter-bar .filter-left { justify-content: center; }
    .products-section .filter-bar .filter-right { justify-content: center; }
}

@media (max-width: 480px) {
    .pula-footer .container-fluid { padding: 0 8px !important; }
    .pula-footer .footer-social a { width: 30px; height: 30px; }
    .pula-footer .footer-social a svg { width: 14px; height: 14px; }
    .pula-footer .footer-title { font-size: 12px !important; }
    .pula-footer .footer-brand img { max-height: 40px !important; }
    .pula-footer .footer-contact li .icon-box { width: 26px; height: 26px; min-width: 26px; }
    .pula-footer .footer-contact li .icon-box svg { width: 14px; height: 14px; }
    .pula-footer .footer-bottom p { font-size: 10px !important; }
    .pula-footer .dev-link { font-size: 10px !important; padding: 1px 6px 1px 4px !important; }
    .pula-footer .dev-link .dev-icon { font-size: 10px !important; }
    .featured-product-card .product-desc { padding: 10px 10px 12px; }
    .featured-product-card .product-title { font-size: 0.85rem; }
    .featured-product-card .black { font-size: 11px; -webkit-line-clamp: 1; }
    .featured-product-card .functional-bar .cus-btn { padding: 5px 12px; font-size: 10px; }
    .featured-product-card { border-radius: 14px; }
    .pagination ul li a { min-width: 34px; height: 34px; font-size: 12px; padding: 0 8px; }
    .products-hero { padding: 100px 0 20px; }
    .products-section { padding: 20px 0 30px; }
    .shop-sidebar { max-width: 300px; padding: 16px; }
}

@media (max-width: 575px) {
    .container { padding: 0 12px; }
    .container-fluid { padding: 0 8px; }
    .row { margin: 0 -4px; }
    [class*="col-"] { padding: 0 4px; }
}

/* ========================================
   UTILITÁRIOS
======================================== */
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-4 { margin-top: 24px !important; }
.mt-5 { margin-top: 40px !important; }
.mb-4 { margin-bottom: 24px !important; }
.mb-3 { margin-bottom: 16px !important; }
.pt-40 { padding-top: 40px !important; }
.py-5 { padding-top: 40px !important; padding-bottom: 40px !important; }
.py-40 { padding-top: 40px !important; padding-bottom: 40px !important; }
.pb-24 { padding-bottom: 24px !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.text-center { text-align: center !important; }
.text-start { text-align: left !important; }
.text-end { text-align: right !important; }
.white { color: #fff !important; }
.black { color: #1a1a2e !important; }
.d-inline-block { display: inline-block !important; }
.h-100 { height: 100% !important; }
.rounded { border-radius: 20px !important; }
.gap-3 { gap: 16px !important; }
.row-gap-4 { row-gap: 20px !important; }