/* ============================================================
   EndoRJ - Distribuidora de Dispositivos Médicos
   Novo Layout - Stylesheet
   ============================================================ */

/* ============================================================
   1. RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; border: 0; }
input, button, textarea, select { font-family: inherit; font-size: inherit; outline: none; border: none; background: none; }
button { cursor: pointer; }

h1, h2, h3, h4, h5, h6 { color: #2F455E; font-weight: 700; line-height: 1.3; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   2. LAYOUT
   ============================================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #2F455E;
    margin-bottom: 15px;
}

.section-heading--orange {
    color: #F48A00;
}

.section-subheading {
    text-align: center;
    color: #888;
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--white-outline {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}
.btn--white-outline:hover {
    background: #FFFFFF;
    color: #F48A00;
}

.btn--outline-orange {
    background: transparent;
    color: #F48A00;
    border-color: #F48A00;
}
.btn--outline-orange:hover {
    background: #F48A00;
    color: #FFFFFF;
}

.btn--primary {
    background: #FF8E40;
    color: #FFFFFF;
    border-color: #FF8E40;
}
.btn--primary:hover {
    background: #F28241;
    border-color: #F28241;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,142,64,0.4);
}

.btn--outline {
    background: transparent;
    color: #FF8E40;
    border-color: #FF8E40;
}
.btn--outline:hover {
    background: #FF8E40;
    color: #FFFFFF;
}

.btn--whatsapp {
    background: #25D366;
    color: #FFFFFF;
    border-color: #25D366;
}
.btn--whatsapp:hover {
    background: #1DA851;
    border-color: #1DA851;
}

.btn--lg {
    padding: 14px 36px;
    font-size: 18px;
}

.btn--block {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   4. HEADER / NAVBAR
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #FFFFFF;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.site-header--scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

.navbar {
    height: 70px;
    display: flex;
    align-items: center;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    max-height: 40px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    opacity: 0.85;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 25px;
    position: relative;
    transition: color 0.3s ease, transform 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #F9C550, #F48A00);
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
    left: 20%;
}

.nav-link:hover {
    color: #F48A00;
    transform: translateY(-2px);
}

.nav-link.active {
    color: #F48A00;
}

.nav-link:active {
    transform: translateY(0) scale(0.96);
}

.navbar-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(45deg, #F9C550, #F48A00);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar-social:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 15px rgba(244, 138, 0, 0.4);
}

.navbar-social:active {
    transform: scale(0.95);
}

/* Hamburger */
.navbar-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.navbar-toggler:hover .hamburger-line {
    background: #F48A00;
}

.navbar-toggler--active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.navbar-toggler--active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.navbar-toggler--active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-video--mobile {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 650;
    line-height: 1.15;
    margin-bottom: 30px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.hero-btn {
    font-size: 15px;
}

/* ============================================================
   6. SOBRE NÓS
   ============================================================ */
.section--sobre {
    padding: 100px 0;
    background: #FFFFFF;
    color: #333333;
    overflow: hidden;
}

.sobre-headline {
    margin-bottom: 50px;
}

.sobre-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #F48A00;
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid rgba(244,138,0,0.3);
    border-radius: 50px;
}

.sobre-title {
    font-size: 48px;
    color: #F48A00;
    font-weight: 800;
    line-height: 1.15;
    max-width: 700px;
}

.sobre-title span {
    color: #F48A00;
}

.sobre-image-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 200px 200px;
    gap: 16px;
    margin-bottom: 60px;
}

.sobre-img-item {
    border-radius: 16px;
    overflow: hidden;
}

.sobre-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.sobre-img-item:hover img {
    transform: scale(1.05);
}

.sobre-img-item--main {
    grid-row: 1 / 3;
}

.sobre-img-item--secondary {
    grid-column: 2;
}

.sobre-img-item--tertiary {
    grid-column: 2;
}

.sobre-description {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sobre-desc-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}

.sobre-desc-text {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
}

.sobre-btn {
    white-space: nowrap;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-text p {
    color: #666666;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.sobre-image {
    display: flex;
    justify-content: center;
}

.sobre-image-circle {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    overflow: hidden;
}

.sobre-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   7. STATS
   ============================================================ */
.section--stats {
    padding: 40px 0 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stat-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card-photo {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.stat-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-card:nth-child(1) {
    background: #F48A00;
}

.stat-card:nth-child(2) {
    background: #E05F00;
}

.stat-card:nth-child(3) {
    background: #FFC24A;
}

.stat-card-content {
    position: relative;
    z-index: 2;
    padding: 25px 25px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
}

.stat-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
    flex-shrink: 0;
    order: 1;
    filter: brightness(0) invert(1);
}

.stat-text {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
}

/* ============================================================
   8. NOSSOS PRODUTOS
   ============================================================ */
.section--produtos {
    padding: 70px 0;
}

.produtos-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 23px 47px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #888;
    border: 2px solid #E0E0E0;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.filter-btn:hover,
.filter-btn--active {
    border-color: #F48A00;
    color: #F48A00;
}

.filter-btn-logo {
    height: 28px;
    width: 119px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.5;
}

.filter-btn:hover .filter-btn-logo,
.filter-btn--active .filter-btn-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.produtos-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.produtos-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex: 1;
}

.produtos-track::-webkit-scrollbar {
    display: none;
}

.produto-thumb {
    flex: 0 0 140px;
    text-align: center;
    transition: transform 0.3s ease;
}

.produto-thumb:hover {
    transform: translateY(-5px);
}

.produto-thumb img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    background: #F8F8F8;
    padding: 0;
    margin: 0 auto 10px;
    border: 2px solid #F0F0F0;
    transition: all 0.3s ease;
}

.produto-thumb:hover img {
    border-color: #F48A00;
    box-shadow: 0 5px 20px rgba(244,138,0,0.15);
}

.produto-thumb-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

/* ============================================================
   PRODUTOS V2 (variante quadrada)
   ============================================================ */
.section--produtos-v2 {
    padding: 70px 0;
    background: #F8F8F8;
}

.produtos-filters-v2 {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.filter-btn-v2 {
    padding: 9px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    border: 2px solid #E0E0E0;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn-v2:hover,
.filter-btn-v2--active {
    border-color: #F48A00;
    color: #FFFFFF;
    background: #F48A00;
}

.produtos-carousel-v2 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.produtos-track-v2 {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex: 1;
}

.produtos-track-v2::-webkit-scrollbar {
    display: none;
}

.produto-thumb-v2 {
    flex: 0 0 160px;
    text-align: center;
    background: #FFFFFF;
    border-radius: 10px;
    border: 2px solid #ECECEC;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.produto-thumb-v2:hover {
    transform: translateY(-5px);
    border-color: #F48A00;
    box-shadow: 0 8px 25px rgba(244,138,0,0.12);
}

.produto-thumb-v2 img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    background: #FAFAFA;
    padding: 0;
    transition: transform 0.3s ease;
}

.produto-thumb-v2:hover img {
    transform: scale(1.06);
}

.produto-thumb-name-v2 {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #2F455E;
    padding: 10px 10px 14px;
    border-top: 1px solid #F0F0F0;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    color: #888;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    border-color: #F48A00;
    color: #FFFFFF;
    background: #F48A00;
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(244,138,0,0.3);
}

/* ============================================================
   9. DESTAQUES
   ============================================================ */
.section--destaques {
    padding: 70px 0;
    background: #FFFBF5;
}

.destaques-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.destaques-track {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.destaque-card {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    border-radius: 24px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    height: 340px;
    transition: box-shadow 0.4s ease;
}

.destaque-slide {
    display: none !important;
}

.destaque-slide--active {
    display: grid !important;
    animation: destaqueFadeIn 0.5s ease;
}

@keyframes destaqueFadeIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.destaque-card:hover {
    box-shadow: 0 12px 50px rgba(244,138,0,0.15);
}

.destaque-card-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #FFF8F0 0%, #FFF0E0 100%);
}

.destaque-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #F9C550, #F48A00);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 12px rgba(244,138,0,0.3);
}

.destaque-badge i {
    font-size: 10px;
}

.destaque-badge--news {
    background: linear-gradient(135deg, #4A90E2, #2F455E);
    box-shadow: 0 3px 12px rgba(47,69,94,0.3);
}

.destaque-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destaque-card:hover .destaque-card-image img {
    transform: scale(1.06);
}

.destaque-card-info {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.destaque-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #F48A00;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.destaque-card-title {
    font-size: 26px;
    font-weight: 900;
    color: #2F455E;
    line-height: 1.2;
    margin-bottom: 0;
}

.destaque-card-subtitle {
    font-size: 15px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.destaque-card-features {
    list-style: none;
    margin-bottom: 10px;
}

.destaque-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    padding: 5px 0;
    transition: transform 0.2s ease;
}

.destaque-card-features li:hover {
    transform: translateX(4px);
}

.destaque-card-features li i {
    color: #F48A00;
    font-size: 14px;
    flex-shrink: 0;
}

.destaque-card-btn {
    align-self: flex-start;
    margin-top: 8px;
}

.destaques-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D0D0D0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot--active {
    background: #F48A00;
    width: 28px;
    border-radius: 5px;
}

/* ============================================================
   10. BLOG HOME
   ============================================================ */
.section--blog-home {
    padding: 70px 0;
}

.blog-home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.blog-home-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.blog-home-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.blog-home-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.blog-home-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-home-card:hover .blog-home-card-img img {
    transform: scale(1.08);
}

.blog-home-card-content {
    padding: 20px;
}

.blog-home-card-title {
    color: #1B3A5C;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-home-card-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   11. PARCEIROS
   ============================================================ */
.section--parceiros {
    padding: 70px 0;
    background: #FAFAFA;
}

.parceiros-marquee {
    overflow: hidden;
    margin-top: 10px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.parceiros-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
}

.parceiros-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.parceiro-logo {
    height: 50px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease, filter 0.3s ease;
    filter: grayscale(40%);
}

.parceiro-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}


.parceiro-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* ============================================================
   12. FOOTER
   ============================================================ */
.site-footer {
    margin-top: auto;
}

.footer-main {
    background: linear-gradient(135deg, #FFA940 0%, #F49300 50%, #E88200 100%);
    padding: 70px 0 50px;
}

/* Footer halves layout */
.footer-halves {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    max-width: 150px;
}

.footer-description {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.7;
}

/* Newsletter */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.footer-label {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-newsletter-form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.footer-newsletter-form:focus-within {
    border-color: #F48A00;
}

.footer-newsletter-input {
    flex: 1;
    padding: 12px 20px;
    color: #FFFFFF;
    font-size: 14px;
    background: transparent;
}

.footer-newsletter-input::placeholder {
    color: rgba(255,255,255,0.35);
}

.footer-newsletter-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F48A00;
    background: #FFFFFF;
    border-radius: 50%;
    margin: 3px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-newsletter-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.footer-newsletter-note {
    color: rgba(255,255,255,0.3);
    font-size: 12px;
}

/* Footer right columns */
.footer-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: #FFFFFF;
    transform: translateX(3px);
}

.footer-link-icon {
    color: #FFFFFF;
    font-size: 13px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-address {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    line-height: 1.7;
}

/* Footer bottom */
.footer-bottom {
    background: #B85800;
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #FFFFFF;
    border-color: #FFFFFF;
    color: #B85800;
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    margin: 0;
}

/* ============================================================
   13. PAGE BANNERS (subpages)
   ============================================================ */
.page-banner {
    position: relative;
    background: url('../images/slider/hero-rio.jpg') center/cover no-repeat;
    padding: 120px 0 50px;
    margin-top: 70px;
}

.page-banner--produtos {
    background: url('../images/banners/banner-produtos.jpg') center/cover no-repeat;
}

.page-banner--blog {
    background: url('../images/banners/banner-blog.jpg') center/cover no-repeat;
}

.page-banner--contato {
    background: url('../images/banners/banner-contato.jpg') center/cover no-repeat;
}


.page-banner--sm {
    padding: 110px 0 40px;
}

.page-banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(244,138,0,0.85) 0%, rgba(230,100,0,0.8) 100%);
}

.page-banner--sobre .page-banner-overlay,
.page-banner--blog .page-banner-overlay,
.page-banner--contato .page-banner-overlay {
    background: linear-gradient(135deg, #ffcd40 0%, rgba(230, 100, 0, 0.8) 100%);
}

.page-banner-title {
    position: relative;
    color: #FFFFFF;
    font-size: 38px;
    z-index: 2;
}

.breadcrumb { position: relative; z-index: 2; margin-top: 10px; }
.breadcrumb-list { display: flex; gap: 8px; align-items: center; }
.breadcrumb-item { color: rgba(255,255,255,0.8); font-size: 14px; }
.breadcrumb-item a { color: #FFFFFF; }
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-item + .breadcrumb-item::before { content: '/'; margin-right: 8px; color: rgba(255,255,255,0.6); }
.breadcrumb-item--active { color: #FFFFFF; font-weight: 500; }

.breadcrumb-bar {
    background: transparent;
    padding: 40px 0 15px;
    margin-top: 70px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    background-image: linear-gradient(to right, transparent, rgba(244,138,0,0.15) 50%, transparent);
    background-size: 100% 1px;
    background-position: bottom;
    background-repeat: no-repeat;
}

.breadcrumb-bar .breadcrumb-list {
    display: flex;
    gap: 8px;
    align-items: center;
}

.breadcrumb-bar .breadcrumb-item {
    color: #888;
    font-size: 14px;
}

.breadcrumb-bar .breadcrumb-item a {
    color: #555;
}

.breadcrumb-bar .breadcrumb-item a:hover {
    color: #F48A00;
    text-decoration: underline;
}

.breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    margin-right: 8px;
    color: #CCC;
}

.breadcrumb-bar .breadcrumb-item--active {
    color: #F48A00;
    font-weight: 500;
}

/* ============================================================
   14. ABOUT PAGE
   ============================================================ */
.section--about { padding: 80px 0; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.about-image { position: relative; border-radius: 15px; overflow: hidden; }
.about-text p { font-size: 16px; line-height: 1.7; margin-bottom: 15px; }
.about-img { width: 100%; height: 100%; object-fit: cover; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.section-title { font-size: 32px; color: #2F455E; margin-bottom: 25px; }
.section-title--white { color: #FFFFFF; }
.section-title--center { text-align: center; }
.section--vmv-about { background: #F8F8F8; }

.about-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #F48A00;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    padding: 5px 14px;
    background: #FFF3E0;
    border-radius: 50px;
}

.about-highlights {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #E8E8E8;
}

.about-highlight {
    display: flex;
    flex-direction: column;
}

.about-highlight-number {
    font-size: 32px;
    font-weight: 900;
    color: #F48A00;
    line-height: 1.1;
}

.about-highlight-label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
    margin-top: 2px;
}

/* Compliance Section */
.section--compliance {
    padding: 70px 0;
    background: #FFF8F0;
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 10px;
}

.compliance-card {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.compliance-card-cover {
    width: 100%;
    height: auto;
    display: block;
}

.compliance-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    background: #F48A00;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.compliance-btn:hover {
    background: #E07800;
}

/* CTA About */
.section--cta-about {
    padding: 70px 0;
    background: linear-gradient(135deg, #F48A00 0%, #E07800 50%, #D06A00 100%);
}

.cta-about-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-about-content h2 {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-about-content p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    margin-bottom: 25px;
}

.cta-about-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* VMV Tabs Layout */
.vmv-tabs-layout {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 0;
    align-items: center;
    position: relative;
    min-height: 400px;
}

.vmv-tabs-icons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 2;
}

.vmv-tab-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    border: none;
    background: #FFFFFF;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #BBBBBB;
    cursor: pointer;
    transition: all 0.35s ease;
}

.vmv-tab-icon:hover {
    color: #F48A00;
    transform: scale(1.06);
}

.vmv-tab-icon--active {
    background: #F48A00;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(244,138,0,0.3);
}

.vmv-tab-icon--active:hover {
    color: #FFFFFF;
}

.vmv-tabs-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 8px 35px rgba(0,0,0,0.07);
    margin-left: -10px;
    z-index: 1;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.vmv-tab-panel {
    display: none;
    animation: vmvFadeIn 0.4s ease;
}

.vmv-tab-panel--active {
    display: block;
}

@keyframes vmvFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.vmv-tab-panel h3 {
    font-size: 26px;
    font-weight: 800;
    color: #F48A00;
    margin-bottom: 15px;
}

.vmv-tab-panel p {
    font-size: 15px;
    color: #707070;
    line-height: 1.7;
}

.vmv-valores-list {
    columns: 2;
    column-gap: 25px;
}

.vmv-valores-list li {
    font-size: 15px;
    color: #707070;
    padding: 5px 0 5px 18px;
    position: relative;
    line-height: 1.6;
}

.vmv-valores-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F48A00;
}

.vmv-tabs-image {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
    margin-left: -30px;
    z-index: 0;
}

/* Section Divider */
.section-divider {
    padding: 0;
}

.section-divider-line {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #E0E0E0 20%, #F48A00 50%, #E0E0E0 80%, transparent);
}

.vmv-tabs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vmv-valores-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vmv-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #FAFAFA;
    border: 1px solid #F0F0F0;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    transition: all 0.3s ease;
    cursor: default;
}

.vmv-chip i {
    color: #F48A00;
    font-size: 14px;
}

.vmv-chip:hover {
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    border-color: #FFD9A8;
    color: #2F455E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244,138,0,0.1);
}

/* Legacy grid - keep for index.html VMV if used */
.vmv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.vmv-card { background: #FFFFFF; border: 3px solid #FF8E40; border-radius: 20px; padding: 40px 30px; transition: all 0.3s ease; }
.vmv-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(255,142,64,0.15); }
.vmv-card-icon { font-size: 36px; color: #FF8E40; margin-bottom: 15px; }
.vmv-card-title { color: #FF8E40; font-size: 26px; margin-bottom: 15px; }
.vmv-card-text { color: #707070; font-size: 15px; line-height: 1.6; }
.vmv-values-list li { color: #707070; font-size: 15px; padding: 4px 0 4px 15px; position: relative; }
.vmv-values-list li::before { content: '•'; color: #FF8E40; font-weight: bold; position: absolute; left: 0; }

.section--quality, .section--responsibility { padding: 70px 0; }
.quality-content, .responsibility-content { max-width: 900px; margin: 0 auto; }
.quality-content > p, .responsibility-content > p { text-align: center; font-size: 17px; margin-bottom: 20px; }
.quality-grid, .responsibility-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-top: 25px; }
.quality-item, .responsibility-item { background: #F8F8F8; border-radius: 15px; padding: 25px; border-left: 4px solid #FF8E40; }
.quality-item h4, .responsibility-item h4 { color: #2F455E; font-size: 17px; margin-bottom: 8px; }
.quality-item p, .responsibility-item p { font-size: 14px; line-height: 1.6; }
.quality-item-number, .responsibility-item-number { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: #FF8E40; color: #FFFFFF; font-weight: 700; border-radius: 50%; margin-bottom: 10px; font-size: 15px; }
.quality-note { margin-top: 25px; padding: 18px; background: #FFF8F0; border-left: 4px solid #FF8E40; border-radius: 8px; font-size: 14px; }

/* Quality Cards */
.qual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 10px;
}

.qual-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #F0F0F0;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.qual-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F9C550, #F48A00);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.qual-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(244,138,0,0.12);
}

.qual-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.qual-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.qual-card-number {
    font-size: 36px;
    font-weight: 900;
    color: #F0E8E0;
    line-height: 1;
    transition: color 0.3s ease;
}

.qual-card:hover .qual-card-number {
    color: #FDDCB5;
}

.qual-card-icon {
    font-size: 20px;
    color: #F48A00;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    border-radius: 12px;
    transition: all 0.35s ease;
}

.qual-card:hover .qual-card-icon {
}

.qual-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #2F455E;
    margin-bottom: 10px;
}

.qual-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #707070;
}

/* Quality Note */
.qual-note {
    margin-top: 30px;
    padding: 22px 28px;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E6 100%);
    border: 1px solid #FFE0B2;
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.qual-note-icon {
    font-size: 22px;
    color: #F48A00;
    flex-shrink: 0;
    margin-top: 2px;
}

.qual-note p {
    font-size: 14px;
    line-height: 1.65;
    color: #666;
}
.section--responsibility { background: #F8F8F8; }

/* Responsibility Cards */
.resp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 10px;
}

.resp-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 35px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #F0F0F0;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.resp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F9C550, #F48A00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.resp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(244,138,0,0.12);
}

.resp-card:hover::before {
    transform: scaleX(1);
}

.resp-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #F48A00;
    transition: all 0.35s ease;
}

.resp-card:hover .resp-card-icon {
}

.resp-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resp-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #2F455E;
}

.resp-card-body p {
    font-size: 14px;
    line-height: 1.65;
    color: #707070;
}

/* ============================================================
   15. CONTACT PAGE
   ============================================================ */
.section--contact { padding: 70px 0; }
/* Contact Channels */
.contact-channels-section { padding: 50px 0 0; }

.contact-channels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-channel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 30px 20px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #F0F0F0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(244,138,0,0.1);
    border-color: #FFD9A8;
}

.contact-channel-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #F48A00;
    transition: all 0.3s ease;
}

.contact-channel-card:hover .contact-channel-icon {
    background: linear-gradient(135deg, #F9C550, #F48A00);
    color: #FFFFFF;
}

.contact-channel-card--whatsapp .contact-channel-icon {
    background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
    color: #25D366;
}

.contact-channel-card--whatsapp:hover .contact-channel-icon {
    background: #25D366;
    color: #FFFFFF;
}

.contact-channel-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #2F455E;
}

.contact-channel-card p {
    font-size: 14px;
    color: #707070;
    margin: 0;
}

/* Contact Form + Sidebar */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; }

.contact-form-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #F48A00;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    padding: 5px 14px;
    background: #FFF3E0;
    border-radius: 50px;
}

.contact-form-desc {
    color: #888;
    font-size: 15px;
    margin-bottom: 25px;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group { display: flex; flex-direction: column; }
.form-label { font-weight: 600; color: #2F455E; margin-bottom: 6px; font-size: 14px; }
.form-control { padding: 13px 18px; border: 2px solid #E8E8E8; border-radius: 12px; font-size: 15px; transition: all 0.3s ease; background: #FAFAFA; }
.form-control:focus { border-color: #F48A00; box-shadow: 0 0 0 3px rgba(244,138,0,0.1); background: #FFFFFF; }
.form-control--textarea { resize: vertical; min-height: 120px; }
.form-error { color: #E74C3C; font-size: 13px; margin-top: 4px; }
.form-success { background: #D4EDDA; color: #155724; padding: 15px 20px; border-radius: 10px; font-weight: 500; }
.contact-info-card { background: #F8F8F8; border-radius: 16px; padding: 28px; margin-bottom: 20px; }
.contact-info-card-title { font-size: 18px; font-weight: 700; color: #2F455E; margin-bottom: 15px; padding-bottom: 12px; border-bottom: 2px solid #F0F0F0; }
.contact-info-item { display: flex; gap: 15px; padding: 12px 0; border-bottom: 1px solid #E0E0E0; }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 42px; height: 42px; background: linear-gradient(45deg, #F9C550, #F48A00); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FFFFFF; font-size: 16px; flex-shrink: 0; }
.contact-info-label { font-size: 13px; color: #2F455E; font-weight: 600; margin-bottom: 3px; }
.contact-info-content p { font-size: 14px; color: #707070; margin: 0; }
.contact-info-content a { color: #F48A00; }
.contact-info-content a:hover { text-decoration: underline; }
.contact-map { border-radius: 16px; overflow: hidden; height: 220px; background: #F0F0F0; margin-bottom: 20px; }
.contact-map iframe { width: 100%; height: 100%; display: block; }
.contact-map-placeholder { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #AAAAAA; }
.contact-map-placeholder i { font-size: 36px; margin-bottom: 8px; }

.contact-social-card {
    background: linear-gradient(135deg, #FFF8F0, #FFF3E6);
    border-radius: 16px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #FFE0B2;
}

.contact-social-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #2F455E;
}

.contact-social-links {
    display: flex;
    gap: 10px;
}

.contact-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F48A00;
    font-size: 16px;
    border: 1px solid #FFD9A8;
    transition: all 0.3s ease;
}

.contact-social-btn:hover {
    background: #F48A00;
    color: #FFFFFF;
    border-color: #F48A00;
    transform: translateY(-2px);
}

/* ============================================================
   16. PRODUCTS / CATEGORY / DETAIL PAGES
   ============================================================ */
/* Brands page */
.section--brands-page { padding: 80px 0 100px; margin-top: 80px; }
.section--brands-page .section-title { margin-bottom: 40px; }

/* Brands carousel */
.brands-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brands-carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 14px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.brands-carousel-arrow:hover {
    border-color: #F48A00;
    color: #FFFFFF;
    background: #F48A00;
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(244,138,0,0.3);
}

.brands-carousel-track {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex: 1;
    min-width: 0;
}

.brands-carousel-track::-webkit-scrollbar {
    display: none;
}

.brands-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.brand-page-card {
    display: flex;
    flex-direction: column;
    background: #FAFAFA;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid #ECECEC;
}

.brands-carousel-track .brand-page-card {
    flex: 0 0 calc(33.333% - 17px);
    min-width: 280px;
}

.brand-page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0,0,0,0.08);
    border-color: #DDD;
}

.brand-page-card-img {
    aspect-ratio: 1;
    overflow: hidden;
}

.brand-page-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.brand-page-card:hover .brand-page-card-img img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-page-card-img--zoom img {
    transform: scale(1.45);
}

.brand-page-card:hover .brand-page-card-img--zoom img {
    transform: scale(1.5);
}

.brand-page-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #F48A00;
    padding: 0 28px 28px;
    transition: gap 0.3s ease;
}

.brand-page-card:hover .brand-page-card-link {
    gap: 14px;
}

@media (max-width: 992px) {
    .brands-page-grid { grid-template-columns: repeat(2, 1fr); }
    .brands-carousel-track .brand-page-card { flex: 0 0 calc(50% - 13px); }
}

@media (max-width: 576px) {
    .brands-page-grid { grid-template-columns: 1fr; gap: 20px; }
    .section--brands-page { padding: 60px 0 70px; margin-top: 70px; }
    .brands-carousel-track .brand-page-card { flex: 0 0 85%; min-width: 240px; }
}

.section--products, .section--category { padding: 60px 0 70px; }
main > .section--category:first-child,
main > .section--cat-banner-wrap:first-child { margin-top: 80px; }
.section--products-logus { padding: 60px 0 70px; background: #F8F8F8; }
.section--products-other { padding: 60px 0 70px; }

.prod-section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #F48A00;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    padding: 5px 14px;
    background: #FFF3E0;
    border-radius: 50px;
}

.prod-section-desc {
    color: #888;
    font-size: 16px;
    margin-bottom: 35px;
}

/* Featured brand cards */
.prod-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.prod-featured-card {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
    border: 1px solid #F0F0F0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.prod-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 45px rgba(244,138,0,0.14);
    border-color: #FFD9A8;
}

.prod-featured-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #F5F5F5;
}

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

.prod-featured-card:hover .prod-featured-img img {
    transform: scale(1.06);
}

.prod-featured-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.prod-featured-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.prod-featured-card:hover .prod-featured-logo {
    opacity: 1;
    filter: grayscale(0%);
}

.prod-featured-info h3 {
    font-size: 20px;
    font-weight: 800;
    color: #2F455E;
    margin-top: 4px;
}

.prod-featured-info p {
    font-size: 14px;
    color: #707070;
    line-height: 1.6;
    flex: 1;
}

.prod-featured-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #F48A00;
    margin-top: 8px;
    transition: gap 0.3s ease;
}

.prod-featured-card:hover .prod-featured-link {
    gap: 12px;
}
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-top: 25px; }
.category-card { border-radius: 14px; overflow: hidden; background: #FFFFFF; box-shadow: 0 2px 15px rgba(0,0,0,0.08); transition: all 0.3s ease; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.category-card-link { display: block; }
.category-card-image-wrapper { position: relative; overflow: hidden; aspect-ratio: 1; }
.category-card-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.category-card:hover .category-card-image { transform: scale(1.05); }
.category-card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(244,138,0,0.8); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.category-card:hover .category-card-overlay { opacity: 1; }
.category-card-btn { color: #FFFFFF; font-weight: 700; font-size: 15px; padding: 10px 24px; border: 2px solid #FFFFFF; border-radius: 50px; }
.category-card-body { padding: 18px; text-align: center; }
.category-card-name { font-size: 17px; color: #2F455E; margin-bottom: 5px; }
.category-card-desc { font-size: 13px; color: #707070; }
.category-description { text-align: center; max-width: 700px; margin: 0 auto 25px; font-size: 17px; }
.category-back { text-align: center; margin-top: 35px; }
.products-empty, .blog-empty { text-align: center; padding: 50px 20px; color: #AAAAAA; }
.products-empty i, .blog-empty i { font-size: 45px; margin-bottom: 12px; }

.product-card { border: 2px solid #F4F4F4; border-radius: 14px; overflow: hidden; transition: all 0.3s ease; }
.product-card:hover { background: #F4F4F4; border-color: #F28241; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.product-card-link { display: block; text-align: center; }
.product-card-image-wrapper { overflow: hidden; aspect-ratio: 1; }
.product-card-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.product-card:hover .product-card-image { transform: scale(1.05); }
/* Product Detail Page */
.section--product-detail { padding: 50px 0 70px; }

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-detail-gallery {
    position: sticky;
    top: 90px;
}

.product-detail-main-image {
    border-radius: 20px;
    overflow: hidden;
    background: #F8F8F8;
    padding: 0;
    border: 1px solid #ECECEC;
}

.product-detail-main-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.product-detail-main-image:hover .product-detail-img {
    transform: scale(1.04);
}

.product-detail-category {
    margin-bottom: 14px;
}

.product-detail-category-label {
    font-size: 13px;
    color: #707070;
}

.product-detail-brand {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ECECEC;
}

.product-detail-brand-logo {
    display: block;
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    opacity: 0.85;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ECECEC;
    transition: opacity 0.3s ease;
}

.product-detail-brand-logo:hover {
    opacity: 1;
}

.product-detail-category-link {
    display: inline-block;
    color: #F48A00;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    background: #FFF3E0;
    border-radius: 50px;
}

.product-detail-name {
    font-size: 32px;
    font-weight: 900;
    color: #2F455E;
    margin-bottom: 18px;
    line-height: 1.2;
}

.product-detail-description {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 25px;
    color: #666;
}

.product-detail-features {
    margin-bottom: 25px;
}

.product-detail-features-title {
    font-size: 16px;
    font-weight: 700;
    color: #2F455E;
    margin-bottom: 12px;
}

.product-detail-features ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-detail-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    padding: 8px 14px;
    background: #F8F8F8;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.product-detail-features li:hover {
    background: #FFF3E0;
    transform: translateX(4px);
}

.product-detail-features li i {
    color: #F48A00;
    font-size: 14px;
    flex-shrink: 0;
}

/* Product Thumbnails */
.product-detail-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.product-thumb-btn {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #E8E8E8;
    padding: 4px;
    background: #FAFAFA;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-thumb-btn:hover {
    border-color: #FFD9A8;
}

.product-thumb-btn--active {
    border-color: #F48A00;
    box-shadow: 0 0 0 2px rgba(244,138,0,0.2);
}

/* Product Specs */
.product-detail-specs {
    margin-bottom: 25px;
}

.product-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.product-spec-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 16px;
    background: #F8F8F8;
    border-radius: 10px;
    border-left: 3px solid #F48A00;
}

.product-spec-label {
    font-size: 11px;
    font-weight: 700;
    color: #F48A00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-spec-value {
    font-size: 13px;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
}

.product-detail-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid #F0F0F0;
}

.product-detail-back {
    margin-top: 40px;
    text-align: center;
}

/* Product Section Title */
.product-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #2F455E;
    margin-bottom: 25px;
}

/* Product Characteristics Section */
.section--product-chars {
    padding: 60px 0;
    background: #F8F8F8;
}

.product-chars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.product-char-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #F0F0F0;
    border-left: 4px solid #F48A00;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-char-card--has-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 25px;
}

.product-char-card-content {
    flex: 1;
    min-width: 0;
}

.product-char-card-image {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    background: #F8F8F8;
}

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

.product-char-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(244,138,0,0.1);
    border-color: #FFD9A8;
}

.product-char-dot {
    display: none;
}

.product-char-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #F9C550, #F48A00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.product-char-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #2F455E;
    margin-bottom: 8px;
}

.product-char-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #707070;
}

/* Product Models Table */
.section--product-models {
    padding: 60px 0;
}

.product-models-table-wrap {
    overflow-x: auto;
    margin-top: 10px;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.product-models-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.product-models-table thead th {
    background: #F48A00;
    color: #FFFFFF;
    font-weight: 700;
    padding: 14px 20px;
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-models-table thead th {
    border-right: 1px solid rgba(255,255,255,0.25);
}

.product-models-table thead th:first-child {
    border-radius: 16px 0 0 0;
}

.product-models-table thead th:last-child {
    border-radius: 0 16px 0 0;
    border-right: none;
}

.product-models-table tbody tr {
    transition: background 0.2s ease;
}

.product-models-table tbody tr:nth-child(even) {
    background: #FAFAFA;
}

.product-models-table tbody tr:hover {
    background: #FFF3E0;
}

.product-models-table td {
    padding: 13px 20px;
    border-bottom: 1px solid #F0F0F0;
    border-right: 1px solid #F0F0F0;
    color: #555;
    text-align: center;
}

.product-models-table td:last-child {
    border-right: none;
}

.product-models-table td strong {
    color: #2F455E;
    font-weight: 700;
}

.product-models-table-img {
    width: 160px;
}

.product-models-table-img img {
    width: 120px;
    height: 90px;
    object-fit: contain;
    border-radius: 8px;
    background: #F8F8F8;
    padding: 4px;
    transition: transform 0.3s ease;
}

.product-models-table-img img:hover {
    transform: scale(1.15);
}

.product-models-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 16px;
}

.product-models-table tbody tr:last-child td:last-child {
    border-radius: 0 0 16px 0;
}

/* Related section */
.section--related {
    padding: 60px 0;
    background: #F8F8F8;
}

.related-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.related-carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 14px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.related-carousel-arrow:hover {
    border-color: #F48A00;
    color: #FFFFFF;
    background: #F48A00;
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(244,138,0,0.3);
}

.related-products-list {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex: 1;
    min-width: 0;
}

.related-products-list::-webkit-scrollbar {
    display: none;
}

.related-product-item {
    flex: 0 0 calc(25% - 19px);
    min-width: 180px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-product-item:hover {
    transform: translateY(-4px);
}

.related-product-img {
    width: 100%;
    aspect-ratio: 1;
    background: #EEF1F5;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-product-item:hover .related-product-img img {
    transform: scale(1.05);
}

.related-product-info {
    padding: 14px 4px 0;
}

.related-product-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #2F455E;
    margin-bottom: 0;
}

.related-product-info p {
    display: none;
}

.related-product-arrow {
    display: none;
}

/* Related Products */
.related-products {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #F0F0F0;
}

.related-products-title {
    font-size: 24px;
    font-weight: 800;
    color: #2F455E;
    margin-bottom: 25px;
    text-align: center;
}

/* Category Brand Banner */
.section--cat-banner-wrap {
    padding: 40px 0 0;
}

.cat-banner-img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.cat-banner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: #F3F3F3;
    border-radius: 20px;
    overflow: hidden;
    min-height: 280px;
}

.cat-banner-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 40px 45px;
}

.cat-banner-endorj {
    height: 30px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
    opacity: 0.5;
}

.cat-banner-brand {
    max-height: 70px;
    max-width: 250px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}

.cat-banner-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px;
    background: rgba(255,255,255,0.5);
    border-radius: 16px;
    margin: 15px;
    align-items: center;
}

.cat-banner-right img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    padding: 10px;
    background: #FFFFFF;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.cat-banner-right img:hover {
    transform: scale(1.05);
}

/* Category Page */
.category-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 16px;
    color: #707070;
    line-height: 1.6;
}

/* Product Card improvements */
.product-card-body { padding: 15px; }
.product-card-name { font-size: 15px; font-weight: 700; color: #2F455E; margin-bottom: 5px; }
.product-card-description { font-size: 13px; color: #888; line-height: 1.5; }
.product-card-footer { padding: 0 15px 15px; }
.product-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #F48A00;
    transition: gap 0.3s ease;
}
.product-card:hover .product-card-btn { gap: 10px; }

/* ============================================================
   17. BLOG PAGE
   ============================================================ */
.section--blog { padding: 60px 0 80px; }

/* Blog Empty State */
.blog-empty-state {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    padding: 30px 0;
}

.blog-empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #F48A00;
}

.blog-empty-state h2 {
    font-size: 28px;
    font-weight: 800;
    color: #2F455E;
    margin-bottom: 12px;
}

.blog-empty-state > p {
    font-size: 16px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 35px;
}

.blog-empty-topics {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.blog-empty-topic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 18px;
    background: #F8F8F8;
    border-radius: 14px;
    min-width: 120px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.blog-empty-topic:hover {
    background: #FFFFFF;
    border-color: #FFD9A8;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(244,138,0,0.1);
}

.blog-empty-topic-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #F48A00;
    transition: all 0.3s ease;
}

.blog-empty-topic:hover .blog-empty-topic-icon {
    background: linear-gradient(135deg, #F9C550, #F48A00);
    color: #FFFFFF;
}

.blog-empty-topic span {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.blog-empty-newsletter {
    background: #F8F8F8;
    border-radius: 16px;
    padding: 30px;
}

.blog-empty-newsletter-label {
    font-size: 15px;
    font-weight: 600;
    color: #2F455E;
    margin-bottom: 15px;
}

.blog-empty-form {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto;
}

.blog-empty-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #E8E8E8;
    border-radius: 50px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s ease;
}

.blog-empty-input:focus {
    border-color: #F48A00;
}

.blog-empty-input::placeholder {
    color: #BBB;
}

.blog-empty-btn {
    white-space: nowrap;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.blog-card { border-radius: 14px; overflow: hidden; background: #FFFFFF; box-shadow: 0 2px 15px rgba(0,0,0,0.08); transition: all 0.3s ease; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.blog-card-link { display: block; }
.blog-card-image-wrapper { overflow: hidden; aspect-ratio: 16/9; }
.blog-card-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.blog-card:hover .blog-card-image { transform: scale(1.05); }
.blog-card-body { padding: 22px; }
.blog-card-meta { display: flex; gap: 15px; margin-bottom: 8px; }
.blog-card-date { font-size: 13px; color: #F48A00; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.blog-card-title { font-size: 17px; color: #2F455E; margin-bottom: 8px; line-height: 1.4; }
.blog-card-excerpt { font-size: 14px; color: #707070; line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-readmore { color: #F48A00; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 5px; }
.section--blog-post { padding: 50px 0 70px; }

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.blog-post {
    min-width: 0;
}

.blog-post-header {
    margin-bottom: 30px;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 14px;
}

.blog-post-date,
.blog-post-category {
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-post-date {
    color: #F48A00;
}

.blog-post-category {
    color: #888;
}

.blog-post-title {
    font-size: 34px;
    font-weight: 900;
    color: #2F455E;
    line-height: 1.25;
}

.blog-post-featured-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-post-img {
    width: 100%;
    display: block;
}

.blog-post-content {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
}

.blog-post-content p {
    margin-bottom: 18px;
}

.blog-post-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: #2F455E;
    margin-top: 30px;
    margin-bottom: 12px;
}

.blog-post-content ul {
    margin-bottom: 18px;
    padding-left: 0;
}

.blog-post-content ul li {
    padding: 6px 0 6px 22px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.blog-post-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F48A00;
}

.blog-post-content strong {
    color: #2F455E;
}

/* Share */
.blog-post-share {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 25px 0;
    margin-top: 30px;
    border-top: 1px solid #F0F0F0;
}

.blog-post-share-label {
    font-size: 14px;
    font-weight: 600;
    color: #2F455E;
}

.blog-post-share-links {
    display: flex;
    gap: 8px;
}

.blog-post-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 15px;
    transition: all 0.3s ease;
}

.blog-post-share-btn:hover {
    background: #F48A00;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.blog-post-share-btn--whatsapp:hover {
    background: #25D366;
}

.blog-post-back {
    margin-top: 25px;
    text-align: center;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-sidebar-card {
    background: #F8F8F8;
    border-radius: 14px;
    padding: 22px;
}

.blog-sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: #2F455E;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F0F0F0;
}

.blog-sidebar-card p {
    font-size: 14px;
    color: #707070;
    line-height: 1.6;
    margin-bottom: 12px;
}

.blog-sidebar-link {
    font-size: 14px;
    font-weight: 600;
    color: #F48A00;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-sidebar-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    transition: background 0.2s ease;
    margin-bottom: 6px;
}

.blog-sidebar-product:hover {
    background: #FFFFFF;
}

.blog-sidebar-product img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 4px;
}

.blog-sidebar-product span {
    font-size: 14px;
    font-weight: 600;
    color: #2F455E;
}

.blog-sidebar-card--cta {
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    border: 1px solid #FFD9A8;
    text-align: center;
}

.blog-sidebar-card--cta h4 {
    font-size: 17px;
    font-weight: 700;
    color: #2F455E;
    margin-bottom: 6px;
}

.blog-sidebar-card--cta p {
    margin-bottom: 15px;
}

.blog-sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-sidebar-post-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.blog-sidebar-post-item:hover {
    background: #FFFFFF;
}

.blog-sidebar-post-item img {
    width: 55px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.blog-sidebar-post-item span {
    font-size: 13px;
    font-weight: 600;
    color: #2F455E;
    display: block;
    line-height: 1.3;
}

.blog-sidebar-post-item small {
    font-size: 11px;
    color: #AAAAAA;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: #FFFFFF;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.mobile-menu--open {
    transform: translateX(0);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay--visible {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid #F0F0F0;
}

.mobile-menu-logo img {
    height: 35px;
    width: auto;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: #F48A00;
    color: #FFFFFF;
}

.mobile-menu-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
    overflow-y: auto;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    font-size: 17px;
    font-weight: 600;
    color: #2F455E;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link--active {
    background: #FFF3E0;
    color: #F48A00;
}

.mobile-menu-link--active {
    border-left: 4px solid #F48A00;
}

.mobile-menu-footer {
    padding: 20px 25px;
    border-top: 1px solid #F0F0F0;
    text-align: center;
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.mobile-menu-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-menu-social a:hover {
    background: #F48A00;
    color: #FFFFFF;
}

.mobile-menu-contact {
    font-size: 12px;
    color: #AAAAAA;
}

/* Hide on desktop */
@media (min-width: 769px) {
    .mobile-menu,
    .mobile-menu-overlay,
    .navbar-toggler { display: none !important; }
}

/* ============================================================
   18. ANIMATIONS
   ============================================================ */
/* Fade up (padrão) */
.animate-target {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Fade left */
.animate-target--left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-target--left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Fade right */
.animate-target--right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-target--right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up */
.animate-target--scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-target--scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   19. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-title { font-size: 38px; }
    .sobre-title { font-size: 36px; }
    .sobre-image-grid { grid-template-rows: 180px 180px; }
    .sobre-description { grid-template-columns: 1fr; gap: 20px; }
    .stats-grid { grid-template-columns: 1fr; gap: 15px; }
    .stat-card { min-height: 140px; }
    .destaque-card { grid-template-columns: 1fr; height: auto; }
    .destaque-card-image { height: 220px; }
    .blog-home-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }

    .prod-featured-grid { grid-template-columns: 1fr; }
    .cat-banner { grid-template-columns: 1fr; min-height: auto; }
    .cat-banner-left { padding: 30px; align-items: center; text-align: center; }
    .cat-banner-brand { align-self: center; }
    .about-content { grid-template-columns: 1fr; gap: 30px; }
    .compliance-grid { grid-template-columns: 1fr; }
    .about-highlights { gap: 20px; }
    .about-highlight-number { font-size: 26px; }
    .cta-about-content h2 { font-size: 24px; }
    .contact-channels { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 35px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-social-card { flex-direction: column; gap: 15px; text-align: center; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 25px; }
    .product-detail-gallery { position: static; }
    .product-detail-name { font-size: 26px; }
    .contact-channels { grid-template-columns: 1fr; }
    .vmv-grid { grid-template-columns: 1fr; gap: 20px; }
    .vmv-tabs-layout { grid-template-columns: 1fr; gap: 20px; }
    .vmv-tabs-icons { flex-direction: row; justify-content: center; }
    .vmv-tabs-card { margin-left: 0; min-height: auto; }
    .vmv-tabs-image { margin-left: 0; min-height: 250px; }
    .quality-grid, .responsibility-grid { grid-template-columns: 1fr; }
    .resp-grid { grid-template-columns: repeat(2, 1fr); }
    .qual-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-halves { grid-template-columns: 1fr; gap: 40px; }
    .footer-right { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 50px 0; }

    .navbar-toggler { display: flex; }
    .navbar-nav { display: none; }
    .navbar-social { display: none; }
    .nav-link::after { display: none; }

    .hero { height: 100vh; }
    .hero-video--desktop { display: none; }
    .hero-video--mobile { display: block; }
    .hero-title { font-size: 30px; }
    .hero-container { padding-bottom: 50px; }

    .sobre-title { font-size: 28px; }
    .sobre-grid { grid-template-columns: 1fr; gap: 30px; }
    .sobre-image-grid { grid-template-columns: 1fr; grid-template-rows: 250px 180px 180px; }
    .sobre-img-item--main { grid-row: auto; }
    .sobre-img-item--secondary { grid-column: auto; }
    .sobre-img-item--tertiary { grid-column: auto; }

    .stat-number { font-size: 32px; }

    .blog-home-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-post-layout { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
    .blog-post-title { font-size: 24px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .related-product-item { flex: 0 0 calc(50% - 13px); }
    .prod-featured-card { flex-direction: row; }
    .prod-featured-img { aspect-ratio: 1; max-width: 200px; }
    .prod-featured-grid { gap: 15px; }

    .parceiros-track { gap: 40px; }
    .parceiro-logo { height: 25px; }

    .page-banner { padding: 100px 0 35px; }
    .page-banner-title { font-size: 28px; }

    .resp-grid { grid-template-columns: 1fr; }
    .qual-grid { grid-template-columns: 1fr; }

    .footer-right { grid-template-columns: 1fr; gap: 25px; }
    .footer-main { padding: 40px 0; }
    .footer-bottom-inner { flex-direction: column; gap: 15px; text-align: center; }

    .product-detail-cta { flex-direction: column; }
    .product-detail-name { font-size: 22px; }
    .product-specs-grid { grid-template-columns: 1fr; }
    .product-detail-thumbs { flex-wrap: wrap; }
    .product-chars-grid { grid-template-columns: 1fr; }

    .section-heading { font-size: 26px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 26px; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .btn--lg { padding: 12px 24px; font-size: 16px; }
    .prod-featured-card { flex-direction: column; }
    .prod-featured-img { max-width: 100%; aspect-ratio: 16/10; }
}
