/*
Theme Name: Ormi Digital
Author: Ormi Digital
Author URI: https://ormidigital.com.br
Version: 1.0.01
*/
*{
    padding: 0;
    margin: 0;
}
.oHeader, .oSection{
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}
.oBannerSection{
    height: 100%;
}
.oHeader {
    display: flex;
    align-items: center;
}
.oHeader .oSup{
    width: 80%;
    display: flex;
    flex-direction: column;
} 
.oHeader .oInf{
    width: 20%;
} 
.oLogoSup{
    padding: 10px;
    width: 280px;
    height: auto;
}
.oMenuTop a{
    font-size: 13px;
    text-transform: uppercase;
}

.oButton-1, .oButton-2 {
    margin-top: 0px;
    padding: 3px 20px;
    border-radius: 30px;
}
.oButton-1 {
    background-color: white;
    color: rgb(21, 21, 21);
    font-weight: 500; 
}
.oButton-2 {
    background-color: #1d395f;
    color: white;
    font-weight: 500; 
}
.oButton-1:hover, .oButton-2:hover {
    font-weight: 600;
    cursor: pointer;
}
.oButton-1:hover, .oButton-2:hover {
    background-color: #e87824;
    color:white
}

.oButton-1 .oArrow, .oButton-2 .oArrow {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 5px;
  margin-bottom: 7px;
  cursor: pointer;
}
.oButtonInput {
  background-color: #1d395f;
  color: white;
  font-weight: 500;
  position: relative;
  padding: 3px 20px 4px 15px;
  display: inline-flex;
  align-items: center;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.oButtonInput:hover {
  background-color: #e87824;
  font-weight: 600;
  cursor: pointer;
  color: white;
}
.oAvisoCookie{
    color: #1d395f;
    font-weight: 600;
    font-size:.75rem;
}
.oAvisoCookie:hover{
    color: #e87824;
}
.oButton-1:hover .oArrow, .oButton-2:hover .oArrow {
  transform: translateX(5px);
}

.oJustStart {
    justify-content: flex-start;
    background-position: calc(100% + 180px) center center;
    
}
.oJustCenter {
    background-position: center center;    
}

.oJustEnd {
    justify-content: flex-end;
    background-position: calc(0% - 180px) center center;
}

.oLinkBlog a {
  word-break: break-word;       /* Quebra a palavra quando necessário */
  overflow-wrap: break-word;    /* Quebra a linha para evitar overflow */
  white-space: normal;          /* Permite quebra de linha */
}

.oToggle {
  width: 30px;
  height: 2px; 
  background-color: #1d395f;
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}

.oInput {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
    font-size: 13px;
    padding-left: 10px;
    padding-right: 10px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    color: #3e3e3e;
    line-height: 49px;
    background: #fff;
    border: 1px solid #999999;
    border-radius: 0;
    margin-bottom: 10px;
    border-radius: 10px;
}

/* Quando o botão está ativo */
#oMenuToggle.active .oToggle:nth-child(2) {
  transform: rotate(45deg) translateY(15px);
}

#oMenuToggle.active .oToggle:nth-child(3) {
  opacity: 0;
}

#oMenuToggle.active .oToggle:nth-child(4) {
  transform: rotate(-45deg) translateY(-15px);
}


.oDot {
  width: 10px;
  height: 10px;
  background-color: white;
  opacity: 0.5;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}

.oDot.active {
  opacity: 1;
  background-color: #e87824;
}

/* Textos iniciam invisíveis */
[id^="oSlideText-"] {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.oMenu-ativo {
  transform: translateX(260px); 
}

.oBgCenter {
    background-position: center;
}
.oBgDireita {
    background-position: right;
}
.oBgEsquerda {
    background-position: left;
}

.oSubmenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #1d395f;
}

.oSubmenu.open {
  max-height: 800px; /* ajustar conforme o conteúdo */
  padding: 0.5rem 0.5rem 0.5rem 1rem; /* recuo */
  border-radius: 0 0.5rem 0.5rem 0.5rem;
}

.oSubmenu .oMobileItem a{
  color:#e1e5ea
}

.oMobileItem a.js-submenu-toggle::after {
  content: " ▼"; /* triângulo pequeno */
  float: right;
  transition: transform 0.3s ease;
}

.oMobileItem a.js-submenu-toggle.open::after {
  transform: rotate(-180deg);
}

.oEmbed-container { 
    position: relative;
    overflow: hidden;
    min-width: 100%;
    height: auto;
} 

.Embed-container iframe,
.oEmbed-container object,
.oEmbed-container embed { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



@media screen and (min-width: 480px) {

    .oHeader .oSup{
        width: 40%;
    } 
    .oHeader .oInf{
        width: 60%;
    } 

    
    .oJustStart {
        background-position: right;
        
    }

    .oJustEnd {
        background-position: left;
    }
}
@media screen and (min-width: 768px) {
    .oHeader, .oSection, .oBannerSection{
        padding-left: 10%;
        padding-right: 10%;
    }
    .oHeader .oSup{
        width: 45%;
    } 
    .oHeader .oInf{
        width: 55%;
    } 
}
@media screen and (min-width: 960px) {
    .oHeader .oSup{
        width: 15%;
    } 
    .oHeader .oInf{
        width: 85%;
    } 
    .oMenuTop a{
        font-size: 11px;
    }   
}
@media screen and (min-width: 1190px) {
    .oHeader .oSup{
        width: 20%;
    } 
    .oHeader .oInf{
        width: 80%;
    } 
    .oMenuTop a{
        font-size: 12px;
    }   
}
@media screen and (min-width: 1290px) { 
    .oMenuTop a{
        font-size: 13px;
    }  
    .oHeader .oSup{
        width: 25%;
    } 
    .oHeader .oInf{
        width: 75%;
    } 
}

@media screen and (min-width: 1400px) {
    .oMenuTop a{
        font-size: 14px;
    }   
}


blockquote p {
  font-style: italic;
  font-weight: 600;
}

blockquote p::before, blockquote p::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23e87824" d="M13 6v6h5.2v4c0 .8-.2 1.4-.5 1.7-.6.6-1.6.6-2.5.5h-.3v1.5h.5c1 0 2.3-.1 3.3-1 .6-.6 1-1.6 1-2.8V6H13zm-9 6h5.2v4c0 .8-.2 1.4-.5 1.7-.6.6-1.6.6-2.5.5h-.3v1.5h.5c1 0 2.3-.1 3.3-1 .6-.6 1-1.6 1-2.8V6H4v6z"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: top;
}

blockquote p::before {
  margin-right: 0.18rem;
  transform: scaleX(-1);
}
blockquote p::after {
  margin-left: 0.20rem;
}
