/*
Theme Name: <strong>Triângulo em Foco</strong> <p>...</p>
Theme URL: https://trianguloemfoco.com.br
Author: Jnweb
Author URI: https://www.jnweb.com.br
Description: .
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.jnweb.com.br
Tags:.
*/

/*====| RESET - CONTENT |====*/
.cg {
  width: 90%;
  max-width: 1366px;
  margin: 0 auto;
}

/*========================================================================================
====================================| HOME / HEADER |=====================================
========================================================================================*/
.header-0 {
  background-color: var(--color-07);
  padding: 10px 0;
}

.header-row {
  display: flex;
  justify-content: space-between;
}

/*====| LEFT |====*/
.header-0-left { width: 25%; }

/*====| RIGHT |====*/
.header-0-right {
  display: flex;
  justify-content: flex-end;
  width: 70%;
}

.h-r-rs {
  display: flex;
  align-items: center;
  margin: 0 0 0 15px;
  color: var(--color-white);
}
.h-r-rs:hover { color: var(--color-gray-01); }

.h-r-rs i {
  font-size: 18px;
}
.h-r-rs p {
  font-size: 14px;
  margin: 0 0 0 3px;
  font-weight: 400;
}

.home-header {
  width: 100%;
  background-color: var(--color-white);
  z-index: 999;
}

.home-header-01 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

/*====| HEADER / LOGO |====*/
.header-left { width: 20%; }

/*====| HEADER / MENU / CONTATO |====*/
.header-right {
  width: 80%;
  display: flex;
  justify-content: space-between;  
}

.header-right-menu {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/*====| HEADER / MENU |====*/
.nav-menu ul {
  --_gap: 2rem;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu li {
  overflow: hidden;
  position: relative;
  padding: calc(var(--_gap) / 3);
}

.nav-menu li::after {
  width: 100%;
  height: 3px;
  content: '';
  position: absolute;
  background-color: var(--color-black);
  left: 0;
  bottom: 0;
  translate: var(--_translate, 0px);
  scale: var(--_width, 0) 1;
  transition:
  scale 300ms var(--_scale-delay, 0ms), 
  translate 500ms var(--_translate-delay, 0ms);
}

.nav-menu li:hover { --_width: 1; }

.nav-menu li:hover + li {
  --_translate: -100%;
  --_scale-delay: 300ms;
  --_translate-delay: 200ms;
}

.nav-menu li:has(+ :hover) {
  --_translate: 100%;
  --_scale-delay: 300ms;
  --_translate-delay: 200ms;
}

.nav-menu li:hover,
.nav-menu li:focus-within { --_width: 1; }

.nav-menu ul li { color: var(--color-black); }

.nav-menu a {
  font-size: 14px;
  color: inherit;
  opacity: 1;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 60px 0;
}
.nav-menu a:hover,
.nav-menu a:focus-visible { opacity: .8; }

nav.home-header-01-nav ul li { list-style-type: none; }

nav.home-header-01-nav ul li a {
  text-decoration: none;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

/*====| HEADER / MENU / RESPONSIVO |====*/
.menu-icon {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 200;
  transition: 0.3s;
}
.menu-icon div {
  display: block;
  background-color: var(--color-white);
  width: 24px;
  height: 2px;
  transition: 0.3s;
}
.move .line1 { transform: rotate(-45deg) translate(-5px, 5px); }
.move .line2 { opacity: 0; }
.move .line3 { transform: rotate(45deg) translate(-5px, -5px); }



/*========================================================================================
===================================| HOME / CONTAINER |===================================
========================================================================================*/

/*===============================================
===============| HOME / ANÚNCIO |================
===============================================*/
.banner-video {
  width: 100%;
  margin:25px auto;
  text-align: center;
}





.home-na {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ccc;
}

/*===============================================
===============| HOME / NOTÍCIAS |===============
===============================================*/
.home-news {
  width: 70%;
  padding: 30px 0;
}

.products-row-post {
  text-align: center;
  box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.08);
  position: relative;
  background-color: var(--color-white);
}

.products-io {
  width: 100%;
  position: relative;
}

.products-offer {
  position: absolute;
  top: 15px;
}

.products-offer-cat {
  background-color: var(--color-red);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-white);
  padding: 5px 10px;
  margin-left: 15px;
}
.products-offer-cat i { margin-right: 2px; }

.products-ts {
  width: 100%;
  text-align: center;
}

.products-ts-cat {
  width: 100%;
  margin: 10px 0 0 0;
}

.products-ts-cat span {
  border: 1px solid var(--color-07);
  color: var(--color-07);
  font-size: 0.6em;
  font-weight: 600;
  text-transform: uppercase;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  padding: 5px 12px;
}

.products-ts-title {
  padding: 15px 10px 60px 10px;
  margin: 0;
}

.products-ts-more {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 0;
  padding: 10px 30px;
  background-color: var(--color-09);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
}
.products-ts-more i {
  font-size: 22px;
  font-weight: 400;
}

.home-products-all {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0 0 0;
}

.home-products-all i {
  font-size: 22px;
  font-weight: 400;
  position: relative;
  top: 3px;
  margin: 0;
  padding: 0;
}

/*===============================================
===============| HOME / ANÚNCIOS |===============
===============================================*/
.home-announcement {
  width: 30%;
  padding: 14px;
  border-left: 1px solid #ccc;
  justify-content: center;
}

.home-announcement-row {
  width: 100%;
  display: flex;
}

.home-announcement-list { margin: 0 0 20px 0; }

/*========================================================================================
=========================================| PAGE |=========================================
========================================================================================*/
.default-page {
  width: 100%;
  padding: 40px 0;
}

.default-page-row { width: 100%; }

/*===============================================
===============| PAGE/ PARCEIROS |===============
===============================================*/

.page-pareceiros {
  text-align: center;
}

.parceiro-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 150px;
  margin: 7.5px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0);
  background: #FFFFFF;
  -webkit-box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.07);
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  --seconds: 0.2s;
  transition-duration: var(--seconds);
  -moz-transition-duration: var(--seconds);
  -webkit-transition-duration: var(--seconds);
}
.parceiro-box:hover { background: rgba(0, 0, 0, 0.021); }

.parceiro-box img {
  max-width: 150px;
  max-height: 100px;
}

/*========================================================================================
========================================| ARCHIVE |=======================================
========================================================================================*/
/*===============================================
================| ARCHIVE/ NEWS |================
===============================================*/
.archive-news {
  display: flex;
  justify-content: space-between;
}

.archive-product-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 14px;
}

/*===============================================
================| ARCHIVE/ CAT |=================
===============================================*/
.archive-cat {
  width: 100%;
}

.archive-cat-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  border-bottom: 1px solid #ccc;
}

.archive-cat-list-left {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 25%;
}

.archive-cat-list-right {
  width: 70%;
}

.aclr-titulo h2 {
  font-size: 1.4em;
  color: var(--color-black-03);
  margin: 0 0 15px 0;
  padding: 0;
  text-transform: none;
}



/*========================================================================================
========================================| SINGLE |========================================
========================================================================================*/
.single-row { padding: 40px 0; }

/*===============================================
====================| NEWS |=====================
===============================================*/
.single-news {
  width: 100%;
}

h1.single-news-title {
  font-size: 2em;
}


/*========================================================================================
====================================| HOME / FOOTER |=====================================
========================================================================================*/
.home-footer { width: 100%; }

.home-footer-01 {
  width: 100%;
  padding: 30px 0;
  background-color: var(--color-07);
}

.footer-row { width: 100%; }

.footer-widget { width: 100%; }

/*====================| FOOTER / TITLE |====================*/
.footer-widget-title h3 {
  font-size: 22px;
  line-height: 1.3;
  margin: 0;
  padding-bottom: 10px;
  color: var(--color-white);
  position: relative;
  text-transform: none;
  display: inline-block;
  letter-spacing: -.3px;
  font-weight: 700;
}
.footer-widget-title h3::before {
  content: "";
  height: 4px;
  width: 50px;
  border-radius: 0;
  position: absolute;
  left: 3px;
  bottom: 0;
  transform: skewX(-43deg);
  -webkit-transform: skewX(-43deg);
  -moz-transform: skewX(-43deg);
  -ms-transform: skewX(-43deg);
  -o-transform: skewX(-43deg);
  background-color: var(--color-09);
}

/*====================| FOOTER / BOX / 01 |====================*/
.footer-widget-01 {
  width: 100%;
  max-width: 80%;
}

.footer-widget-01-logo {
  width: 100%;
  text-align: center;
}

.footer-widget-01-logo img {
  width: 160x;
  max-width: 100%;
  height: auto;
}

.footer-widget-01-desc { width: 100%; }

.footer-widget-01-desc p {
  font-size: 14px;
  color: var(--color-white);
  margin: 45px 0 0 0;
}

.footer-widget-01-rs { margin: 45px 0 0 0; }

/*====================| FOOTER / BOX / 02 |====================*/
.footer-widget-03-nav li {
  list-style: none;
  padding-bottom: 22px;
}

.footer-widget-03-nav li a {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
}

.footer-widget-03-nav li a:hover { color: var(--color-09); }

.footer-widget-03-nav ul li a::before {
  content: "\f2e4";
  font-family: "remixicon";
  margin: 0 5px 0 0;
  line-height: 0;
}

.footer-widget-03-nav ul li a,
.footer-widget-03-nav ul li a:before { transition: all 0.5s ease 0s; }

.footer-widget-03-nav ul li a:hover,
.footer-widget-03-nav ul li a:hover:before {
  color: var(--color-09);
  margin-left: 5px;
}

/*====================| FOOTER / BOX / 03 |====================*/
.footer-widget-03 {
  margin-top: 25px;
  position: relative;
}

.footer-widget-03-info { margin: 20px 0; }

.footer-widget-03-info p { border-bottom: dashed 1px var(--color-black-03); }

.footer-widget-03-info p:last-child { border-bottom: none; }

.contact-address {
  position: relative;
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
}

.contact-address span a {
  font-size: 14px;
  color: var(--color-white);
  text-decoration: none;
  text-transform: none;
  font-weight: 400;
}
.contact-address span a:hover { color: var(--color-09); }

.contact-address > span.bi {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  font-size: 24px;
  left: 0;
  line-height: 1;
  color: var(--color-white);
}
.contact-address span:last-child {
  display: block;
  padding-left: 37px;
  color: var(--color-white);
  font-size: 16px;
  line-height: 22px;
}

.footer-widget-03-email {
  position: relative;
  display: block;
  border: dashed 1px var(--color-09);
  padding: 6px;
  border-radius: 4px;
}

.footer-widget-03-email-box {
  position: relative;
  display: block;
  background-color: var(--color-09);
  border-radius: 4px;
  padding: 30px 20px;
}

.footer-widget-03-email-box h6 {
  margin: 0 0 12px 0;
  font-size: 18px;
  line-height: 1;
  padding-bottom: 0;
  text-transform: none;
  font-weight: 700;
  color: var(--color-white);
}

.footer-widget-03-email-box p { margin: 0; }

.footer-widget-03-email-box p a {
  font-size: 14px;
  color: var(--color-white);
  text-decoration: none;
  text-transform: none;
  font-weight: 400;
}
.footer-widget-03-email-box p a:hover {
  color: var(--color-black);
  text-decoration: none;
  text-transform: none;
  font-weight: 400;
}

.footer-widget-03-email-box-icon {
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%) skewX(-17deg);
  height: 58px;
  width: 60px;
  font-size: 24px;
  color: var(--color-09);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-white);
}

/*====================| FOOTER / 02 |====================*/
.home-footer-02 {
  width: 100%;
  padding: 10px 0;
  background-color: var(--color-09);
  text-align: center;
}
.home-footer-02 p {
  font-size: 12px;
  margin: 0;
  color: var(--color-white);
}
.home-footer-02 a {
  font-size: 12px;
  color: var(--color-white)
}

/*===============================================
=========| CABEÇALHO / BACKGROUND COLOR |========
===============================================*/
.default-header {
  width: 100%;
  padding: 40px 0;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  position: relative;
  z-index: 99;
}

.default-header h1 {
  color: var(--color-white);
  font-size: 26px;
  margin: 0;
  font-weight: 600;
}

/*====| APLICAR BACKGROUND COLOR |====*/
.page-contato-left::before,
.default-header::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: var(--color-09);
}

/*===============================================
====================| TÍTULO |===================
===============================================*/
.title-content {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.title-content h2 {
  font-size: 22px;
  line-height: 1.4;
  color: var(--color-black);
  font-weight: 600;
  margin: 0;
  padding: 0;
}

/*===============================================
=================| FORMATAÇÃO |==================
===============================================*/
/*====| H1, H2, H3, H4, H5, H6 |====*/
.title-h2 {
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-black);
  text-transform: none;
  font-weight: 600;
  margin: 0;
}

/*====| P |====*/
.description-p {
  font-size: 16px;
  line-height: 22px;
  color: var(--color-black);
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 0;
}

.button-icon {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.button-icon i {
  width: 18px;
  top: 1px;
  position: relative;
}

/*===============================================
===============| IMAGE NOT FOUND |===============
===============================================*/
.image-not-found {
  display: flex;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--color-white);
}
.image-not-found-icon { margin: 10px 0; }
.image-not-found-icon i {
  color: var(--color-white);
  font-size: 68px;
}
.image-not-found-info p { 
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.image-not-found {
  width: 100%;
  background-color: var(--color-black);
  color: var(--color-white);
}

/*===============================================
=================| NOTIFICATION |================
===============================================*/
.notification-row {
  width: 100%;
  text-align: center;
}

.demo-preview {
  width: 70%;
  margin: auto;
  text-align: center;
}

.alert {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .7143rem 1.071rem;
  margin: 1.429rem 0;
  border-radius: 2px;
  border: 1px solid transparent;
  color: var(--color-white);
}

.alert-icon {
  font-size: 21px;
  margin-right: 5px;
}

.alert.alert-primary {
  background-color: var(--color-dourado-02);
  border-color: var(--color-dourado-02)
}
.alert.alert-secondary {
  background-color: var(--alert-secondary);
  border-color: var(--alert-secondary)
}
.alert.alert-success {
  background-color: var(--alert-success);
  border-color: var(--alert-success)
}
.alert.alert-info {
  background-color: var(--alert-info);
  border-color: var(--alert-info)
}
.alert.alert-warning {
  background-color: var(--alert-warning);
  border-color: var(--alert-warning)
}
.alert.alert-danger {
  background-color: var(--alert-danger);
  border-color: var(--alert-danger);
}

/*===============================================
==================| WHATSAPP |===================
===============================================*/
.whatsapp-plug-icon {
  position: fixed;
  z-index: 1000;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  cursor: pointer;
  background-color: #0ba360;
  transition: .3s;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('images/whatsplug.svg');
  background-size: 50% auto;
}

.whatsapp-plug-icon::after,
.whatsapp-plug-icon::before{content: ' ';
  position: absolute;
  opacity: 0;
  border: 4px solid #0ba360;
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
  -webkit-border-radius: 50%;
  animation: WaveWhatsApp 1.5s ease infinite;
}
.whatsapp-plug-icon::after{animation-delay: .5s;}
.whatsapp-plug-icon:hover{background-color: #15cc74;}
.whatsapp-plug-icon:hover::before{border: 4px solid #15cc74;}
.whatsapp-plug-icon:hover::after{border: 4px solid #15cc74;}

@keyframes WaveWhatsApp{
  0%  {transform:scale(.5)}
  50% {opacity:1}
  100%{transform:scale(1.2);opacity:0}
}

/*===============================================
====================| OUTROS |=================== | CONTACT FORM 7 |
===============================================*/
.page-cf7 {
  width: 100%;
  padding: 45px 0;
  display: inline-block;
}

.form_contato {
  width: 100%;
  float: left;
  text-align: center;
}
.form_contato input[type="text"],
.form_contato input[type="email"],
.form_contato input[type="file"],
.form_contato textarea
{
  font-size:.9em;
  font-family: 'Open Sans', sans-serif;
  color:#888;
  padding: 10px;
  border: solid 5px #c9c9c9;
  -webkit-transition: border 0.3s;
  -moz-transition: border 0.3s;
  -o-transition: border 0.3s;
  transition: border 0.3s;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

.form_contato input[type="file"]{
  margin-bottom: 10px;
}
.contact_file {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.form_contato input[type="text"]:focus,
.form_contato input[type="email"]:focus,
.form_contato input[type="file"]:focus,
.form_contato textarea:focus
{
  border: solid 5px #999;
}

/*==| BUTTOM |==*/
.btn_button {
  font-size: 0.9em;
  font-weight: 600;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 40px;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  cursor: pointer;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  margin: 15px 15px 0 15px;
  text-transform: uppercase;
  text-decoration: none;
}
.btn_button {
  background-color: var(--white-0);
  color: var(--blue-8);
  border: 2px solid var(--blue-8);
}
.btn_button:hover {
  background: var(--blue-8);
  color: var(--white-0);
}

/*====| CONFIGURA INPUT |====*/
input.form_left {
  width: 49%;
  margin-bottom: 10px;
  float: left;
}
input.form_right {
  width: 49%;
  margin-bottom: 10px;
  float: right;
}
textarea.form_mensagem {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

/*==| ERRO NA BORDA CAMPO INPUT |==*/
.wpcf7-list-item-label { color: #444; }
.wpcf7 input[type="submit"] { padding: 8px 14px; }
.wpcf7 .wpcf7-captchac { vertical-align: middle; }
.wpcf7 span.wpcf7-not-valid-tip { display: none; }
form.invalid input.wpcf7-not-valid, form.invalid textarea.wpcf7-not-valid, form.invalid span.wpcf7-not-valid {
  border: solid 5px var(--blue-8);
  -webkit-transition: border 0.3s;
  -moz-transition: border 0.3s;
  -o-transition: border 0.3s;
  transition: border 0.3s;
}

/*==| CAMPOS OBRIGATORIOS |==*/
div.wpcf7-validation-errors {
  width: 98%;
  text-align: center;
  padding: 13px;
  border-radius: 2px;
  margin-top: 10px;
  display: inline-block;
  font-size: 1em;
  color: #898137;
  background-color: #FFFFE0;
  border: 1px solid #E6DB55;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*==| ERRO DE MENSAGEM DE ENVIO |==*/
div.wpcf7-mail-sent-ng {
  width: 95%;
  text-align: center;
  padding: 13px;
  border-radius: 2px;
  margin-top: 10px;
  display: inline-block;
  font-size: 1em;
  color: var(--red);
  background-color: #FCE4E4;
  border: 1px solid var(--red);
}

/*==| MENSAGEM ENVIADA COM SUCESSO! |==*/
div.wpcf7-mail-sent-ok {
  width: 95%;
  text-align: center;
  padding: 13px;
  border-radius: 2px;
  margin-top: 10px;
  display: inline-block;
  font-size: 1em;
  color: #568937;
  background-color: #EBFFE0;
  border: 1px solid #73D042;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

span.wpcf7-not-valid-tip-no-ajax { color: var(--red); font-size: 10pt; display: block; }
span.wpcf7-list-item { margin-left: 0.5em; }
.wpcf7-display-none { display: none; }
img.ajax-loader {
  border: none;
  vertical-align: middle;
  position: relative;
  top: 2px;
  left: 12px;
  box-shadow: none;
}

/*===============================================
===| PERSONALIZAR PÁGINA DE LOGIN WORDPRESS |====
===============================================*/
/*====| LOGO |====*/
.login h1 a {
  background-image: url('images/logo-white.webp');
  background-size: 100% auto;
  width: 120px;
  height: 154px;
}
/*====| BACKGROUND / WP-ADMIN |====*/
.login {
  margin: 0;
  padding: 0;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  height: 100%;
  max-height: 100%;
  background-color: #0d6efd;
  background-image: url('images/bg-page-section.png');
}