/* =========================================
CONFIGURAÇÕES GERAIS
========================================= */

:root {

    --blog-dark: #06152c;

    --blog-dark-2: #0b2345;

    --blog-purple: #565ccf;

    --blog-blue: #2d5fe9;

    --blog-blue-light: #31a8ff;

    --blog-orange: #fca038;

    --blog-green: #00bc6a;

    --blog-white: #ffffff;

    --blog-text: #56627a;

    --blog-light: #f5f7fc;

    --blog-border: #e5eaf4;

}


* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    color: var(--blog-dark);

   font-family: "Montserrat", sans-serif;

    background: #ffffff;

    overflow-x: hidden;

}





a {

    text-decoration: none;

}


button,
input {

    font: inherit;

}


.blog-container {

    width: min(1400px, calc(100% - 80px));

    margin: 0 auto;

}


.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(255,255,255,.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition: .35s ease;
}



.nav-container{
    width:100%;
    height:50px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 35px;
}

.nav-left{
    display:flex;
    align-items:center;
    gap:20px;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:100px;
    width:auto;
    display:block;
}

.nav-links {
  display: flex;
  gap: 34px;
}

/* Links do menu */

.nav-links{
    display:flex;
    gap:24px;
}

.nav-links a{
    position:relative;
    display:flex;
    align-items:center;

    color:#222224;
    text-decoration:none;

    font-size:15px;
    font-weight:600;

    height:82px;

    transition:color .3s ease;
}

/* Linha animada */

.nav-links a::after{
    content: "";
    position: absolute;

    left: 50%;
    bottom: 18px;

    width: 0;
    height: 2.5px;

    background: currentColor;
    border-radius: 999px;

    transform: translateX(-50%);
    transition: width .35s cubic-bezier(.22,.61,.36,1);
}

.nav-links a:hover::after{
    width: 100%;
}

.nav-links a:hover::after{
    transform:translateX(-50%) scaleX(1);
}


/* Link Entrar */

.login{
    position: relative;

    display: flex;
    align-items: center;

    height: 82px;

    color: #222224;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: color .3s ease;
}

/* Linha animada */

.login::after{
    content: "";
    position: absolute;

    left: 50%;
    bottom: 18px;

    width: 0;
    height: 2.5px;

    background: currentColor;
    border-radius: 999px;

    transform: translateX(-50%);
    transition: width .35s cubic-bezier(.22,.61,.36,1);
}

.login:hover{
    color: #222224;
}

.login:hover::after{
    width: 100%;
}


/* Botões da direita */

.nav-actions{
    display:flex;
    align-items:center;
    gap:24px;
}

.btn-nav{
    background:rgba(4, 34, 69, 0.979);
    color:#fef8f8;

    text-decoration:none;

    padding:13px 24px;

    border-radius:30px;
    

    font-weight:550;

    transition:
        transform .30s cubic-bezier(.22,.61,.36,1),
        box-shadow .30s ease,
        background .30s ease;
}

.btn-nav:hover{
    transform:scale(1.02);

    box-shadow:
        0 0 0 1px rgba(82, 82, 209, .12),
        0 1px 1px rgba(82, 82, 209, .35);

    background:#18378b;
}

.nav-links a,
.login,
.btn-nav{

    font-family:'Montserrat', sans-serif;

}

/* ===========================
ITEM ATIVO DA NAVBAR
=========================== */

.nav-links > a.active,
.nav-dropdown-trigger.active,
.login.active {

    color: #364ff8;   /* cor mais clara */

    font-weight: 700;
}

.nav-links > a.active::after,
.nav-dropdown-trigger.active::after,
.login.active::after {

    width: 100%;

    background: #364ff8;

    box-shadow:
        0 0 10px rgba(126,143,255,.45);
}
/* =====================================
MENU SUSPENSO - PRODUTOS
===================================== */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

/* Link principal Produtos */
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dropdown-arrow {
  width: 17px;
  height: 17px;
  fill: currentColor;

  transition: transform 0.3s ease;
}

/* Caixa do submenu */
.nav-dropdown-menu {
  position: absolute;

  top: calc(100% + 18px);
  left: 50%;

  width: 330px;
  padding: 12px;

  background: rgba(255, 255, 255, 0.98);

  border: 1px solid rgba(86, 92, 207, 0.13);
  border-radius: 16px;

  box-shadow:
    0 22px 55px rgba(31, 35, 82, 0.16),
    0 5px 15px rgba(31, 35, 82, 0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  opacity: 0;
  visibility: hidden;

  transform:
    translateX(-50%)
    translateY(10px);

  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;

  z-index: 9999;
}

/* Ponte invisível para o menu não fechar */
.nav-dropdown-menu::before {
  content: "";

  position: absolute;

  top: -22px;
  left: 0;

  width: 100%;
  height: 24px;
}

/* Exibir ao passar o mouse */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;

  transform:
    translateX(-50%)
    translateY(0);

  pointer-events: auto;
}

/* Girar seta */
.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

/* Links internos */
.nav-dropdown-menu > a {
  display: flex;
  align-items: center;
  gap: 13px;

  width: 100%;
  padding: 13px 12px;

  color: #373761;
  text-decoration: none;

  border-radius: 11px;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

/* Hover dos produtos */
.nav-dropdown-menu > a:hover {
  color: #565ccf;
  background: rgba(86, 92, 207, 0.08);
  
  transform: translateX(3px);
}

/* Numeração ou ícone */
/*========================================
ÍCONE DO PRODUTO
========================================*/

.dropdown-icon{

    position:relative;

    width:62px;
    height:62px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,.92) 0%,
            rgba(245, 247, 255, 0.167) 45%,
            rgba(86,92,207,.08) 100%
        );

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    transition:.35s ease;

    overflow:hidden;

}

.dropdown-icon::before{

    content:"";

    position:absolute;

    width:85%;
    height:85%;

    border-radius:50%;

    background:

        radial-gradient(
            circle,
            rgba(86,92,207,.22),
            transparent 70%
        );

    filter:blur(10px);

    opacity:.8;

}

.dropdown-icon img{

    position:relative;

    width:42px;
    height:42px;

    object-fit:contain;

    z-index:2;

    transition:.35s;

}

.nav-dropdown-menu a:hover .dropdown-icon{

    transform:
        translateY(-3px)
        scale(1.05);

    background:

        radial-gradient(
            circle,
            rgba(255,255,255,.96) 0%,
            rgba(242,244,255,.88) 55%,
            rgba(86,92,207,.15) 100%
        );

    box-shadow:

        0 12px 28px rgba(86,92,207,.18),

        0 0 35px rgba(86,92,207,.18);

}

.nav-dropdown-menu a:hover .dropdown-icon::before{

    opacity:1;

    transform:scale(1.2);

}

.nav-dropdown-menu a:hover img{

    transform:scale(1.12);

}

/* Bloco de texto */
.dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* Nome do produto */
.dropdown-text strong {
  color: inherit;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

/* Descrição */
.dropdown-text small {
  color: #777b98;

  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.nav-dropdown-menu > a,
.nav-dropdown-menu > a:hover,
.nav-dropdown-menu > a:focus {
  text-decoration: none !important;
  border-bottom: none !important;
}

.nav-dropdown-menu > a::after,
.nav-dropdown-menu > a:hover::after,
.nav-dropdown-menu > a:focus::after {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  content: none !important;
}

.dropdown-icon img.logo-nav-otica{
    width: 72px;
    height: 72px;
}

.dropdown-icon img.logo-nav-auto{
    width: 55px;
    height: 55px;
}

/* =====================================
MENU SUSPENSO - MERCADOS
===================================== */

.mercados-dropdown-menu {
  width: 230px;
  
  padding: 8px;
}

/* Links do menu Mercados */
.mercados-dropdown-menu > a{

    all: unset;

    display:block;

    cursor:pointer;

    padding:10px 14px;

    color:#373761;

    font-size:14px;
    font-weight:700;

    border-radius:8px;

    transition:.25s;

}

/* Linha embaixo do texto */
.mercados-dropdown-menu > a::after {
  content: "";

  position: absolute;

  left: 15px;
  bottom: 8px;

  width: 0;
  height: 2px;

  background: #565ccf;
  border-radius: 2px;

  transition: width 0.25s ease;
}

/* Hover */
.mercados-dropdown-menu > a:hover {
  color: #565ccf;

  background: rgba(86, 92, 207, 0.08);

  padding-left: 20px;
}

/* Exibe o sublinhado no hover */
.mercados-dropdown-menu > a:hover::after {
  width: 45px;
}

/* =========================================*/

/* =========================================
BOTÕES GERAIS DO BLOG
========================================= */

.blog-button {

    min-height: 57px;

    padding:
        0 29px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border-radius: 999px;

    font-family:
        "Montserrat", sans-serif;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;

}


.blog-button:hover {

    transform:
        translateY(-3px);

}


.blog-button-primary {

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--blog-purple),
            var(--blog-blue)
        );

    box-shadow:
        0 16px 38px
        rgba(45, 95, 233, 0.28);

}


.blog-button-primary:hover {

    color: #ffffff;

    box-shadow:
        0 20px 45px
        rgba(45, 95, 233, 0.38);

}


.blog-button-outline {

    color: #ffffff;

    border:
        1px solid
        rgba(255, 255, 255, 0.38);

    background:
        rgba(255, 255, 255, 0.06);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

}


.blog-button-outline:hover {

    color: #ffffff;

    border-color:
        rgba(255, 255, 255, 0.65);

    background:
        rgba(255, 255, 255, 0.12);

}

/* =========================================
HERO
========================================= */

.blog-hero {

    position: relative;

    min-height: 760px;

    padding:
        165px 0 110px;

    display: flex;

    align-items: center;

    overflow: hidden;

    isolation: isolate;

    color: #ffffff;

    background-image:
        url("../images/secao1.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

}


.blog-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: -3;

    background:
        linear-gradient(
            90deg,
            rgba(3, 14, 34, 0.98) 0%,
            rgba(5, 24, 53, 0.95) 39%,
            rgba(7, 29, 62, 0.68) 66%,
            rgba(7, 29, 62, 0.28) 100%
        ),

        linear-gradient(
            180deg,
            rgba(4, 16, 38, 0.08),
            rgba(4, 16, 38, 0.68)
        );

}


.blog-hero-grid {

    position: absolute;

    inset: 0;

    z-index: -2;

    opacity: 0.13;

    background-image:
        linear-gradient(
            rgba(49, 168, 255, 0.22) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(49, 168, 255, 0.22) 1px,
            transparent 1px
        );

    background-size:
        52px 52px;

    mask-image:
        linear-gradient(
            90deg,
            #000,
            transparent 75%
        );

    -webkit-mask-image:
        linear-gradient(
            90deg,
            #000,
            transparent 75%
        );

}


.blog-hero-container {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        390px;

    align-items: center;

    gap: 90px;

}


.blog-hero-content {

    max-width: 830px;

}


.blog-tag,
.blog-section-tag {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: #b7c4ff;

    font-family:
        "Montserrat", sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.6px;

    text-transform: uppercase;

}


.blog-tag::before,
.blog-section-tag::before {

    content: "";

    width: 35px;

    height: 3px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--blog-purple),
            var(--blog-blue-light)
        );

}


.blog-hero h1 {

    margin-top: 28px;

    font-family:
        "Montserrat", sans-serif;

    font-size:
        clamp(50px, 5.3vw, 88px);

    font-weight: 800;

    line-height: 0.99;

    letter-spacing: -5px;

}


.blog-hero h1 strong {

    display: block;

    margin-top: 8px;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #aabaff 52%,
            #6c97ff
        );

    background-clip: text;

    -webkit-background-clip: text;

}


.blog-hero-content > p {

    max-width: 700px;

    margin-top: 31px;

    color:
        rgba(235, 240, 255, 0.76);

    font-size:
        clamp(17px, 1.3vw, 21px);

    line-height: 1.72;

}


.blog-hero-actions {

    margin-top: 40px;

    display: flex;

    flex-wrap: wrap;

    gap: 16px;

}


/* =========================================
CARD LATERAL DA HERO
========================================= */

.blog-hero-highlight {

    padding: 34px;

    border:
        1px solid
        rgba(255, 255, 255, 0.17);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(14, 41, 84, 0.78),
            rgba(7, 22, 49, 0.64)
        );

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.28),

        inset 0 1px 0
        rgba(255, 255, 255, 0.08);

    backdrop-filter:
        blur(17px);

    -webkit-backdrop-filter:
        blur(17px);

}


.blog-hero-highlight-label {

    color: #aeb8ff;

    font-family:
        "Montserrat", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.blog-hero-highlight-icon {

    width: 63px;

    height: 63px;

    margin-top: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 28px;

    border-radius: 19px;

    background:
        linear-gradient(
            135deg,
            var(--blog-purple),
            var(--blog-blue)
        );

    box-shadow:
        0 14px 34px
        rgba(45, 95, 233, 0.3);

}


.blog-hero-highlight h2 {

    margin-top: 25px;

    color: #ffffff;

    font-family:
        "Montserrat", sans-serif;

    font-size: 27px;

    font-weight: 750;

    line-height: 1.25;

}


.blog-hero-highlight p {

    margin-top: 16px;

    color:
        rgba(235, 240, 255, 0.68);

    font-size: 14px;

    line-height: 1.7;

}

/* =========================================
CATEGORIAS
========================================= */

.blog-categories {

    position: relative;

    z-index: 5;

    margin-top: -36px;

}


.blog-categories-scroll {

    min-height: 76px;

    padding: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border:
        1px solid
        rgba(86, 92, 207, 0.12);

    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.96);

    box-shadow:
        0 24px 55px
        rgba(25, 42, 76, 0.14);

    backdrop-filter:
        blur(15px);

    -webkit-backdrop-filter:
        blur(15px);

}


.blog-category {

    min-height: 48px;

    padding:
        0 22px;

    border: 0;

    border-radius: 14px;

    color: #59627a;

    font-family:
        "Montserrat", sans-serif;

    font-size: 13px;

    font-weight: 700;

    background: transparent;

    cursor: pointer;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;

}


.blog-category:hover,
.blog-category.active {

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--blog-purple),
            var(--blog-blue)
        );

    box-shadow:
        0 10px 25px
        rgba(45, 95, 233, 0.2);

}


/* =========================================
ARTIGO EM DESTAQUE
========================================= */

.blog-featured {

    padding:
        105px 0 65px;

    background: #ffffff;

}


.blog-featured-card {

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    overflow: hidden;

    border:
        1px solid
        var(--blog-border);

    border-radius: 32px;

    background: #ffffff;

    box-shadow:
        0 30px 80px
        rgba(28, 46, 80, 0.12);

}


.blog-featured-image {

    position: relative;

    min-height: 520px;

    overflow: hidden;

}


.blog-featured-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;

}


.blog-featured-card:hover
.blog-featured-image img {

    transform:
        scale(1.045);

}


.blog-featured-badge {

    position: absolute;

    left: 28px;

    top: 28px;

    padding:
        9px 15px;

    color: #ffffff;

    font-family:
        "Montserrat", sans-serif;

    font-size: 11px;

    font-weight: 750;

    letter-spacing: 1px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            var(--blog-purple),
            var(--blog-blue)
        );

    box-shadow:
        0 12px 25px
        rgba(45, 95, 233, 0.28);

}


.blog-featured-content {

    padding: 55px;
    margin-top: -100px;
    display: flex;

    flex-direction: column;

    justify-content: center;

}


.blog-post-meta {

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        var(--blog-purple);

    font-size: 12px;

    font-weight: 650;

}


.blog-meta-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background:
        var(--blog-purple);

}


.blog-featured-content h2 {

    margin-top: 23px;

    color:
        var(--blog-dark);

    font-family:
        "Montserrat", sans-serif;

    font-size:
        clamp(34px, 3.3vw, 54px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -2.7px;

}


.blog-featured-content > p {

    margin-top: 22px;

    color:
        var(--blog-text);

    font-size: 16px;

    line-height: 1.8;

}


.blog-featured-footer {

    margin-top: 34px;
    margin-bottom: 44px;
    padding-top: 28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid
        var(--blog-border);

}


.blog-author {

    display: flex;

    align-items: center;

    gap: 13px;

}


.blog-author-avatar {

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-family:
        "Montserrat", sans-serif;

    font-size: 12px;

    font-weight: 800;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--blog-purple),
            var(--blog-blue)
        );

}


.blog-author > div:last-child {

    display: flex;

    flex-direction: column;

    gap: 2px;

}


.blog-author strong {

    color:
        var(--blog-dark);

    font-family:
        "Montserrat", sans-serif;

    font-size: 13px;

}


.blog-author span {

    color: #8790a5;

    font-size: 11px;

}


.blog-read-more,
.blog-view-all {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color:
        var(--blog-purple);

    font-family:
        "Montserrat", sans-serif;

    font-size: 13px;

    font-weight: 750;

}


.blog-read-more i,
.blog-view-all i {

    transition:
        transform 0.25s ease;

}


.blog-read-more:hover,
.blog-view-all:hover {

    color:
        var(--blog-blue);

}


.blog-read-more:hover i,
.blog-view-all:hover i {

    transform:
        translateX(5px);

}


/* =========================================
LISTA DE ARTIGOS
========================================= */

.blog-posts {

    padding:
        70px 0 125px;

    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(86, 92, 207, 0.07),
            transparent 28%
        ),

        #f7f9fd;

}


.blog-section-header {

    margin-bottom: 55px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

}


.blog-section-header h2 {

    max-width: 780px;

    margin-top: 20px;

    color:
        var(--blog-dark);

    font-family:
        "Montserrat", sans-serif;

    font-size:
        clamp(36px, 4vw, 60px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -3.5px;

}


.blog-section-header h2 strong {

    color:
        var(--blog-purple);

}


.blog-section-tag {

    color:
        var(--blog-purple);

}


.blog-posts-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 27px;

}


/* =========================================
CARD DE ARTIGO
========================================= */

.blog-card {

    overflow: hidden;

    border:
        1px solid
        var(--blog-border);

    border-radius: 25px;

    background: #ffffff;

    box-shadow:
        0 18px 45px
        rgba(30, 47, 80, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        opacity 0.3s ease;

}


.blog-card:hover {

    transform:
        translateY(-9px);

    box-shadow:
        0 28px 65px
        rgba(30, 47, 80, 0.14);

}


.blog-card-hidden {

    display: none;

}


.blog-card-image {

    position: relative;

    height: 245px;

    overflow: hidden;

}


.blog-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;

}


.blog-card:hover
.blog-card-image img {

    transform:
        scale(1.06);

}


.blog-card-category {

    position: absolute;

    left: 20px;

    bottom: 18px;

    padding:
        8px 13px;

    color: #ffffff;

    font-family:
        "Montserrat", sans-serif;

    font-size: 10px;

    font-weight: 750;

    letter-spacing: 0.7px;

    border-radius: 999px;

    background:
        rgba(6, 21, 44, 0.8);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

}


.blog-card-content {

    padding: 28px;

}


.blog-card-meta {

    display: flex;

    justify-content: space-between;

    gap: 15px;

    color: #929aad;

    font-size: 11px;

}


.blog-card-content h3 {

    margin-top: 17px;

    color:
        var(--blog-dark);

    font-family:
        "Montserrat", sans-serif;

    font-size: 21px;

    font-weight: 750;

    line-height: 1.35;

}


.blog-card-content p {

    margin-top: 14px;

    color:
        var(--blog-text);

    font-size: 14px;

    line-height: 1.7;

}


.blog-card-content > a {

    margin-top: 22px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color:
        var(--blog-purple);

    font-family:
        "Montserrat", sans-serif;

    font-size: 13px;

    font-weight: 750;

}


.blog-card-content > a i {

    transition:
        transform 0.25s ease;

}


.blog-card-content > a:hover {

    color:
        var(--blog-blue);

}


.blog-card-content > a:hover i {

    transform:
        translateX(5px);

}


/* =========================================
BOTÃO CARREGAR MAIS
========================================= */

.blog-load-more-wrapper {

    margin-top: 55px;

    display: flex;

    justify-content: center;

}


.blog-load-more {

    min-height: 54px;

    padding:
        0 25px;

    display: inline-flex;

    align-items: center;

    gap: 11px;

    color:
        var(--blog-dark);

    font-family:
        "Montserrat", sans-serif;

    font-size: 13px;

    font-weight: 750;

    border:
        1px solid
        #d9deea;

    border-radius: 999px;

    background: #ffffff;

    cursor: pointer;

    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.blog-load-more:hover {

    color:
        var(--blog-purple);

    border-color:
        rgba(86, 92, 207, 0.4);

    transform:
        translateY(-3px);

    box-shadow:
        0 14px 30px
        rgba(35, 51, 82, 0.1);

}

/* =========================================
BANNER DE CONTEÚDO
========================================= */

.blog-banner {

    position: relative;

    min-height: 380px;

    padding:
        80px 0;

    display: flex;

    align-items: center;

    overflow: hidden;

    isolation: isolate;

    color: #ffffff;

    background-image:
        url("./images/blog-banner.jpg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

}


.blog-banner-overlay {

    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            90deg,
            rgba(3, 14, 34, 0.96),
            rgba(5, 23, 51, 0.83) 60%,
            rgba(5, 23, 51, 0.48)
        );

}


.blog-banner-container {

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 35px;

}


.blog-banner-icon {

    width: 88px;

    height: 88px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 37px;

    border:
        1px solid
        rgba(255, 255, 255, 0.18);

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(86, 92, 207, 0.9),
            rgba(45, 95, 233, 0.82)
        );

    box-shadow:
        0 18px 45px
        rgba(45, 95, 233, 0.28);

}


.blog-banner-content span {

    color: #b8c4ff;

    font-family:
        "Montserrat", sans-serif;

    font-size: 11px;

    font-weight: 750;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.blog-banner-content h2 {

    max-width: 780px;

    margin-top: 11px;

    color: #ffffff;

    font-family:
        "Montserrat", sans-serif;

    font-size:
        clamp(32px, 3.5vw, 53px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -2.7px;

}


.blog-banner-content p {

    max-width: 720px;

    margin-top: 14px;

    color:
        rgba(234, 239, 255, 0.7);

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================
NEWSLETTER
========================================= */

.blog-newsletter {

    padding:
        110px 0;

    background: #ffffff;

}


.blog-newsletter-card {

    padding: 58px;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(420px, 1.1fr);

    align-items: center;

    gap: 70px;

    overflow: hidden;

    border-radius: 32px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(86, 92, 207, 0.2),
            transparent 32%
        ),

        linear-gradient(
            135deg,
            #b5bef1,
            #0b2448
        );

    box-shadow:
        0 30px 80px
        rgba(24, 41, 73, 0.19);

}


.blog-newsletter-content
.blog-section-tag {

    color: #b8c4ff;

}


.blog-newsletter-content h2 {

    margin-top: 20px;

    color: #ffffff;

    font-family:
        "Montserrat", sans-serif;

    font-size:
        clamp(36px, 3.6vw, 56px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -3px;

}


.blog-newsletter-content p {

    margin-top: 17px;

    color:
        rgba(232, 238, 252, 0.68);

    font-size: 15px;

    line-height: 1.7;

}


.blog-newsletter-form {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 12px;

}


.blog-newsletter-input {

    min-height: 60px;

    padding:
        0 19px;

    display: flex;

    align-items: center;

    gap: 12px;

    border:
        1px solid
        rgba(255, 255, 255, 0.13);

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.08);

}


.blog-newsletter-input i {

    color: #aabaff;

    font-size: 19px;

}


.blog-newsletter-input input {

    width: 100%;

    color: #ffffff;

    border: 0;

    outline: 0;

    background: transparent;

}


.blog-newsletter-input input::placeholder {

    color:
        rgba(255, 255, 255, 0.48);

}


.blog-newsletter-form button {

    min-height: 60px;

    padding:
        0 24px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    color: #ffffff;

    font-family:
        "Montserrat", sans-serif;

    font-size: 13px;

    font-weight: 750;

    border: 0;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            var(--blog-purple),
            var(--blog-blue)
        );

    cursor: pointer;

    box-shadow:
        0 15px 35px
        rgba(45, 95, 233, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.blog-newsletter-form button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 20px 42px
        rgba(45, 95, 233, 0.35);

}


.blog-newsletter-form small {

    grid-column:
        1 / -1;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 10px;

}


/* =========================================
FOOTER
========================================= */

#footer-bms {

    padding-top: 60px;

    border-top:
        1px solid
        #e8ebf6;

    background: #ffffff;

}


.footer-container {

    width:
        min(1200px, 92%);

    margin: auto;

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1.3fr;

    gap: 40px;

}


.footer-logo img {

    width: 180px;

    margin-bottom: 25px;

}


.footer-logo p {

    max-width: 360px;

    color: #5d6483;

    font-size: 15px;

    line-height: 1.8;

}


.footer-col h4 {

    margin-bottom: 23px;

    color: #373761;

    font-family:
        "Montserrat", sans-serif;

    font-size: 18px;

    font-weight: 700;

}


.footer-col ul {

    margin: 0;

    padding: 0;

    list-style: none;

}


.footer-col li {

    margin-bottom: 10px;

}


.footer-col a,
.footer-contact li {

    color: #5d6483;

    font-size: 14px;

    transition:
        color 0.25s ease,
        padding 0.25s ease;

}


.footer-col a:hover {

    color:
        var(--blog-purple);

    padding-left: 5px;

}


.footer-contact li {

    display: flex;

    gap: 9px;

    line-height: 1.6;

}


.footer-contact i {

    color:
        var(--blog-purple);

    flex-shrink: 0;

}


.footer-bottom {

    width:
        min(1400px, 92%);

    margin:
        60px auto 0;

    padding:
        17px 0;

    border-top:
        1px solid
        #eceff8;

}


.footer-bottom p {

    margin: 0;

    color: #7a8099;

    font-size: 13px;

    text-align: center;

}

/* ===========================
MODAL DE ACESSO AOS SISTEMAS
=========================== */

#loginSistemasModal {
    position: fixed;

    z-index: 20010 !important;

    inset: 0;

    width: 100%;
    height: 100%;

    padding-right: 0 !important;

    overflow-x: hidden;
    overflow-y: auto;
}

body.modal-open {
    overflow: hidden !important;

    padding-right: 0 !important;
}



/* ===========================
FUNDO ESCURO DO MODAL
=========================== */

.modal-backdrop {
    z-index: 20000 !important;

    background: #ffffff00 !important;

    transition: opacity 0.28s ease !important;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.68 !important;
}



/* ===========================
ÁREA PRINCIPAL DO MODAL
=========================== */

#loginSistemasModal .modal-dialog {
    display: flex;

    align-items: center;
    justify-content: center;

    width: calc(100% - 40px);

    max-width: 1160px;

    min-height: calc(100vh - 40px);

    margin: 20px auto;
}

.login-modal-content {
    position: relative;

    overflow: hidden;

    width: 100%;

    max-height: calc(100vh - 40px);

    border: 0;

    border-radius: 28px;

    background: #ffffff;

    box-shadow:
        0 24px 60px rgba(8, 18, 35, 0.28);

    backface-visibility: hidden;
}



/* ===========================
BOTÃO FECHAR
=========================== */

.login-modal-close {
    position: absolute;

    z-index: 20;

    top: 20px;
    right: 20px;

    width: 42px;
    height: 42px;

    padding: 0;

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.94);

    background-size: 13px;

    opacity: 1;

    box-shadow:
        0 10px 26px rgba(20, 20, 60, 0.14);

    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}

.login-modal-close:hover {
    transform: rotate(90deg);

    background-color: #ffffff;
}



/* ===========================
GRID PRINCIPAL
=========================== */

.login-modal-grid {
    display: grid;

    grid-template-columns:
        minmax(340px, 0.85fr)
        minmax(520px, 1.35fr);

    min-height: 650px;
}



/* ===========================
LADO ESQUERDO
=========================== */

.login-modal-visual {
    position: relative;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    min-height: 650px;

    padding: 54px 48px;
}



/* ===========================
IMAGEM DO LADO ESQUERDO
=========================== */

.login-modal-background {
    position: absolute;

    z-index: 1;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

@media (hover: hover) {

    .login-modal-content:hover .login-modal-background {
        transform: scale(1.025);
    }

}



/* ===========================
SOBREPOSIÇÃO DA IMAGEM
=========================== */

.login-modal-overlay {
    position: absolute;

    z-index: 2;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(55, 55, 97, 0.22) 0%,
            rgba(55, 55, 97, 0.62) 48%,
            rgba(30, 30, 72, 0.96) 100%
        );
}



/* ===========================
CONTEÚDO DO LADO ESQUERDO
=========================== */

.login-modal-visual-content {
    position: relative;

    z-index: 3;

    width: 100%;

    color: #ffffff;
}



/* ===========================
LOGO BMS
=========================== */

.login-modal-logo {
    display: block;

    width: 100px;
    height: auto;

    margin-bottom: 80px;

    object-fit: contain;
}



/* ===========================
ETIQUETA
=========================== */

.login-modal-tag {
    display: inline-flex;

    align-items: center;

    margin-bottom: 18px;

    padding: 9px 15px;

    border: 1px solid rgba(255, 255, 255, 0.24);

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.12);

    color: #ffffff;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}



/* ===========================
TÍTULO DO LADO ESQUERDO
=========================== */

.login-modal-visual-content h2 {
    max-width: 420px;

    margin: 0 0 17px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: clamp(30px, 3vw, 45px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -0.04em;
}



/* ===========================
PARÁGRAFO DO LADO ESQUERDO
=========================== */

.login-modal-visual-content > p {
    max-width: 420px;

    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-family: "Montserrat", sans-serif;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.75;
}



/* ===========================
REDES SOCIAIS DO MODAL
=========================== */

.login-modal-socials {
    display: flex;

    align-items: center;

    flex-wrap: nowrap;

    width: 100%;

    gap: 7px;

    margin-top: 34px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.login-modal-social-link {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 1;

    min-width: 0;
    min-height: 36px;

    gap: 5px;

    padding: 7px 8px;

    border: 1px solid rgba(255, 255, 255, 0.24);

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    font-weight: 600;

    line-height: 1;

    white-space: nowrap;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.login-modal-social-link i {
    flex-shrink: 0;

    color: #ffffff;

    font-size: 13px;

    line-height: 1;
}

.login-modal-social-link span {
    color: #ffffff;
}

.login-modal-social-link:hover {
    transform: translateY(-3px);

    border-color: rgba(255, 255, 255, 0.5);

    background: rgba(255, 255, 255, 0.17);

    color: #ffffff;

    box-shadow:
        0 12px 25px rgba(15, 15, 40, 0.18);
}

.login-modal-social-link:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.35);

    outline-offset: 3px;
}



/* ===========================
LADO DIREITO
=========================== */

.login-modal-systems {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 72px 55px 45px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(86, 92, 207, 0.09),
            transparent 35%
        ),
        #ffffff;
}



/* ===========================
CABEÇALHO DO LADO DIREITO
=========================== */

.login-modal-header {
    margin-bottom: 30px;
}

.login-modal-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: #565ccf;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.login-modal-header h3 {
    margin: 0 0 10px;

    color: #282844;

    font-family: "Poppins", sans-serif;

    font-size: clamp(27px, 3vw, 37px);

    font-weight: 700;

    line-height: 1.18;

    letter-spacing: -0.035em;
}

.login-modal-header p {
    margin: 0;

    color: #77778d;

    font-family: "Montserrat", sans-serif;

    font-size: 14px;

    line-height: 1.7;
}



/* ===========================
GRID DOS SISTEMAS
=========================== */

.login-systems-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 15px;
}



/* ===========================
CARD DE SISTEMA
=========================== */

.login-system-card {
    position: relative;

    display: flex;

    align-items: center;

    gap: 15px;

    min-height: 150px;

    overflow: hidden;

    padding: 21px 20px;

    border: 1px solid #e6e6ef;

    border-radius: 20px;

    background: #ffffff;

    color: inherit;

    text-decoration: none;

    box-shadow:
        0 10px 30px rgba(43, 43, 85, 0.05);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.login-system-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    border-radius: 20px 0 0 20px;

    background: var(--system-color);

    transform: scaleY(0);

    transform-origin: bottom;

    transition: transform 0.35s ease;
}

.login-system-card::after {
    content: "";

    position: absolute;

    right: -70px;
    bottom: -80px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background: var(--system-background);

    transition: transform 0.4s ease;
}

.login-system-card:hover {
    transform: translateY(-7px);

    border-color: var(--system-border);

    color: inherit;

    box-shadow:
        0 20px 38px rgba(43, 43, 85, 0.12);
}

.login-system-card:hover::before {
    transform: scaleY(1);
}

.login-system-card:hover::after {
    transform: scale(1.2);
}



/* ===========================
CORES DE CADA SISTEMA
=========================== */

.login-system-card-otica {
    --system-color: #565ccf;

    --system-background: rgba(86, 92, 207, 0.08);

    --system-border: rgba(86, 92, 207, 0.35);
}

.login-system-card-gestao {
    --system-color: #9306cf;

    --system-background: rgba(0, 188, 106, 0.08);

    --system-border: rgba(113, 0, 188, 0.35);
}

.login-system-card-winfit {
    --system-color: #0c9519;

    --system-background: rgba(198, 146, 60, 0.09);

    --system-border: rgba(60, 198, 65, 0.4);
}

.login-system-card-automecanica {
    --system-color: #fca038;

    --system-background: rgba(252, 160, 56, 0.1);

    --system-border: rgba(252, 160, 56, 0.4);
}



/* ===========================
ÍCONE DO SISTEMA
=========================== */

.login-system-icon {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 60px;

    width: 60px;
    height: 60px;

    padding: 10px;

    border-radius: 17px;

    background: #f6f6fa00;

    transition:
        transform 0.35s ease,
        background-color 0.35s ease;
}

.login-system-card:hover .login-system-icon {
    transform: scale(1.06);

    background: var(--system-background);
}

.login-system-icon img {
    display: block;

    width: 110%;
    height: 110%;

    object-fit: cover;
}



/* ===========================
INFORMAÇÕES DO SISTEMA
=========================== */

.login-system-information {
    position: relative;

    z-index: 2;

    display: flex;

    flex: 1;

    flex-direction: column;

    min-width: 0;
}

.login-system-category {
    margin-bottom: 4px;

    color: #9292a6;

    font-family: "Montserrat", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.06em;

    text-transform: uppercase;
}

.login-system-information strong {
    display: block;

    margin-bottom: 6px;

    color: #30304c;

    font-family: "Poppins", sans-serif;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.3;
}

.login-system-information small {
    display: block;

    color: #858598;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    font-weight: 400;

    line-height: 1.55;
}



/* ===========================
SETA DO CARD
=========================== */

.login-system-arrow {
    position: absolute;

    z-index: 3;

    top: 15px;
    right: 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;

    border-radius: 50%;

    background: #f5f5f9;

    color: #77778e;

    font-size: 13px;

    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        color 0.35s ease;
}

.login-system-card:hover .login-system-arrow {
    transform: translate(2px, -2px);

    background: var(--system-color);

    color: #ffffff;
}



/* ===========================
RODAPÉ DO MODAL
=========================== */

.login-modal-footer {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #ededf3;

    color: #858598;

    font-family: "Montserrat", sans-serif;

    font-size: 12px;
}

.login-modal-footer i {
    color: #00bc6a;

    font-size: 17px;
}



/* ===========================
ANIMAÇÃO SUAVE DO MODAL
=========================== */

#loginSistemasModal.fade .modal-dialog {
    opacity: 0;

    transform:
        translate3d(0, 14px, 0)
        scale(0.99);

    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.24s ease;

    will-change:
        transform,
        opacity;
}

#loginSistemasModal.show .modal-dialog {
    opacity: 1;

    transform:
        translate3d(0, 0, 0)
        scale(1);
}



/* ===========================
MODAL FALE COM ESPECIALISTA
=========================== */

#especialistaModal {

    position: fixed;

    z-index: 20010 !important;

    inset: 0;

    width: 100%;
    height: 100%;

    padding-right: 0 !important;

    overflow-x: hidden;
    overflow-y: auto;

}



/* ===========================
POSIÇÃO DO MODAL
=========================== */

#especialistaModal .modal-dialog {

    display: flex;

    align-items: center;

    width: calc(100% - 50px);

    max-width: 1240px;

    min-height: calc(100vh - 50px);

    margin: 25px auto;

}



/* ===========================
CONTEÚDO PRINCIPAL
=========================== */

.especialista-modal-content {

    width: 100%;

    max-height: calc(100vh - 50px);

    overflow: hidden;

    border: 0;

    border-radius: 28px;

    background: #ffffff;

    box-shadow:
        0 26px 70px rgba(5, 15, 25, 0.3);

}



/* ===========================
GRID DO MODAL
=========================== */

.especialista-modal-grid {

    grid-template-columns:
        minmax(370px, 0.95fr)
        minmax(570px, 1.25fr);

    min-height: 690px;

}



/* ===========================
LADO ESQUERDO
=========================== */

.especialista-modal-visual {

    min-height: 690px;

}



/* ===========================
BENEFÍCIOS DO LADO ESQUERDO
=========================== */

.especialista-benefits {

    display: flex;

    flex-direction: column;

    gap: 16px;

    margin-top: 30px;

}



.especialista-benefit {

    display: flex;

    align-items: center;

    gap: 13px;

}



.especialista-benefit-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    border-radius: 13px;

    background: rgba(255, 255, 255, 0.13);

    color: #ffffff;

    font-size: 18px;

}



.especialista-benefit p {

    margin: 0;

    color: rgba(255, 255, 255, 0.9);

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.5;

}



/* ===========================
ÁREA DO FORMULÁRIO
=========================== */

.especialista-modal-form-area {

    display: flex;

    flex-direction: column;

    justify-content: center;

    overflow-y: auto;

    padding: 58px 54px 45px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(86, 92, 207, 0.06),
            transparent 38%
        ),
        #ffffff;

}



/* ===========================
CABEÇALHO DO FORMULÁRIO
=========================== */

.especialista-modal-header {

    margin-bottom: 25px;

}



.especialista-modal-header h3 {

    margin: 0 0 9px;

    color: #282844;

    font-family: "Poppins", sans-serif;

    font-size: clamp(27px, 3vw, 36px);

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -0.035em;

}



.especialista-modal-header p {

    max-width: 600px;

    margin: 0;

    color: #77778d;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    line-height: 1.65;

}



/* ===========================
FORMULÁRIO
=========================== */

.especialista-form {

    display: flex;

    flex-direction: column;

    gap: 16px;

}



/* ===========================
LINHAS DO FORMULÁRIO
=========================== */

.especialista-form-row {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 16px;

}



/* ===========================
CAMPO
=========================== */

.especialista-field {

    display: flex;

    flex-direction: column;

    gap: 7px;

    min-width: 0;

}



.especialista-field-full {

    width: 100%;

}



.especialista-field label {

    color: #282844;

    font-family: "Montserrat", sans-serif;

    font-size: 12px;

    font-weight: 700;

}



/* ===========================
INPUTS E SELECTS
=========================== */

.especialista-field input,
.especialista-field select,
.especialista-field textarea {

    width: 100%;

    border: 1px solid #dedee8;

    border-radius: 15px;

    outline: none;

    background: #f9fafb;

    color: #30304c;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;

}



.especialista-field input,
.especialista-field select {

    height: 52px;

    padding: 0 16px;

}



.especialista-field textarea {

    min-height: 120px;

    padding: 15px 16px;

    line-height: 1.6;

    resize: vertical;

}



.especialista-field input::placeholder,
.especialista-field textarea::placeholder {

    color: #9797a7;

}



/* ===========================
FOCO DOS CAMPOS
=========================== */

.especialista-field input:focus,
.especialista-field select:focus,
.especialista-field textarea:focus {

    border-color: rgba(86, 92, 207, 0.65);

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(86, 92, 207, 0.1);

}



/* ===========================
SELECT
=========================== */

.especialista-field select {

    cursor: pointer;

}



/* ===========================
CONSENTIMENTO
=========================== */

.especialista-consent {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #77778d;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    line-height: 1.55;

    cursor: pointer;

}



.especialista-consent input {

    flex: 0 0 15px;

    width: 15px;
    height: 15px;

    margin-top: 2px;

    accent-color: #565ccf;

    cursor: pointer;

}



/* ===========================
BOTÃO ENVIAR
=========================== */

.especialista-submit {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    width: 100%;

    min-height: 54px;

    margin-top: 2px;

    padding: 14px 24px;

    border: 0;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #565ccf,
            #4448aa
        );

    color: #ffffff;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 15px 30px rgba(86, 92, 207, 0.22);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;

}



.especialista-submit i {

    font-size: 16px;

    transition: transform 0.3s ease;

}



.especialista-submit:hover {

    transform: translateY(-3px);

    filter: brightness(1.05);

    box-shadow:
        0 20px 36px rgba(86, 92, 207, 0.3);

}



.especialista-submit:hover i {

    transform: translateX(4px);

}



/* ===========================
ANIMAÇÃO SUAVE
=========================== */

#especialistaModal.fade .modal-dialog {

    opacity: 0;

    transform:
        translate3d(0, 16px, 0)
        scale(0.99);

    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.25s ease;

    will-change:
        transform,
        opacity;

}



#especialistaModal.show .modal-dialog {

    opacity: 1;

    transform:
        translate3d(0, 0, 0)
        scale(1);

}

/* ===========================
CAMPO ANTISPAM
=========================== */

.especialista-honey {

    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    opacity: 0 !important;

    pointer-events: none !important;

}



/* ===========================
MENSAGEM DO FORMULÁRIO
=========================== */

.especialista-form-status {

    display: none;

    align-items: flex-start;

    gap: 10px;

    width: 100%;

    padding: 13px 15px;

    border: 1px solid transparent;

    border-radius: 13px;

    font-family: "Montserrat", sans-serif;

    font-size: 12px;

    font-weight: 600;

    line-height: 1.55;

}



/* ===========================
MENSAGEM DE SUCESSO
=========================== */

.especialista-form-status.is-success {

    display: flex;

    border-color: rgba(0, 188, 106, 0.28);

    background: rgba(0, 188, 106, 0.1);

    color: #087a48;

}



.especialista-form-status.is-success::before {

    content: "\F26A";

    flex-shrink: 0;

    font-family: "bootstrap-icons";

    font-size: 17px;

    line-height: 1.2;

}



/* ===========================
MENSAGEM DE ERRO
=========================== */

.especialista-form-status.is-error {

    display: flex;

    border-color: rgba(205, 53, 53, 0.25);

    background: rgba(205, 53, 53, 0.08);

    color: #a62525;

}



.especialista-form-status.is-error::before {

    content: "\F33A";

    flex-shrink: 0;

    font-family: "bootstrap-icons";

    font-size: 17px;

    line-height: 1.2;

}



/* ===========================
BOTÃO DURANTE O ENVIO
=========================== */

.especialista-submit:disabled {

    cursor: wait;

    opacity: 0.72;

    transform: none !important;

    box-shadow:
        0 10px 22px rgba(86, 92, 207, 0.16);

}



.especialista-submit.is-loading i {

    animation: especialista-loading 0.8s linear infinite;

}



@keyframes especialista-loading {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}

/* ==================================================
BOTÃO FLUTUANTE WHATSAPP
================================================== */

.floating-whatsapp {

    position: fixed;

    right: 28px;

    bottom: 28px;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 68px;

    height: 68px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #25d366,
        #18b956
    );

    color: #ffffff;

    text-decoration: none;

    box-shadow:
        0 15px 35px rgba(37,211,102,.35);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}



.floating-whatsapp:hover{

    transform:
        translateY(-5px)
        scale(1.06);

    color:#fff;

    box-shadow:
        0 22px 45px rgba(37,211,102,.45);

}



.floating-whatsapp i{

    position:relative;

    z-index:3;

    font-size:34px;

}



/* ==================================================
PULSO
================================================== */

.floating-whatsapp-pulse{

    position:absolute;

    inset:0;

    border-radius:50%;

    background:rgba(37,211,102,.35);

    animation:
        whatsappPulse 2.2s infinite;

}



@keyframes whatsappPulse{

    0%{

        transform:scale(.9);

        opacity:.8;

    }

    70%{

        transform:scale(1.55);

        opacity:0;

    }

    100%{

        transform:scale(1.55);

        opacity:0;

    }

}

#newsletter-msg{

    margin-top:18px;

    font-weight:600;

    font-size:15px;

    display:none;

}

#newsletter-msg.success{

    display:block;

    color:#00a86b;

}

#newsletter-msg.error{

    display:block;

    color:#e53935;

}

/* ==================================================
RESPONSIVO
================================================== */

@media(max-width:768px){

    .floating-whatsapp{

        width:60px;

        height:60px;

        right:18px;

        bottom:18px;

    }

    .floating-whatsapp i{

        font-size:30px;

    }

}

/* ===========================
TABLET
=========================== */

@media (max-width: 991px) {

    #especialistaModal .modal-dialog {

        width: calc(100% - 28px);

        min-height: calc(100vh - 28px);

        margin: 14px auto;

    }



    .especialista-modal-content {

        max-height: calc(100vh - 28px);

        overflow-y: auto;

        border-radius: 23px;

    }



    .especialista-modal-grid {

        grid-template-columns: 1fr;

        min-height: auto;

    }



    .especialista-modal-visual {

        min-height: 430px;

    }



    .especialista-modal-form-area {

        overflow: visible;

        padding: 46px 36px 38px;

    }

}



/* ===========================
CELULAR
=========================== */

@media (max-width: 650px) {

    #especialistaModal .modal-dialog {

        width: calc(100% - 18px);

        margin: 9px auto;

    }



    .especialista-modal-content {

        max-height: calc(100vh - 18px);

        border-radius: 19px;

    }



    .especialista-modal-visual {

        min-height: 390px;

        padding: 42px 24px 30px;

    }



    .especialista-benefits {

        gap: 12px;

        margin-top: 22px;

    }



    .especialista-benefit-icon {

        flex-basis: 37px;

        width: 37px;
        height: 37px;

        border-radius: 11px;

        font-size: 15px;

    }



    .especialista-benefit p {

        font-size: 12px;

    }



    .especialista-modal-form-area {

        padding: 38px 21px 28px;

    }



    .especialista-form-row {

        grid-template-columns: 1fr;

        gap: 16px;

    }



    .especialista-field input,
    .especialista-field select {

        height: 50px;

    }



    .especialista-submit {

        min-height: 51px;

    }

}



/* ===========================
CELULAR PEQUENO
=========================== */

@media (max-width: 420px) {

    .especialista-modal-visual {

        min-height: 360px;

    }



    .especialista-modal-header h3 {

        font-size: 26px;

    }



    .especialista-field textarea {

        min-height: 110px;

    }



    .especialista-consent {

        font-size: 10px;

    }

}




/* ===========================
RESPONSIVIDADE
=========================== */

@media (max-width: 991px) {

    #loginSistemasModal .modal-dialog {
        width: calc(100% - 28px);

        min-height: calc(100vh - 28px);

        margin: 14px auto;
    }

    .login-modal-content {
        max-height: calc(100vh - 28px);

        overflow-x: hidden;
        overflow-y: auto;

        border-radius: 22px;
    }

    .login-modal-grid {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .login-modal-visual {
        min-height: 360px;

        padding: 45px 38px;
    }

    .login-modal-logo {
        width: 135px;

        margin-bottom: 24px;
    }

    .login-modal-visual-content h2 {
        max-width: 520px;
    }

    .login-modal-visual-content > p {
        max-width: 550px;
    }

    .login-modal-socials {
        max-width: 560px;

        margin-top: 24px;
    }

    .login-modal-systems {
        padding: 50px 38px 38px;
    }

}

@media (max-width: 650px) {

    #loginSistemasModal .modal-dialog {
        width: calc(100% - 20px);

        min-height: calc(100vh - 20px);

        margin: 10px auto;
    }

    .login-modal-content {
        max-height: calc(100vh - 20px);

        border-radius: 20px;
    }

    .login-modal-close {
        top: 14px;
        right: 14px;

        width: 38px;
        height: 38px;
    }

    .login-modal-visual {
        min-height: 320px;

        padding: 42px 25px 30px;
    }

    .login-modal-visual-content h2 {
        font-size: 30px;
    }

    .login-modal-socials {
        gap: 6px;

        margin-top: 22px;

        padding-top: 20px;
    }

    .login-modal-social-link {
        min-height: 34px;

        padding: 7px 6px;

        font-size: 10px;
    }

    .login-modal-social-link i {
        font-size: 12px;
    }

    .login-modal-systems {
        padding: 39px 20px 28px;
    }

    .login-modal-header {
        margin-bottom: 23px;
    }

    .login-modal-header h3 {
        font-size: 27px;
    }

    .login-systems-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .login-system-card {
        min-height: 125px;

        padding: 18px;
    }

    .login-system-information small {
        max-width: 250px;
    }

}

@media (max-width: 420px) {

    .login-modal-visual {
        min-height: 285px;
    }

    .login-modal-logo {
        width: 115px;

        margin-bottom: 20px;
    }

    .login-modal-tag {
        margin-bottom: 13px;

        padding: 7px 12px;

        font-size: 9px;
    }

    .login-modal-visual-content h2 {
        margin-bottom: 12px;

        font-size: 26px;
    }

    .login-modal-visual-content > p {
        font-size: 13px;

        line-height: 1.65;
    }

    .login-modal-socials {
        flex-wrap: wrap;
    }

    .login-modal-social-link {
        flex: 1 1 calc(50% - 6px);
    }

    .login-modal-systems {
        padding-right: 16px;
        padding-left: 16px;
    }

    .login-system-icon {
        flex-basis: 52px;

        width: 52px;
        height: 52px;
    }

    .login-system-information strong {
        font-size: 16px;
    }

    .login-system-information small {
        font-size: 10px;
    }

}

@media (prefers-reduced-motion: reduce) {

    #loginSistemasModal.fade .modal-dialog,
    .modal-backdrop,
    .login-modal-close,
    .login-modal-background,
    .login-modal-social-link,
    .login-system-card,
    .login-system-card::before,
    .login-system-card::after,
    .login-system-icon,
    .login-system-arrow {
        transition: none !important;
    }

}








/* =========================================
RESPONSIVO - TELAS MÉDIAS
========================================= */

@media
(max-width: 1200px) {

    .nav-links {

        gap: 15px;

    }


    .nav-links > a,
    .nav-dropdown-trigger,
    .login {

        font-size: 13px;

    }


    .blog-hero-container {

        grid-template-columns:
            minmax(0, 1fr)
            350px;

        gap: 55px;

    }


    .blog-posts-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================
RESPONSIVO - TABLET
========================================= */

@media
(max-width: 992px) {

    .nav-links,
    .nav-actions {

        display: none;

    }


    .nav-links.mobile-open {

        position: absolute;

        top: 82px;

        left: 0;

        width: 100%;

        padding: 20px;

        display: flex;

        align-items: stretch;

        flex-direction: column;

        gap: 0;

        background: #ffffff;

        box-shadow:
            0 20px 45px
            rgba(20, 35, 60, 0.14);

    }


    .nav-links.mobile-open > a,
    .nav-links.mobile-open
    .nav-dropdown-trigger {

        height: auto;

        padding:
            14px 10px;

    }


    .nav-links.mobile-open
    .nav-dropdown {

        display: block;

    }


    .nav-links.mobile-open
    .nav-dropdown-menu {

        display: none;

    }


    .nav-mobile-button {

        display: flex;

    }


    .blog-hero {

        min-height: 850px;

    }


    .blog-hero-container {

        grid-template-columns: 1fr;

    }


    .blog-hero-highlight {

        max-width: 520px;

    }


    .blog-categories-scroll {

        justify-content: flex-start;

        overflow-x: auto;

        scrollbar-width: thin;

    }


    .blog-category {

        flex-shrink: 0;

    }


    .blog-featured-card {

        grid-template-columns: 1fr;

    }


    .blog-featured-image {

        min-height: 420px;

    }


    .blog-banner-container {

        grid-template-columns:
            auto
            1fr;

    }


    .blog-banner-container
    .blog-button {

        grid-column: 2;

        justify-self: start;

    }


    .blog-newsletter-card {

        grid-template-columns: 1fr;

    }


    .footer-container {

        grid-template-columns:
            1fr
            1fr;

    }

}


/* =========================================
RESPONSIVO - CELULAR
========================================= */

@media
(max-width: 680px) {

    .blog-container {

        width:
            calc(100% - 36px);

    }


    .nav-container {

        padding:
            0 18px;

    }


    .logo img {

        height: 82px;

    }


    .blog-hero {

        min-height: 840px;

        padding:
            125px 0
            80px;

        background-position:
            65% center;

    }


    .blog-hero-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(3, 14, 34, 0.87) 0%,
                rgba(4, 18, 42, 0.96) 45%,
                rgba(4, 18, 42, 1) 100%
            );

    }


    .blog-hero h1 {

        font-size:
            clamp(40px, 12vw, 55px);

        letter-spacing: -3px;

    }


    .blog-hero-content > p {

        font-size: 16px;

    }


    .blog-hero-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .blog-button {

        width: 100%;

    }


    .blog-hero-highlight {

        padding: 25px;

    }


    .blog-categories {

        margin-top: -25px;

    }


    .blog-categories-scroll {

        min-height: 68px;

        border-radius: 18px;

    }


    .blog-featured {

        padding-top: 75px;

    }


    .blog-featured-image {

        min-height: 290px;

    }


    .blog-featured-content {

        padding:
            30px 24px;

    }


    .blog-featured-content h2 {

        font-size: 32px;

        letter-spacing: -2px;

    }


    .blog-featured-footer {

        align-items: flex-start;

        flex-direction: column;

    }


    .blog-section-header {

        align-items: flex-start;

        flex-direction: column;

    }


    .blog-section-header h2 {

        font-size: 38px;

        letter-spacing: -2.4px;

    }


    .blog-posts-grid {

        grid-template-columns: 1fr;

    }


    .blog-banner {

        min-height: 560px;

    }


    .blog-banner-container {

        grid-template-columns: 1fr;

        text-align: center;

    }


    .blog-banner-icon {

        margin:
            0 auto;

    }


    .blog-banner-container
    .blog-button {

        grid-column: auto;

        justify-self: stretch;

    }


    .blog-newsletter-card {

        padding:
            35px 24px;

    }


    .blog-newsletter-form {

        grid-template-columns: 1fr;

    }


    .blog-newsletter-form small {

        grid-column: auto;

    }


    .footer-container {

        grid-template-columns: 1fr;

    }

}

/* Numeração ou ícone */
/*========================================
ÍCONE DO PRODUTO
========================================*/

.dropdown-icon{

    position:relative;

    width:62px;
    height:62px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,.92) 0%,
            rgba(245, 247, 255, 0.167) 45%,
            rgba(86,92,207,.08) 100%
        );

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    transition:.35s ease;

    overflow:hidden;

}

.dropdown-icon::before{

    content:"";

    position:absolute;

    width:85%;
    height:85%;

    border-radius:50%;

    background:

        radial-gradient(
            circle,
            rgba(86,92,207,.22),
            transparent 70%
        );

    filter:blur(10px);

    opacity:.8;

}

.dropdown-icon img{

    position:relative;

    width:92px !important;
    height:92px !important;

    object-fit:contain;

    z-index:2;

    transition:.35s;

}

.nav-dropdown-menu a:hover .dropdown-icon{

    transform:
        translateY(-3px)
        scale(1.05);

    background:

        radial-gradient(
            circle,
            rgba(255,255,255,.96) 0%,
            rgba(242,244,255,.88) 55%,
            rgba(86,92,207,.15) 100%
        );

    box-shadow:

        0 12px 28px rgba(86,92,207,.18),

        0 0 35px rgba(86,92,207,.18);

}

.nav-dropdown-menu a:hover .dropdown-icon::before{

    opacity:1;

    transform:scale(1.2);

}

.nav-dropdown-menu a:hover img{

    transform:scale(1.12);

}

/* Bloco de texto */
.dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* Nome do produto */
.dropdown-text strong {
  color: inherit;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

/* Descrição */
.dropdown-text small {
  color: #777b98;

  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.nav-dropdown-menu > a,
.nav-dropdown-menu > a:hover,
.nav-dropdown-menu > a:focus {
  text-decoration: none !important;
  border-bottom: none !important;
}

.nav-dropdown-menu > a::after,
.nav-dropdown-menu > a:hover::after,
.nav-dropdown-menu > a:focus::after {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  content: none !important;
}

.dropdown-icon img.logo-nav-otica{
    width: 82px !important;
    height: 82px !important;
}

.dropdown-icon img.logo-nav-auto{
    width: 85px !important;
    height: 85px !important;
}

.dropdown-icon img.logo-nav-winfit{
  width: 40px !important;
  height: 40px !important;
}

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(255,255,255,.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition: .35s ease;
}



.nav-container{
    width:100%;
    height:50px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 35px;
}

.nav-left{
    display:flex;
    align-items:center;
    gap:20px;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:100px;
    width:auto;
    display:block;
}

.nav-links {
  display: flex;
  gap: 34px;
}

/* Links do menu */

.nav-links{
    display:flex;
    gap:24px;
}

.nav-links a{
    position:relative;
    display:flex;
    align-items:center;

    color:#222224;
    text-decoration:none;

    font-size:15px;
    font-weight:600;

    height:82px;

    transition:color .3s ease;
}

/* Linha animada */

.nav-links a::after{
    content: "";
    position: absolute;

    left: 50%;
    bottom: 18px;

    width: 0;
    height: 2.5px;

    background: currentColor;
    border-radius: 999px;

    transform: translateX(-50%);
    transition: width .35s cubic-bezier(.22,.61,.36,1);
}

.nav-links a:hover::after{
    width: 100%;
}

.nav-links a:hover::after{
    transform:translateX(-50%) scaleX(1);
}


/* Link Entrar */

.login{
    position: relative;

    display: flex;
    align-items: center;

    height: 82px;

    color: #222224;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: color .3s ease;
}

/* Linha animada */

.login::after{
    content: "";
    position: absolute;

    left: 50%;
    bottom: 18px;

    width: 0;
    height: 2.5px;

    background: currentColor;
    border-radius: 999px;

    transform: translateX(-50%);
    transition: width .35s cubic-bezier(.22,.61,.36,1);
}

.login:hover{
    color: #222224;
}

.login:hover::after{
    width: 100%;
}


/* Botões da direita */

.nav-actions{
    display:flex;
    align-items:center;
    gap:24px;
}

.btn-nav{
    background:rgba(4, 34, 69, 0.979);
    color:#fef8f8;

    text-decoration:none;

    padding:13px 24px;

    border-radius:30px;
    

    font-weight:550;

    transition:
        transform .30s cubic-bezier(.22,.61,.36,1),
        box-shadow .30s ease,
        background .30s ease;
}

.btn-nav:hover{
    transform:scale(1.02);

    box-shadow:
        0 0 0 1px rgba(82, 82, 209, .12),
        0 1px 1px rgba(82, 82, 209, .35);

    background:#18378b;
}

.nav-links a,
.login,
.btn-nav{

    font-family:'Montserrat', sans-serif;

}

/* ===========================
ITEM ATIVO DA NAVBAR
=========================== */

.nav-links > a.active,
.nav-dropdown-trigger.active,
.login.active {

    color: #364ff8;   /* cor mais clara */

    font-weight: 700;
}

.nav-links > a.active::after,
.nav-dropdown-trigger.active::after,
.login.active::after {

    width: 100%;

    background: #364ff8;

    box-shadow:
        0 0 10px rgba(126,143,255,.45);
}
/* =====================================
MENU SUSPENSO - PRODUTOS
===================================== */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

/* Link principal Produtos */
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dropdown-arrow {
  width: 17px;
  height: 17px;
  fill: currentColor;

  transition: transform 0.3s ease;
}

/* Caixa do submenu */
.nav-dropdown-menu {
  position: absolute;

  top: calc(100% + 18px);
  left: 50%;

  width: 330px;
  padding: 12px;

  background: rgba(255, 255, 255, 0.98);

  border: 1px solid rgba(86, 92, 207, 0.13);
  border-radius: 16px;

  box-shadow:
    0 22px 55px rgba(31, 35, 82, 0.16),
    0 5px 15px rgba(31, 35, 82, 0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  opacity: 0;
  visibility: hidden;

  transform:
    translateX(-50%)
    translateY(10px);

  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;

  z-index: 9999;
}

/* Ponte invisível para o menu não fechar */
.nav-dropdown-menu::before {
  content: "";

  position: absolute;

  top: -22px;
  left: 0;

  width: 100%;
  height: 24px;
}

/* Exibir ao passar o mouse */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;

  transform:
    translateX(-50%)
    translateY(0);

  pointer-events: auto;
}

/* Girar seta */
.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

/* Links internos */
.nav-dropdown-menu > a {
  display: flex;
  align-items: center;
  gap: 13px;

  width: 100%;
  padding: 13px 12px;

  color: #373761;
  text-decoration: none;

  border-radius: 11px;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

/* Hover dos produtos */
.nav-dropdown-menu > a:hover {
  color: #565ccf;
  background: rgba(86, 92, 207, 0.08);
  
  transform: translateX(3px);
}

/* Numeração ou ícone */
/*========================================
ÍCONE DO PRODUTO
========================================*/

.dropdown-icon{

    position:relative;

    width:62px;
    height:62px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,.92) 0%,
            rgba(245, 247, 255, 0.167) 45%,
            rgba(86,92,207,.08) 100%
        );

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    transition:.35s ease;

    overflow:hidden;

}

.dropdown-icon::before{

    content:"";

    position:absolute;

    width:85%;
    height:85%;

    border-radius:50%;

    background:

        radial-gradient(
            circle,
            rgba(86,92,207,.22),
            transparent 70%
        );

    filter:blur(10px);

    opacity:.8;

}

.dropdown-icon img{

    position:relative;

    width:92px;
    height:92px;

    object-fit:contain;

    z-index:2;

    transition:.35s;

}

.nav-dropdown-menu a:hover .dropdown-icon{

    transform:
        translateY(-3px)
        scale(1.05);

    background:

        radial-gradient(
            circle,
            rgba(255,255,255,.96) 0%,
            rgba(242,244,255,.88) 55%,
            rgba(86,92,207,.15) 100%
        );

    box-shadow:

        0 12px 28px rgba(86,92,207,.18),

        0 0 35px rgba(86,92,207,.18);

}

.nav-dropdown-menu a:hover .dropdown-icon::before{

    opacity:1;

    transform:scale(1.2);

}

.nav-dropdown-menu a:hover img{

    transform:scale(1.12);

}

/* Bloco de texto */
.dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* Nome do produto */
.dropdown-text strong {
  color: inherit;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

/* Descrição */
.dropdown-text small {
  color: #777b98;

  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.nav-dropdown-menu > a,
.nav-dropdown-menu > a:hover,
.nav-dropdown-menu > a:focus {
  text-decoration: none !important;
  border-bottom: none !important;
}

.nav-dropdown-menu > a::after,
.nav-dropdown-menu > a:hover::after,
.nav-dropdown-menu > a:focus::after {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  content: none !important;
}

.dropdown-icon img.logo-nav-otica{
    width: 82px;
    height: 82px;
}

.dropdown-icon img.logo-nav-auto{
    width: 85px;
    height: 85px;
}

.dropdown-icon img.logo-nav-winfit{
  width: 40px;
  height: 40px;
}

/* =====================================
MENU SUSPENSO - MERCADOS
===================================== */

.mercados-dropdown-menu {
  width: 230px;
  
  padding: 8px;
}

/* Links do menu Mercados */
.mercados-dropdown-menu > a{

    all: unset;

    display:block;

    cursor:pointer;

    padding:10px 14px;

    color:#373761;

    font-size:14px;
    font-weight:700;

    border-radius:8px;

    transition:.25s;

}

/* Linha embaixo do texto */
.mercados-dropdown-menu > a::after {
  content: "";

  position: absolute;

  left: 15px;
  bottom: 8px;

  width: 0;
  height: 2px;

  background: #565ccf;
  border-radius: 2px;

  transition: width 0.25s ease;
}

/* Hover */
.mercados-dropdown-menu > a:hover {
  color: #565ccf;

  background: rgba(86, 92, 207, 0.08);

  padding-left: 20px;
}

/* Exibe o sublinhado no hover */
.mercados-dropdown-menu > a:hover::after {
  width: 45px;
}