*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
html,body{
    background-color: white;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}
/* Ensure Font Awesome icons don't block text rendering */
@font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/webfonts/fa-solid-900.woff2') format('woff2'),
         url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/webfonts/fa-solid-900.woff') format('woff');
}

@font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/webfonts/fa-regular-400.woff2') format('woff2'),
         url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/webfonts/fa-regular-400.woff') format('woff');
}

@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/webfonts/fa-brands-400.woff2') format('woff2'),
         url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/webfonts/fa-brands-400.woff') format('woff');
}
.container{
    width: 90%;
    height: 200px;
    margin: 0 auto;
    box-sizing: border-box;
    background-color: white;
    position: relative;
    top: 50px;
}
::-webkit-scrollbar{
    width: 9px;
}
::-webkit-scrollbar-thumb{
    background:linear-gradient(#0066ff, #0066ff);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover{
    background-color: #414141;
}

/* Botão Voltar ao Topo */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffb566, #ff9933);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 181, 102, 0.4);
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    z-index: 999999;
    outline: none;
}

#backToTop:hover {
    background: linear-gradient(135deg, #ff9933, #ff8000);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 181, 102, 0.6);
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    #backToTop {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}

/*classes auxiliares*/

.clear{
    clear: both;
}

/*HEADER*/

.header {
    width: 100vw; 
    height: 80px;
    box-sizing: border-box;
    border-bottom: 3px solid #006DB5;
    padding: 0 15px;
    background-color: white;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0; 
    text-align: center;
}
.header .aimg{
    width: 160px;
    margin: 17px auto;
    display: inline-block;
    box-sizing: border-box;
    right: 12px;
    position: relative;
}
.header .aimg picture{
    display: inline-block;
}
.header .aimg picture>img{
    width: 150px;
    display: inline-block;
}
.header > .menu{
    box-sizing: border-box;
    padding: 5px;
    position: absolute;
    margin-left: 20px;
    float: left;
    top: 24px;
}
.header > .menu > .a{
    padding: 5px;
    text-decoration: underline white;
    color: #006DB5;
    font-size: 16px;
    font-family: "Humanst521 Lt BT";
    position: relative;
    transition: 700ms;
    font-weight: lighter;
}
.header > .menu > .a:hover{
    color: orange;
    text-decoration: underline orange;
}


/*MENU-MOBILE*/

/* Overlay escuro quando menu está aberto */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Ícone hamburguer melhorado */
.header>#h1-mob{
    font-size: 24px;
    position: absolute;
    top: 28px;
    right: 30px;
    color: #006DB5;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header>#h1-mob i {
    transition: transform 0.3s ease;
}

.header>#h1-mob:hover{
    background-color: rgba(0, 109, 181, 0.1);
    transform: scale(1.05);
}

.header>#h1-mob.active {
    color: white;
    background-color: #006DB5;
}

.header>#h1-mob.active:hover {
    background-color: #ffb566;
}

/* Container do menu mobile */
.header>.menu-mobile{
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    box-sizing: border-box;
    background: linear-gradient(135deg, #006DB5 0%, #004d82 100%);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.header>.menu-mobile.active{
    right: 0;
}

/* Container dos links */
.mobile-a{
    width: 100%;
    background-color: transparent;
    position: relative;
    top: 80px;
    text-align: left;
    padding: 20px 0;
}

/* Logo no menu mobile */
.mobile-a::before {
    content: 'ENOVE';
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-align: center;
    padding: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

/* Links do menu mobile */
.mobile-a>a{
    display: block;
    padding: 18px 30px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-a>a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #ffb566;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-a>a:hover::before,
.mobile-a>a:active::before {
    transform: scaleY(1);
}

.mobile-a>a:hover{
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 40px;
    color: #ffb566;
}

.mobile-a>a:active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Ícone nos links */
.mobile-a>a::after {
    content: '›';
    position: absolute;
    right: 30px;
    font-size: 24px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.mobile-a>a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/*CTA*/

#CTA{
    text-align: left;
    height: 500px;
    width: 100%;
    background-color: #242424;
    margin: 0 auto;
    margin-top: 80px;
    box-sizing: border-box;
    padding: 3% 4%;
    border-bottom: 4px solid #006DB5;
    position: relative;
    overflow: hidden;
}

/* Camadas para crossfade suave e infinito */
.cta-layer {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity;
    z-index: 0;
}

.cta-layer.visible {
    opacity: 1;
}

/* Garante que o conteúdo fique acima das camadas */
#CTA > :not(.cta-layer) {
    position: relative;
    z-index: 2;
}

/* Overlay escuro para melhor legibilidade do texto */
#CTA::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

/* CTA hero imagens à direita em telas grandes */
@media only screen and (min-width: 1200px) {
    .cta-layer {
        background-position: 75% center;
    }
}

#CTA h1{
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}
#CTA p{
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: lighter;
    color: #ffffff;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
}
#CTA a{
    background-color: #ffb566;
    box-sizing: border-box;
    padding: 15px 30px;
    position: relative;
    z-index: 2;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: white;
    transition: all 400ms;
    display: inline-block;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
#CTA a:hover{
    padding: 17px 35px;
    background-color: #006DB5;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

/*CONT-TOP*/

.cont-top{
    width: 100%;
    background-color: #ffffff;
    box-sizing: border-box;
    padding: 60px 3%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 100px;
    height: auto;
}
.cont-top>.box-animation{
    flex: 1 1 55%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 0;
    float: none;
    box-sizing: border-box;
    height: auto;
}
.cont-top>.box-animation>.box{
    flex: 1 1 30%;
    min-width: 160px;
    max-width: 220px;
    aspect-ratio: 3 / 4;
    margin: 0;
    float: none;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 1.4s ease, transform 1.4s ease;
    transition-delay: 0s;
}

/* Animação de aparição */
.cont-top>.box-animation>.box.animate {
    opacity: 1;
    transform: translateY(0);
}

.cont-top>.box-animation>.box picture{
    width: 100%;
    height: 100%;
    display: block;
}
.cont-top>.box-animation>.box picture img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 400ms;
}
.cont-top>.box-animation>.box picture img:hover{
    transform: scale(1.05);
}
.cont-top>.box{
    flex: 1 1 40%;
    max-width: 520px;
    background-color: transparent;
    position: relative;
    top: 0;
    left: 0;
    text-align: left;
    border-radius: 10px;
    float: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cont-top>.box>h1{
    font-size: 32px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: black;
}
.cont-top>.box>p{
    color: black;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 0;
    text-align: left;
}
.cont-top>.box>a{
    background-color: #ffffff;
    box-sizing: border-box;
    padding: 12px 18px;
    position: relative;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    color: #006DB5;
    transition: 300ms;
    border: 2px solid #006DB5;
    display: inline-block;
    border-radius: 6px;
    width: fit-content;
}
.cont-top>.box>a:hover{
    padding: 13px 20px ;
    background-color: #f4f7fb;
    transform: translateY(-1px);
}


/*CONT-MID*/

.cont-mid{
    width: 100%;
    box-sizing: border-box;
    border-top:  4px solid #006DB5;
    padding: 50px 3% 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    height: auto;
}
.box{
    width: 33.3%;
    height: 240px;
    background-color: rgba(0, 0, 0, 0);
    position: relative;
    top: 40px;
    text-align: center;
    border-radius: 10px;
    float: left;
    box-sizing: border-box;
}
.cont-mid>.box{
    position: relative;
    top: 0;
    width: auto;
    height: auto;
    min-height: 200px;
    float: none;
    flex: 1 1 240px;
    max-width: 320px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.box>h1{
    font-size: 18px;
    font-family: "Humanst521 BT";
    font-weight: lighter;
    color: #006DB5;
}
.box>img{
    width: 220px;
}
.box>p{
    color: #006DB5;
    font-family: "Humanst521 Lt BT";
    font-size: 16px;
    font-weight: lighter;
}
.cont-mid>.box{
    position: relative;
    top: 0;
    width: auto;
}
.cont-mid>.box>i{
    font-size: 40px;
    color: #006DB5;
}
.cont-mid>.box>i[class="fas fa-award"]{
    font-size: 58px;
    color: #ffb566;
}
.cont-mid>.box>p{
    font-size: 20px;
    margin-top: 6px;
}
.cont-mid>.box>p[id="txt"]{
    font-size: 21px;
    position: relative;
    top: 0;
}
.cont-mid>#bx-mid{
    position: relative;
    top: 0;
}
#plus>#botplus{
    background-color:#006DB5;
    margin: 0 auto;
    text-decoration: none;
    cursor: pointer;
    color: white;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: lighter;
}
#plus{
    width: 100%;
    height: 60px;
    position: relative;
    background-color: #006DB5;
    padding-top: 15px;
    text-align: center;
}



/*DEMO*/

#demo{
    width: 90%;
    margin: 0 auto;
    height: 430px;
    border-top: 2px solid #ffb566;
    text-align: center;
    padding-top: 20px;
}
#demo>h1{
    color: #006DB5;
    font-family:"Humanst521 Lt BT" ;
    font-size: 32px;
    margin-bottom: 20px;
}
#demo>picture{
    display: block;
    width: 70%;
    margin: 0 auto;
    position: relative;
}
#demo>picture>img{
    width: 100%;
    height: auto;
    display: block;
}
/*FOOTER*/

footer {
    background: linear-gradient(135deg, #006DB5 0%, #004d82 100%);
    color: white;
    padding: 60px 0 0;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px 40px;
}

.footer-section h3 {
    color: #ffb566;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-about .footer-logo {
    width: 150px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', sans-serif;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #ffb566;
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i {
    color: #ffb566;
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #ffb566;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 181, 102, 0.4);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
}

.footer-credit {
    font-size: 12px !important;
}

/* Remover estilos antigos do footer */
.cont-f {
    display: none;
}


/*SOBRE*/

#sobre{
    padding-top: 20px;
}

/*CONT-TOP-S*/

#cont-top-s{
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(135deg, #f7f9fc 0%, #eef3f8 100%);
    padding: 70px 4% 60px;
}

.sobre-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    align-items: stretch;
}

.sobre-intro,
.sobre-metodos {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    padding: 28px 32px;
    border: 1px solid rgba(0, 109, 181, 0.08);
}

.sobre-intro {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sobre-intro h1 {
    color: #1f2a3d;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    margin: 0;
}

.sobre-intro p {
    color: #414141;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.sobre-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sobre-list li {
    color: #1f2a3d;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sobre-list i {
    color: #006DB5;
    font-size: 16px;
}

.sobre-metodos {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sobre-metodos-header h2 {
    color: #1f2a3d;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin: 0 0 6px;
}

.sobre-metodos-header p {
    color: #4c5564;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}

.metodos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.metodo-card {
    background: #fdfefe;
    border-radius: 12px;
    border: 1px solid rgba(0, 109, 181, 0.08);
    padding: 18px 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.metodo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.metodo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #e8f2f9;
    color: #006DB5;
    display: grid;
    place-items: center;
    font-size: 18px;
}

.metodo-card h3 {
    margin: 0;
    color: #1f2a3d;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.metodo-card p {
    margin: 0;
    color: #4c5564;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
}

/*MENU-MATERIAL*/

#menu-material{
    width: 90%;
    height: 60px;
    position: relative;
    background-color: #ffb566;
    transition: 600ms;
    display: block;
    padding: 15px 0;
    max-height: 400px;
    border-bottom: 3px solid #006DB5;
    margin: 0 auto;
}
.w33{
    width: 30%;
    height: 250px;
    border: #ffb566;
    background-color: #ffffff;
    display: inline-block;
    margin: 20px 7.5px;
    text-align: center;
    border-radius: 5px 5px 0px 0px;
    position: relative;
    max-height: 250px;
    box-sizing: border-box;
    min-height: 250px;
    vertical-align: text-bottom;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.w33:hover{
    transform: translateY(-5px);
}
.w33>img{
    background-size: cover;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.4s ease;
}
.w33:hover>img{
    transform: scale(1.08);
}
.w33>h1{
    font-family: 'Poppins', sans-serif;
    font-weight: lighter;
    font-size: 28px;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    color: #006DB5;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}
.w33:hover>h1{
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}
#menu-material>h1{
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #006DB5;
    font-weight: lighter;
    cursor: pointer;
    transition: 600ms;
    margin-left: 20px;
}
#menu-material>h1:hover{
    color: #ffffff;
}
#bs-box{
    background-color: #ffb566;
    height: 640px;
    padding-left: 5%;
    width: 90%;
    margin: 0 auto;
    display: none;
    z-index: 999;
    margin-bottom: 1px;
}
#bs-box.is-open,
#bs-box-2.is-open{
    display: block;
}
.w33>.descricao{
    background: linear-gradient(to top, rgba(0, 109, 181, 0.95), rgba(0, 109, 181, 0.85));
    height: 100%;
    width: 100%;
    border-radius: 5px 5px 0px 0px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    box-sizing: border-box;
    padding: 20px;
    z-index: 15;
}
.w33:hover>.descricao{
    opacity: 1;
    visibility: visible;
}
.w33>.descricao>p{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.1s;
}
.w33:hover>.descricao>p{
    transform: translateY(0);
}
#menu-material-2{
    width: 90%;
    height: 60px;
    position: relative;
    background-color: #ffb566;
    transition: 600ms;
    display: block;
    padding: 15px 0;
    max-height: 400px;
    border-bottom: 3px solid #006DB5;
    margin: 0 auto;
}
#bs-box-2{
    background-color: #ffb566;
    height: 640px;
    padding-left: 5%;
    width: 90%;
    margin: 0 auto;
    display: none;
    z-index: 999;
    margin-bottom: 1px;
}
#menu-material-2>h1{
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #006DB5;
    font-weight: lighter;
    cursor: pointer;
    transition: 600ms;
    margin-left: 20px;
}
#menu-material-2>h1:hover{
    color: #ffffff;
}

/*--CONTATO--*/

#contato {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contato-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contato-info {
    flex: 1 1 500px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contato-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #006DB5;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.contato-header p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contato-details {
    margin-bottom: 40px;
}

.contato-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contato-item i {
    font-size: 22px;
    color: #ffb566;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #f1f1f1;
    margin-right: 20px;
}

.contato-item p {
    font-size: 16px;
    color: #343a40;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.contato-social {
    display: flex;
    gap: 20px;
    margin-top: auto; /* Alinha os ícones na parte inferior */
}

.contato-social a {
    width: 45px;
    height: 45px;
    background: #f1f1f1;
    color: #006DB5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contato-social a:hover {
    background-color: #006DB5;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 109, 181, 0.3);
}

.contato-map {
    flex: 1 1 600px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.contato-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contato-map.map-ready iframe {
    opacity: 1;
}

.map-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 109, 181, 0.9), rgba(0, 77, 130, 0.9));
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.map-placeholder-text h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.map-placeholder-text p {
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
}


.map-spinner {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffb566;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.map-open-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
}

.contato-map.map-loaded .map-placeholder {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Responsividade para a seção de contato */
@media (max-width: 992px) {
    .contato-info {
        flex-basis: 100%;
        padding: 40px 30px;
        order: 2;
    }
    .contato-map {
        flex-basis: 100%;
        order: 1;
        height: 320px;
    }
}

@media (max-width: 768px) {
    #contato {
        padding: 40px 0;
    }
    .contato-header h1 {
        font-size: 28px;
    }
    .contato-header p {
        font-size: 15px;
    }
    .contato-item p {
        font-size: 15px;
    }
    .contato-info {
        padding: 28px 20px;
        gap: 16px;
    }
    .contato-details {
        margin-bottom: 28px;
    }
    .contato-item {
        margin-bottom: 18px;
    }
    .contato-item i {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 20px;
        margin-right: 14px;
    }
    .contato-social {
        justify-content: center;
    }
    .contato-social a {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    .contato-map {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .contato-container {
        padding: 0 10px;
        border-radius: 8px;
    }
    .contato-info {
        padding: 20px 12px;
    }
    .contato-header h1 {
        font-size: 23px;
    }
    .contato-header p,
    .contato-item p {
        font-size: 13px;
        line-height: 1.5;
    }
    .contato-item {
        margin-bottom: 14px;
    }
    .contato-item i {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 18px;
        margin-right: 10px;
    }
    .contato-map {
        min-height: 210px;
        height: 210px;
    }
    .contato-social {
        gap: 12px;
    }
    .contato-social a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    #contato {
        padding: 32px 0;
    }
    .contato-container {
        padding: 0 8px;
    }
    .contato-info {
        padding: 18px 10px;
    }
    .contato-header h1 {
        font-size: 22px;
    }
    .contato-header p,
    .contato-item p {
        font-size: 12.5px;
    }
    .contato-map {
        height: 190px;
        min-height: 190px;
    }
}


/*PLUS SIZE*/

.parallax{
    background-image: url(../img/fundonat.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100%;
    height: 1200px;
    text-align: center;
    z-index: 1;
}
.parallax>h1{
    font-size: 42px;
    color: #006DB5;
    font-family: 'Poppins', sans-serif;
    font-weight: lighter;
    z-index: 995;
    position: relative;
    top: 300px;
    opacity: 1;
}
#sombra{
    background-color: #414141;
    width: 100%;
    height: 1200px;
    position: absolute;
    opacity: 0.6;
    z-index: 100;
}
.parallax>p{
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    color: white;
    position: relative;
    top: 300px;
    z-index: 995;
}
.parallax>#w33bs{
    margin: 0 auto;
    width: 75%;
    padding: 0 5%;
    text-align: center;
    position: relative;
    top: 500px;
    z-index: 988;
}
.parallax>div>.w33{
    background-color: #ffffff00;
    margin: 0 1%;
}
.parallax>div>.w33>p{
    color: #006DB5;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: lighter;
    margin-top: 20px;
}
.parallax>div>h1{
    color: #006DB5;
    font-size: 32px;
    position: relative;
    z-index: 999;
    font-family: 'Poppins', sans-serif;
    font-weight: lighter;
    text-decoration: underline #006DB5;
}
.parallax>div>.w33>i{
    color: #006DB5;
    font-size: 64px;
    margin-top: 60px;
}

/*MEDIA QUERIES*/

/*NOTEBOOK*/

@media only screen and (max-width: 1024px) {
    
    /*HEADER*/

    .header>.menu{
        display: none;
    }
    .header>#h1-mob{
        display: flex;
    }
    
    /* Menu mobile responsivo */
    .header>.menu-mobile {
        width: 300px;
    }
    
    .w33{
        width: 40%;
        display: inline-block;
        margin: 5px 7.5px;
    }

    /*CTA*/
    #CTA {
        height: 450px;
        padding: 4% 3%;
    }
    #CTA h1 {
        font-size: 36px;
    }
    #CTA p {
        font-size: 18px;
    }
    #CTA a {
        padding: 12px 25px;
        font-size: 16px;
    }

    /*CONT-TOP*/
    .cont-top{
        flex-direction: column;
        align-items: center;
        padding: 50px 4%;
        gap: 24px;
    }
    .cont-top>.box-animation{
        order: 1;
        width: 100%;
        max-width: 240px;
        gap: 16px;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .cont-top>.box-animation>.box{
        max-width: 220px;
        min-width: 170px;
    }
    .cont-top>.box{
        order: 2;
        max-width: 560px;
        text-align: center;
        align-items: center;
    }
    .cont-top>.box>h1{
        font-size: 30px;
    }
    .cont-top>.box>p{
        font-size: 17px;
        text-align: center;
    }
    .cont-top>.box>a{
        margin: 0 auto;
    }

    /*CONT-MID*/

    .cont-mid{
        padding: 40px 4% 60px;
        gap: 24px;
    }
    .cont-mid>.box{
        flex: 1 1 220px;
        max-width: 300px;
    }

    /*CATALOGO1*/

    #catalogo1{
        height: 1100px;
        text-align: center;
    }
    #catalogo1>.box{
        width: 250px;
        height: 280px;
        display: block;
        margin: 15px auto;
    }
    #catalogo1>.w33>div{
        width: 100%;
        height: 120px;
    }
    #demo>.wi33{
        width: 28%;
    }

    /*SOBRE*/
    #cont-top-s{
        padding: 60px 4% 50px;
    }
    .sobre-content{
        flex-direction: column;
        gap: 24px;
    }
    .sobre-intro,
    .sobre-metodos{
        padding: 24px 26px;
    }
    .metodos-grid{
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    #bs-box,#bs-box-2{
        height: 800px;
        padding-left: 12%;
    }
    
    /*CATALOGO*/

    #catalogo{
        height: 1700px;
    }
    #catalogo>div{
        padding-left: 10%;
    }
}

/*CELULAR*/

@media only screen and (max-width: 768px){
    
    /* Menu mobile em telas pequenas */
    .header>.menu-mobile {
        width: 280px;
    }
    
    .header>#h1-mob{
        right: 20px;
        font-size: 22px;
    }
    
    .w33{
        width: 90%;
    }
    #demo>.wi33{
        display: block;
        width: 90%;
        margin: 20px auto;
    }
    #demo{
        height: auto;
        min-height: 300px;
        padding: 20px 0;
    }
    #demo>h1{
        font-size: 24px;
        margin-bottom: 15px;
    }
    #demo>picture{
        width: 90%;
        max-width: 400px;
    }
    .parallax,#sombra{
        height: 1600px;
    }
    .cont-top{
        flex-direction: column;
        align-items: center;
        padding: 40px 5%;
        gap: 22px;
    }
    .cont-top>.box-animation{
        order: 1;
        width: 100%;
        max-width: 220px;
        gap: 14px;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .cont-top>.box-animation>.box{
        max-width: 200px;
        min-width: 140px;
    }
    .cont-top>.box{
        order: 2;
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    .cont-top>.box>h1{
        font-size: 28px;
    }
    .cont-top>.box>p{
        font-size: 17px;
        text-align: center;
    }
    .cont-top>.box>a{
        align-self: center;
    }
    #plus>#botplus{
        font-size: 18px;
    }
    #bs-box,#bs-box-2{
        height: 1600px;
        padding-left: 5%;
    }
    
    /*Sobre Mobile*/
    #cont-top-s{
        height: auto;
        padding: 45px 5% 40px;
    }
    .sobre-content{
        flex-direction: column;
        gap: 20px;
    }
    .sobre-intro,
    .sobre-metodos{
        padding: 22px 20px;
    }
    .sobre-intro h1{
        font-size: 24px;
    }
    .sobre-intro p{
        font-size: 16px;
    }
    .sobre-list li{
        font-size: 15px;
    }
    .sobre-metodos-header h2{
        font-size: 20px;
    }
    .metodos-grid{
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    #catalogo{
        height: 3200px;
    }
    #catalogo>h1{
        font-size: 24px;
    }
    
    /*CTA Mobile*/
    #CTA {
        height: 400px;
        padding: 5% 4%;
        text-align: center;
    }
    #CTA h1{
        font-size: 28px;
    }
    #CTA p{
        font-size: 16px;
        line-height: 1.5;
    }
    #CTA p br {
        display: none;
    }
    #CTA a{
        padding: 12px 20px;
        font-size: 16px;
        margin-top: 15px;
    }
    #CTA a:hover{
        padding: 14px 24px;
    }
    
    /*Footer Mobile*/
    .cont-f{
        height: 160px;
        text-align: center;
    }
    .cont-f img{
        float: none;
        display: block;
        margin: 10px auto;
        left: 0;
    }
    .cont-f h3{
        float: none;
        margin-top: 10px;
    }
    #face, #insta{
        float: none;
        display: inline-block;
        margin: 10px 10px;
        right: 0;
        font-size: 24px;
    }
    .cont-f>h2{
        position: static;
        margin-top: 15px;
        font-size: 12px;
    }
    .cont-f>h1{
        position: static;
        margin: 10px auto;
        left: 0;
    }
    
    /*Header Mobile*/
    .header .aimg{
        margin: 20px auto;
    }
    
    /*Cont-mid Mobile*/
    .cont-mid{
        padding: 36px 6% 56px;
        gap: 22px;
    }
    .cont-mid>.box{
        flex: 1 1 200px;
        max-width: none;
        min-height: 180px;
        margin-bottom: 0;
    }
    .cont-mid>.box>p{
        font-size: 18px;
        padding: 0 10px;
    }
    .cont-mid>.box>p[id="txt"]{
        font-size: 19px;
    }
}

@media only screen and (max-width: 480px){
    
    /* Menu mobile em telas muito pequenas */
    .header>.menu-mobile {
        width: 85%;
        max-width: 280px;
    }
    
    .mobile-a>a {
        font-size: 16px;
        padding: 16px 25px;
    }
    
    .header>#h1-mob{
        right: 15px;
        font-size: 20px;
    }
    
    #CTA{
        height: 450px;
        padding: 6% 5%;
    }
    #CTA h1{
        font-size: 24px;
        margin-bottom: 15px;
    }
    #CTA p{
        font-size: 15px;
    }
    #CTA a{
        padding: 10px 18px;
        font-size: 15px;
    }

    .cont-top{
        flex-direction: column;
        align-items: center;
        padding: 32px 6% 40px;
        gap: 16px;
    }
    .cont-top>.box-animation{
        order: 1;
        width: 100%;
        max-width: 200px;
        gap: 10px;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .cont-top>.box-animation>.box{
        max-width: 170px;
        min-width: 120px;
    }
    .cont-top>.box{
        order: 2;
        text-align: center;
        align-items: center;
    }
    .cont-top>.box>p{
        text-align: center;
    }
    .cont-top>.box>a{
        margin: 0 auto;
    }
    .cont-top>.box>h1{
        font-size: 24px;
    }
    .cont-top>.box>p{
        font-size: 16px;
    }
    .cont-top>.box>a{
        padding: 10px 16px;
        font-size: 15px;
    }

    .cont-mid{
        padding: 32px 7% 44px;
        gap: 18px;
    }
    .cont-mid>.box{
        flex: 1 1 100%;
        max-width: 100%;
        min-height: 0;
        padding: 8px 4px;
    }
    .cont-mid>.box>p{
        font-size: 17px;
    }
    .cont-mid>.box>p[id="txt"]{
        font-size: 18px;
    }
}
