*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

   font-family: "Montserrat", sans-serif;
    overflow-x:hidden;

}

.mercado-link-ativo {
  color: #ff922d !important;
  font-weight: 700 !important;
}


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

.hero-agro{

    position:relative;

    width:100%;

    height:100vh;

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

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}



.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.35)
    );

}



.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    padding:20px;

    animation:fadeUp 1s ease;

}



.hero-content h1{

    color:#f4f9ad;

    font-size: 50px;

    font-weight:600;

    line-height:1.1;

    margin-bottom:65px;

}



.hero-content p{

    color:#FFF;

    font-size:18px;

    line-height:1.7;

    font-weight:400;

    margin-bottom:45px;

    opacity:.95;

}



.btn-hero{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 42px;

    border-radius:50px;

    background:#00BC6A;

    color:#FFF;

    font-size:17px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

    

}



.btn-hero:hover{

    background:#009d58;

    transform:translateY(-4px);

    color:#FFF;

}



@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================
SEÇÃO 2 — A FORÇA DO AGRONEGÓCIO
========================================== */

.agro-importancia {
  position: relative;
  overflow: hidden;
  padding: 120px 24px;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(252, 160, 56, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(0, 188, 106, 0.22),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #062f24 0%,
      #0a4936 48%,
      #08372b 100%
    );
}


/* CONTAINER CENTRAL */

.agro-container {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin: 0 auto;
}


/* ELEMENTOS DECORATIVOS */

.agro-decoration {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.agro-decoration-left {
  width: 420px;
  height: 420px;
  top: -190px;
  left: -180px;
  box-shadow:
    0 0 0 40px rgba(255, 255, 255, 0.02),
    0 0 0 90px rgba(255, 255, 255, 0.015);
}

.agro-decoration-right {
  width: 480px;
  height: 480px;
  right: -240px;
  bottom: -230px;
  box-shadow:
    0 0 0 45px rgba(255, 255, 255, 0.02),
    0 0 0 100px rgba(255, 255, 255, 0.015);
}


/* CABEÇALHO */

.agro-section-header {
  max-width: 880px;
  margin: 0 auto 65px;
  text-align: center;
}

.agro-logo{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top: -80px;
    margin-bottom:60px;

}

.agro-logo img{

    width:240px;      /* ajuste conforme necessário */
    height:auto;
    display:block;

}

.agro-section-header h2 {
  margin-bottom: 25px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
}

.agro-section-header h2 span {
  color: #fca038;
}

.agro-section-header p {
  max-width: 790px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.8;
}


/* ==========================================
CARDS DE NÚMEROS
========================================== */

.agro-numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 90px;
}

.agro-number-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.17);
  backdrop-filter: blur(12px);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.agro-number-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -100px;
  right: -90px;
  border-radius: 50%;
  background: rgba(252, 160, 56, 0.12);
}

.agro-number-card:hover {
  transform: translateY(-10px);
  border-color: rgba(252, 160, 56, 0.55);
  background: rgba(255, 255, 255, 0.13);
}

.agro-number-card-featured {
  transform: translateY(-18px);
  border-color: rgba(252, 160, 56, 0.6);
  background:
    linear-gradient(
      145deg,
      rgba(252, 160, 56, 0.22),
      rgba(255, 255, 255, 0.1)
    );
}

.agro-number-card-featured:hover {
  transform: translateY(-28px);
}

.number-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 32px;
  border-radius: 17px;
  background: #fca038;
  color: #08372b;
  font-size: 26px;
  box-shadow: 0 14px 28px rgba(252, 160, 56, 0.2);
}

.number-card-content strong {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
}

.number-card-content h3 {
  margin-bottom: 14px;
  color: #fca038;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.number-card-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.73);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.number-card-content small {
  color: rgba(255, 255, 255, 0.48);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
}


/* ==========================================
GESTÃO E BENEFÍCIOS
========================================== */

.agro-management {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding: 65px;
  border-radius: 38px;
  background-image: url("../images/fundocard1.png");
  
  background-size: cover;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.22);
}



.agro-small-title {
  display: block;
  margin-bottom: 18px;
  color: #008c50;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.agro-management-content h2 {
  margin-bottom: 25px;
  color: #10382c;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.agro-management-content p {
  margin-bottom: 18px;
  color: #10382c;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
}

/* BOTÃO AGRONEGÓCIO */

.btn-agro{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    padding:16px 34px;

    border-radius:50px;

    background:#fca038;

    color:#fff;

    font-family:"Montserrat",sans-serif;
    font-size:15px;
    font-weight:700;

    text-decoration:none;

    transition:all .35s ease;

    box-shadow:0 15px 35px rgba(252,160,56,.28);

}

.btn-agro:hover{

    background:#fc931a;

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(188, 125, 0, 0.3);

}

.btn-agro i{

    transition:.35s;

}

.btn-agro:hover i{

    transform:translateX(6px);

}


/* CARDS DE BENEFÍCIOS */

.agro-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.agro-benefit-card {
  padding: 25px;
  border: 1px solid rgba(12, 74, 52, 0.1);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(9, 57, 41, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.agro-benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 38px rgba(9, 57, 41, 0.12);
}

.agro-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 15px;
  background: rgba(0, 188, 106, 0.12);
  color: #00a75e;
  font-size: 22px;
}

.agro-benefit-card h3 {
  margin-bottom: 10px;
  color: #10382c;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.agro-benefit-card p {
  margin: 0;
  color: #68766e;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.65;
}

/* ==================================================
SEÇÃO — DEFENSIVOS AGRÍCOLAS
================================================== */

.defensivos-section {
  position: relative;
  overflow: hidden;
  padding: 125px 24px;
  background:
    radial-gradient(
      circle at 90% 4%,
      rgba(252, 160, 56, 0.11),
      transparent 24%
    ),
    radial-gradient(
      circle at 4% 65%,
      rgba(0, 188, 106, 0.09),
      transparent 24%
    ),
    #ffffff;
}

.defensivos-container {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  margin: 0 auto;
}


/* DECORAÇÕES */

.defensivos-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.defensivos-shape-one {
  width: 430px;
  height: 430px;
  top: -250px;
  right: -180px;
  border: 1px solid rgba(0, 140, 80, 0.1);
  box-shadow:
    0 0 0 45px rgba(0, 188, 106, 0.025),
    0 0 0 100px rgba(0, 188, 106, 0.018);
}

.defensivos-shape-two {
  width: 330px;
  height: 330px;
  top: 900px;
  left: -220px;
  background: rgba(252, 160, 56, 0.08);
  filter: blur(5px);
}


/* ==================================================
ABERTURA
================================================== */

.defensivos-intro {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 75px;
  align-items: center;
  margin-bottom: 100px;
}

.defensivos-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 17px;
  border: 1px solid rgba(0, 167, 94, 0.17);
  border-radius: 50px;
  background: rgba(0, 188, 106, 0.08);
  color: #087148;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.defensivos-eyebrow i {
  color: #00a75e;
  font-size: 17px;
}

.defensivos-intro-content h2 {
  margin-bottom: 26px;
  color: #133e31;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(39px, 5vw, 65px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2.2px;
}

.defensivos-intro-content h2 span {
  color: #00a75e;
}

.defensivos-intro-content p {
  max-width: 670px;
  margin-bottom: 18px;
  color: #5d6d65;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.82;
}

.defensivos-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 35px;
}

.btn-defensivos-primary,
.btn-defensivos-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.btn-defensivos-primary {
  background: #00a75e;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 167, 94, 0.2);
}

.btn-defensivos-primary:hover {
  transform: translateY(-4px);
  background: #008f50;
  color: #ffffff;
  box-shadow: 0 19px 38px rgba(0, 167, 94, 0.27);
}

.btn-defensivos-secondary {
  border: 1px solid rgba(14, 70, 51, 0.18);
  background: #ffffff;
  color: #164b39;
}

.btn-defensivos-secondary:hover {
  transform: translateY(-4px);
  background: #f2faf6;
  color: #00a75e;
}


/* FOTO PRINCIPAL */

.defensivos-main-image {
  position: relative;
  min-height: 620px;
  padding: 12px;
  border-radius: 42px;
  background: #f1f7f3;
}

.defensivos-main-image::before {
  content: "";
  position: absolute;
  width: 85%;
  height: 85%;
  top: -25px;
  right: -25px;
  z-index: -1;
  border-radius: 42px;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(0, 167, 94, 0.09) 0,
      rgba(0, 167, 94, 0.09) 1px,
      transparent 1px,
      transparent 11px
    );
}

.defensivos-main-image img {
  width: 100%;
  height: 100%;
  min-height: 596px;
  object-fit: cover;
  border-radius: 32px;
}

.image-floating-card {
  position: absolute;
  right: -30px;
  bottom: 45px;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 285px;
  padding: 19px 22px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 50px rgba(15, 65, 47, 0.17);
  backdrop-filter: blur(15px);
}

.floating-card-icon {
  display: flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: rgba(0, 188, 106, 0.12);
  color: #00a75e;
  font-size: 22px;
}

.image-floating-card strong,
.image-floating-card span {
  display: block;
}

.image-floating-card strong {
  margin-bottom: 4px;
  color: #133e31;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.image-floating-card span {
  color: #74827a;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
}


/* ==================================================
PAINEL DE DADOS
================================================== */

.defensivos-data-panel {
  display: grid;
  grid-template-columns: 0.75fr 0.75fr 1.25fr;
  gap: 22px;
  margin-bottom: 115px;
}

.defensivos-highlight-card,
.defensivos-information-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 28px;
}

.defensivos-highlight-card {
  background: #103d30;
  box-shadow: 0 22px 45px rgba(16, 61, 48, 0.16);
}

.defensivos-highlight-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(252, 160, 56, 0.12);
}

.biological-card {
  background: linear-gradient(145deg, #008f50, #00b968);
}

.highlight-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 34px;
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.12);
  color: #fca038;
  font-size: 22px;
}

.biological-card .highlight-icon {
  color: #ffffff;
}

.highlight-year {
  padding: 7px 11px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.highlight-number {
  display: block;
  margin-bottom: 9px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}

.defensivos-highlight-card h3 {
  margin-bottom: 15px;
  color: #fca038;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.biological-card h3 {
  color: #ffffff;
}

.defensivos-highlight-card p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.73);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

.defensivos-highlight-card small {
  color: rgba(255, 255, 255, 0.48);
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  line-height: 1.5;
}

.defensivos-information-card {
  border: 1px solid rgba(0, 143, 80, 0.11);
  background-image: url("../images/fundosecao4.png");
  background-size: cover;
  background-position: center;
}

.information-card-label {
  display: block;
  margin-bottom: 17px;
  color: #00a75e;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.defensivos-information-card h3 {
  margin-bottom: 17px;
  color: #143f31;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
}

.defensivos-information-card > p {
  margin-bottom: 22px;
  color: #65756d;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.information-list {
  display: grid;
  gap: 15px;
}

.information-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #345247;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}

.information-list i {
  color: #00a75e;
}


/* ==================================================
RISCOS
================================================== */

.defensivos-risks {
  margin-bottom: 115px;
}

.defensivos-section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.defensivos-small-title {
  display: block;
  margin-bottom: 16px;
  color: #00a75e;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.defensivos-section-heading h2,
.winfit-carousel-header h2 {
  margin: 0;
  color: #123d30;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
}

.defensivos-section-heading h2 span {
  color: #f09a32;
}

.defensivos-section-heading > p {
  margin: 0;
  color: #67776f;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.risk-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
}

.risk-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 29px 26px;
  border: 1px solid rgba(19, 62, 49, 0.09);
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 15px 38px rgba(18, 61, 48, 0.07);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.risk-card:hover {
  transform: translateY(-9px);
  border-color: #006459;
  box-shadow: 0 24px 45px rgba(18, 61, 48, 0.12);
}

.risk-card-number {
  position: absolute;
  top: 18px;
  right: 21px;
  color: rgba(19, 62, 49, 0.08);
  font-family: "Montserrat", sans-serif;
  font-size: 43px;
  font-weight: 800;
}

.risk-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  margin-bottom: 35px;
  border-radius: 17px;
  background: #006459;
  color: #ffffff;
  font-size: 24px;
}

.risk-card h3 {
  margin-bottom: 13px;
  color: #153f32;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.risk-card p {
  margin: 0;
  color: #6b7a73;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1.7;
}


/* ==================================================
BLOCO DE CONTROLE
================================================== */

.defensivos-control-block {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 120px;
  padding: 55px;
  border-radius: 40px;
  background-image: url("../images/fundoteste9.png");
  background-size: cover;
  background-position: center;
}

.control-block-image {
  position: relative;
  min-height: 590px;
}

.control-block-image img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: 30px;
}

.control-image-detail {
  position: absolute;
  right: 25px;
  bottom: 25px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  background: rgba(16, 61, 48, 0.85);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  line-height: 1.5;
  backdrop-filter: blur(12px);
}

.control-image-detail i {
  color: #fca038;
  font-size: 21px;
}

.control-block-content > h2 {
  margin-bottom: 24px;
  color: #123d30;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -1.5px;
}

.control-block-content > p {
  margin-bottom: 32px;
  color: #64736c;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.control-features {
  display: grid;
  gap: 15px;
}

.control-feature {
  display: flex;
  gap: 17px;
  padding: 18px;
  border: 1px solid rgba(19, 62, 49, 0.07);
  border-radius: 19px;
  background: #ffffff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.control-feature:hover {
  transform: translateX(7px);
  box-shadow: 0 14px 30px rgba(18, 61, 48, 0.08);
}

.control-feature > span {
  display: flex;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(0, 188, 106, 0.11);
  color: #00a75e;
  font-size: 20px;
}

.control-feature h3 {
  margin-bottom: 6px;
  color: #173f33;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.control-feature p {
  margin: 0;
  color: #718078;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  line-height: 1.6;
}


/* ==================================================
CARROSSEL HORIZONTAL
================================================== */

.winfit-carousel-section {
  margin-bottom: 115px;
}

.winfit-carousel-header {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 45px;
}

.winfit-carousel-header > p {
  margin: 0;
  color: #697970;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.75;
}

.winfit-carousel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 10px 5px 30px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #00a75e #e7efe9;
}

.winfit-carousel::-webkit-scrollbar {
  height: 7px;
}

.winfit-carousel::-webkit-scrollbar-track {
  border-radius: 50px;
  background: #e7efe9;
}

.winfit-carousel::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: #00a75e;
}

.winfit-carousel-card {
  flex: 0 0 350px;
  overflow: hidden;
  border: 1px solid rgba(19, 62, 49, 0.09);
  border-radius: 27px;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(18, 61, 48, 0.08);
  scroll-margin-left: 5px;
  scroll-snap-align: start;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.winfit-carousel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(18, 61, 48, 0.14);
}

.carousel-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.carousel-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    transparent 40%,
    rgba(9, 48, 36, 0.45)
  );
}

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

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

.carousel-card-category {
  position: absolute;
  bottom: 17px;
  left: 18px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.93);
  color: #087148;
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.carousel-card-content {
  position: relative;
  padding: 31px 27px;
}

.carousel-card-icon {
  position: absolute;
  top: -28px;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border: 5px solid #ffffff;
  border-radius: 17px;
  background: #00a75e;
  color: #ffffff;
  font-size: 21px;
}

.carousel-card-content h3 {
  margin-bottom: 12px;
  color: #143e32;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.carousel-card-content p {
  margin: 0;
  color: #6a7972;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1.7;
}

.winfit-carousel-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 19px;
}

.winfit-carousel-navigation > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7a8981;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dots a {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cddbd2;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.carousel-dots a:hover {
  width: 28px;
  border-radius: 50px;
  background: #00a75e;
}


/* ==================================================
CHAMADA FINAL
================================================== */

.defensivos-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 27px;
  align-items: center;
  overflow: hidden;
  padding: 48px 52px;
  border-radius: 32px;
  background:
    linear-gradient(
      125deg,
      #0e3d2f 0%,
      #087149 58%,
      #00a75e 100%
    );
  box-shadow: 0 25px 60px rgba(13, 69, 51, 0.2);
}

.defensivos-cta-decoration {
  position: absolute;
  width: 260px;
  height: 260px;
  top: -150px;
  right: 180px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 35px rgba(255, 255, 255, 0.025),
    0 0 0 75px rgba(255, 255, 255, 0.018);
}

.defensivos-cta-icon {
  display: flex;
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.12);
  color: #fca038;
  font-size: 29px;
}

.defensivos-cta-content {
  position: relative;
  z-index: 2;
}

.defensivos-cta-content span {
  display: block;
  margin-bottom: 8px;
  color: #fca038;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.defensivos-cta-content h2 {
  margin-bottom: 10px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.2;
}

.defensivos-cta-content p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1.65;
}

.defensivos-cta-button {
  display: inline-flex;
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 225px;
  padding: 16px 22px;
  border-radius: 50px;
  background: #fca038;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.defensivos-cta-button:hover {
  transform: translateY(-4px);
  background: #ffffff;
  color: #087149;
}


/* ===========================
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;

    }

}



/* ==================================================
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;
    }

  }




