.te-content-section {
    padding: 50px 0;
    background: #0a0a0a;
    position: relative;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
}

.te-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.te-section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: center;
}

.te-container-process {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.te-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.te-step-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 40px 30px;
    border: 2px solid rgba(229, 57, 53, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.te-step-card:hover {
    transform: translateY(-5px);
    border-color: #E53935;
    box-shadow: 0 15px 30px rgba(229, 57, 53, 0.2);
}

.te-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E53935, #ff6b47);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.8rem;
    margin: 0 auto 25px auto;
    box-shadow: 0 10px 25px rgba(229, 57, 53, 0.3);
}

.te-step-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.te-step-description {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.te-testimonials-section {
    padding: 50px 0;
    background: #0a0a0a;
    position: relative;
    z-index: 10;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.te-container-testimonials {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.te-carousel-wrapper {
    position: relative;
}

.te-carousel-container {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    width: 100%;
}

.te-testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.te-testimonial-card {
    flex: 0 0 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(229, 57, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.te-testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #E53935;
    box-shadow: 0 15px 30px rgba(229, 57, 53, 0.2);
}

.te-testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.te-testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E53935, #ff6b47);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 15px;
    flex-shrink: 0;
    overflow: hidden;
}

.te-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.te-testimonial-info {
    flex: 1;
    min-width: 0;
}

.te-testimonial-name {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.2;
    word-wrap: break-word;
    display: block;
}

.te-testimonial-location {
    color: #E53935;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
    word-wrap: break-word;
}

.te-testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.te-testimonial-text {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    flex: 1;
    overflow-y: auto;
    word-wrap: break-word;
    hyphens: auto;
}

.te-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 25px;
    font-size: 4rem;
    color: rgba(229, 57, 53, 0.3);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
}

.te-nav-controls {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.te-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(229, 57, 53, 0.9);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.te-nav-btn:hover {
    background: #E53935;
    transform: scale(1.1);
}

.te-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.te-nav-btn:disabled:hover {
    transform: none;
}

.te-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.te-indicator {
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.te-indicator.active {
    background: #E53935;
    width: 60px;
}

.te-contact-form-section {
    padding: 50px 0;
    background: #0a0a0a;
    position: relative;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
}

.te-contact-form {
    background: rgba(255,255,255,0.08);
    border-radius: 15px;
    padding: 40px;
    border: 2px solid rgba(229, 57, 53, 0.4);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.te-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.te-form-group {
    display: flex;
    flex-direction: column;
}

.te-form-group.te-full-width {
    grid-column: span 2;
}

.te-form-group label {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}

.te-form-group input,
.te-form-group select,
.te-form-group textarea {
    padding: 15px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.te-form-group input:focus,
.te-form-group select:focus,
.te-form-group textarea:focus {
    outline: none;
    border-color: #E53935;
    background: rgba(255,255,255,0.08);
}

.te-form-group input::placeholder,
.te-form-group textarea::placeholder {
    color: #aaa;
}

.te-form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.te-form-submit {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.te-form-submit button {
    background: linear-gradient(135deg, #E53935, #ff6b47);
    color: #ffffff;
    padding: 18px 60px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.3);
    font-family: 'Poppins', sans-serif;
}

.te-form-submit button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(229, 57, 53, 0.4);
}

.te-footer {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    color: #F5F5DC;
    padding-top: 50px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.te-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(229, 57, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 245, 220, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.te-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.te-footer-section .te-footer-title {
    color: #F5F5DC;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    display: block;
}

.te-footer-section .te-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
    border-radius: 2px;
}

.te-footer-section p {
    color: #E6E6C7;
    line-height: 1.7;
    text-align: left;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.te-footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.te-footer-section ul li {
    padding: 6px 0;
    transition: transform 0.3s ease;
}

.te-footer-section ul li:hover {
    transform: translateX(8px);
}

.te-footer-section a.te-service-item {
    color: #E6E6C7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.te-footer-section a.te-service-item:hover {
    color: #F5F5DC;
}

.te-footer-section a.te-service-item::before {
    content: '▸';
    color: #E53935;
    margin-right: 8px;
    font-weight: bold;
}

.te-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #E6E6C7;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-decoration: none;
}

a.te-footer-contact-item:hover {
    transform: translateX(8px);
    color: #F5F5DC;
}

.te-footer-contact-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(229, 57, 53, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 3px;
}

.te-footer-contact-icon svg {
    width: 14px;
    height: 14px;
    fill: #E53935;
    transition: fill 0.3s ease;
}

a.te-footer-contact-item:hover .te-footer-contact-icon {
    background: #E53935;
    transform: scale(1.1);
}

a.te-footer-contact-item:hover .te-footer-contact-icon svg {
    fill: white;
}

.te-coverage-area {
    background: rgba(229, 57, 53, 0.15);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(229, 57, 53, 0.3);
    margin-top: 20px;
}

.te-coverage-area .te-coverage-title {
    color: #F5F5DC;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.te-coverage-area .te-coverage-title svg {
    width: 16px;
    height: 16px;
    fill: #E53935;
}

.te-coverage-area p {
    font-size: 0.85rem;
    color: #E6E6C7;
    margin: 0;
}

.te-footer-bottom {
    background: #1A1A1A;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(245, 245, 220, 0.1);
    position: relative;
    z-index: 2;
}

.te-footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.te-footer-bottom p {
    color: #E6E6C7;
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
}

.te-footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.te-footer-links a {
    color: #E6E6C7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.te-footer-links a:hover {
    color: #E53935;
}

@media (min-width: 640px) {
    .te-testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (min-width: 1024px) {
    .te-testimonial-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 1200px) {
    .te-footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 1024px) {
    .te-section-title {
        font-size: 2.5rem;
    }
    .te-contact-form {
        padding: 35px;
    }
    .te-form-grid {
        gap: 20px;
    }
    .te-process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .te-step-card {
        padding: 35px 25px;
    }
    .te-step-title {
        font-size: 1.3rem;
    }
    .te-footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 992px) {
    .te-footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .te-contact-form-section, .te-content-section, .te-testimonials-section {
        padding: 40px 0;
    }
    .te-section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .te-container, .te-container-process, .te-container-testimonials {
        padding: 0 16px;
    }
    .te-contact-form {
        padding: 30px 25px;
    }
    .te-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .te-form-group.te-full-width {
        grid-column: span 1;
    }
    .te-form-submit button {
        padding: 16px 50px;
        font-size: 1.1rem;
    }
    .te-process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .te-step-card {
        padding: 30px 20px;
    }
    .te-step-number {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    .te-step-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    .te-step-description {
        font-size: 0.95rem;
    }
    .te-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .te-nav-controls {
        display: flex;
    }
}

@media (max-width: 640px) {
    .te-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .te-contact-form-section, .te-content-section, .te-testimonials-section {
        padding: 35px 0;
    }
    .te-section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    .te-container, .te-container-process, .te-container-testimonials {
        padding: 0 15px;
    }
    .te-contact-form {
        padding: 25px 20px;
    }
    .te-form-grid {
        gap: 15px;
        margin-bottom: 25px;
    }
    .te-form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    .te-form-group input,
    .te-form-group select,
    .te-form-group textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    .te-form-submit {
        flex-direction: column;
        align-items: center;
    }
    .te-form-submit button {
        padding: 14px 40px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    .te-process-steps {
        margin-top: 20px;
        gap: 20px;
    }
    .te-step-card {
        padding: 25px 15px;
    }
    .te-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    .te-step-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    .te-step-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .te-testimonial-card {
        padding: 15px;
    }
    .te-testimonial-text {
        font-size: 0.9rem;
    }
    .te-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    .te-footer {
        padding-top: 40px;
    }
    .te-footer-section .te-footer-title {
        font-size: 1.2rem;
    }
    .te-footer-section .te-footer-title::after {
        left: 0;
        transform: none;
    }
    .te-footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .te-footer-links {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
}
.elementor .elementor-widget-html .elementor-widget-container:has(:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro)){max-width:100%!important;width:100%!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-article-wrapper{background:#000!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-layout.te-layout--servicos-full{display:block!important;max-width:min(1320px,100%)!important;width:100%!important;margin-left:auto!important;margin-right:auto!important;padding-left:var(--te-fold-pad-x,clamp(20px,5vw,56px))!important;padding-right:var(--te-fold-pad-x,clamp(20px,5vw,56px))!important;padding-bottom:clamp(40px,5vw,56px)!important;padding-top:0!important;box-sizing:border-box!important;background:#000!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-layout.te-layout--servicos-full .te-main-flow{width:100%!important;max-width:100%!important;min-width:0!important;margin:0!important;background:#000!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-article-wrapper .te-container{max-width:100%!important;width:100%!important;margin-left:0!important;margin-right:0!important;padding-left:0!important;padding-right:0!important;box-sizing:border-box!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-servicos-fold-band{background:#000!important;padding:clamp(10px,1.6vw,18px) 0!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-servicos-fold-band .te-container{max-width:100%!important;width:100%!important;margin:0!important;padding:0!important;box-sizing:border-box!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-servicos-fold-band .te-servicos-nav-unified{background:#262626!important;border:none!important;box-shadow:none!important;border-radius:14px!important;padding:clamp(10px,1.8vw,14px) clamp(12px,2vw,16px) clamp(12px,2vw,16px)!important;box-sizing:border-box!important;max-width:100%!important;margin:0!important;text-align:center!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-servicos-nav-unified .te-servicos-nav-unified-title{margin:0 0 clamp(8px,1.4vw,12px)!important;padding:0!important;font-size:clamp(1.02rem,3vw,1.65rem)!important;line-height:1.25!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-servicos-nav-unified .te-sidebar-toc{margin-top:0!important;padding-top:0!important;border-top:none!important}@media(min-width:768px){:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-servicos-fold-band .te-servicos-nav-unified .te-sidebar-toc-list{display:flex!important;flex-direction:row!important;flex-wrap:nowrap!important;justify-content:center!important;align-items:center!important;gap:8px!important;overflow-x:auto!important;overflow-y:hidden!important;-webkit-overflow-scrolling:touch!important;padding:8px 0 12px!important;width:100%!important;margin:0!important;list-style:none!important;box-sizing:border-box!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-servicos-fold-band .te-servicos-nav-unified .te-sidebar-toc-list li{list-style:none!important;margin:0!important;width:auto!important;max-width:none!important;flex:0 0 auto!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-servicos-fold-band .te-servicos-nav-unified .te-sidebar-toc-list a{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:auto!important;max-width:none!important;white-space:nowrap!important;padding:10px 14px!important;border-radius:4px!important;text-decoration:none!important;color:#fff!important;font-size:clamp(.82rem,1.4vw,.92rem)!important;font-weight:700!important;font-family:Montserrat,system-ui,sans-serif!important;border:1px solid rgba(229,57,53,.45)!important;background:rgba(0,0,0,.35)!important;min-height:44px!important;box-sizing:border-box!important;transition:background .2s,border-color .2s!important}}@media(max-width:767px){:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-servicos-fold-band .te-servicos-nav-unified .te-sidebar-toc-list{display:flex!important;flex-direction:column!important;flex-wrap:nowrap!important;align-items:stretch!important;gap:clamp(10px,2.4vw,16px)!important;width:100%!important;margin:0!important;padding:6px 0 8px!important;list-style:none!important;box-sizing:border-box!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-servicos-fold-band .te-servicos-nav-unified .te-sidebar-toc-list li{list-style:none!important;margin:0!important;width:100%!important;max-width:100%!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-servicos-fold-band .te-servicos-nav-unified .te-sidebar-toc-list a{display:flex!important;align-items:center!important;justify-content:center!important;width:100%!important;max-width:100%!important;box-sizing:border-box!important;padding:12px 16px!important;border-radius:6px!important;text-decoration:none!important;color:#fff!important;font-size:clamp(.88rem,2.6vw,.98rem)!important;font-weight:700!important;font-family:Montserrat,system-ui,sans-serif!important;border:1px solid rgba(229,57,53,.45)!important;background:rgba(0,0,0,.35)!important;min-height:48px!important;white-space:normal!important;transition:background .2s,border-color .2s!important}}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-servicos-fold-band .te-servicos-nav-unified .te-sidebar-toc-list a:hover,:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-servicos-fold-band .te-servicos-nav-unified .te-sidebar-toc-list a:focus-visible{background:rgba(229,57,53,.14)!important;border-color:#E53935!important;color:#fff!important;outline:none!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-section-header{background:#262626!important;border:1px solid rgba(229,57,53,.28)!important;border-bottom:none!important;border-radius:16px 16px 0 0!important;margin:clamp(24px,3.4vw,42px) 0 0!important;padding:clamp(18px,2.8vw,24px) clamp(18px,3vw,36px) clamp(10px,1.8vw,16px)!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-section-header + .te-content-grid{border-top:none!important;border-radius:0 0 16px 16px!important;margin-top:0!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-content-grid{background:#262626!important;border:1px solid rgba(229,57,53,.25)!important;margin-bottom:clamp(28px,4vw,48px)!important}@media(min-width:969px){:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-content-grid:not(.te-content-grid-full){grid-template-columns:minmax(0,1fr) minmax(0,min(240px,20vw))!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-image-section{align-items:center!important;justify-content:flex-start!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-image-container{max-width:min(200px,100%)!important;width:100%!important;margin-left:auto!important;margin-right:auto!important}}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-content-image{transition:none!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-content-grid:hover .te-content-image{transform:none!important}@media(max-width:968px){:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-content-grid:not(.te-content-grid-full){grid-template-columns:1fr!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-image-section{order:-1!important;flex-direction:column!important;flex-wrap:nowrap!important;gap:15px!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-image-container{flex:none!important;min-width:0!important;width:100%!important}}@media(max-width:767px){:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-image-section .te-image-container{max-width:min(190px,68vw)!important;margin-left:auto!important;margin-right:auto!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-image-section{align-items:center!important}}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-content-grid-full{grid-template-columns:1fr!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-text-content{background:#262626!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-text-content p{color:#ddd!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-text-content strong{color:#E53935!important;font-weight:600!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-image-section{background:#262626!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-image-container{border-radius:14px!important;overflow:hidden!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-section-title{font-family:Montserrat,system-ui,sans-serif!important;font-weight:800!important;text-align:center!important;background:linear-gradient(135deg,#fff 0%,#E53935 100%)!important;-webkit-background-clip:text!important;-webkit-text-fill-color:transparent!important;background-clip:text!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) #te-numeros.te-stats-section{background:#000!important;border-top:1px solid rgba(255,255,255,.08)!important;padding:clamp(6px,1.2vw,12px) 0!important;margin:0!important;width:100%!important;max-width:100%!important;box-sizing:border-box!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) #te-numeros .te-container{max-width:100%!important;width:100%!important;padding:0!important;margin:0!important;box-sizing:border-box!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) #te-numeros .te-stats-unified-card{background:#262626!important;border:1px solid rgba(229,57,53,.28)!important;border-radius:14px!important;padding:0!important;box-sizing:border-box!important;max-width:100%!important;margin:0!important;overflow:hidden!important;display:block!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) #te-numeros .te-stats-title-band{background:#262626!important;padding:clamp(8px,1.4vw,12px) clamp(12px,2vw,16px) clamp(6px,1.1vw,10px)!important;margin:0!important;border-bottom:none!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) #te-numeros .te-stats-unified-title{margin:0!important;padding:0!important;font-size:clamp(1.02rem,3vw,1.65rem)!important;line-height:1.25!important;text-align:center!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) #te-numeros .te-stats-grid{padding:clamp(6px,1.2vw,10px) clamp(10px,1.8vw,14px) clamp(10px,1.8vw,14px)!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) #te-numeros .te-numeros-heading-block,:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) #te-numeros .te-stats-numbers-card{background:transparent!important;border:none!important;padding:0!important;margin:0!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) #te-numeros .te-stats-grid{gap:clamp(6px,1vw,12px)!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) #te-numeros .te-stat-item{background:rgba(255,255,255,.1)!important;border:1px solid rgba(255,255,255,.16)!important;border-radius:8px!important;padding:clamp(8px,1.2vw,14px) clamp(4px,.8vw,10px)!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) #te-numeros .te-stat-label{color:#fff!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) #te-numeros .te-stats-intro{font-family:Montserrat,system-ui,sans-serif!important;font-size:clamp(1.15rem,3vw,1.85rem)!important;font-weight:800!important;text-align:center!important;margin:0 0 clamp(12px,2vw,18px)!important;background:linear-gradient(135deg,#fff 0%,#E53935 100%)!important;-webkit-background-clip:text!important;-webkit-text-fill-color:transparent!important;background-clip:text!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-faq-section details{background:#262626!important;border:1px solid rgba(229,57,53,.25)!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-faq-section summary{font-family:Montserrat,system-ui,sans-serif!important;font-weight:800!important;font-size:clamp(.95rem,2.2vw,1.12rem)!important;line-height:1.35!important;background:linear-gradient(135deg,#fff 0%,#E53935 100%)!important;-webkit-background-clip:text!important;-webkit-text-fill-color:transparent!important;background-clip:text!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-cta-title{font-family:Montserrat,system-ui,sans-serif!important;font-size:clamp(1.25rem,4vw,2rem)!important;font-weight:800!important;margin:0 0 16px!important;text-align:center!important;background:linear-gradient(135deg,#fff 0%,#E53935 100%)!important;-webkit-background-clip:text!important;-webkit-text-fill-color:transparent!important;background-clip:text!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-cta-section{background:#262626!important;border:1px solid rgba(229,57,53,.25)!important;border-radius:16px!important;padding:24px 20px 28px!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-cidades-ddd-wrap{background:#000!important;padding:28px 0 40px!important;margin:0!important;border-top:1px solid rgba(255,255,255,.08)!important;width:100%!important;max-width:100%!important;box-sizing:border-box!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-cidades-ddd-wrap .te-cidades-ddd-heading-block{background:#262626!important;border:1px solid rgba(229,57,53,.28)!important;border-radius:20px!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-cidades-ddd-wrap .te-cidades-ddd-body{background:#262626!important;border:1px solid rgba(229,57,53,.25)!important;border-radius:16px!important;overflow:hidden!important;padding:0 16px 24px!important;max-width:100%!important;width:100%!important;margin:0!important;box-sizing:border-box!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-dd-panels{background:rgba(0,0,0,.2)!important;border:1px solid rgba(255,255,255,.1)!important;border-radius:0 12px 12px 12px!important;padding:20px 16px 12px!important;margin:0 0 14px!important}:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-cidades-ddd-wrap a.te-home-cidades-hub,:is(.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-cidades-ddd-wrap a.te-sidebar-todas.te-home-cidades-hub{background:rgba(255,255,255,.06)!important}
:is(.te-seo-home,.te-ui-padrao){--te-header-h:108px!important;--te-fold-pad-x:clamp(20px,5vw,56px)!important;--te-readable:min(42rem,100%)!important;margin-top:0!important}:is(.te-seo-home,.te-ui-padrao) .te-first-fold{display:flex!important;flex-direction:column!important;justify-content:flex-start!important;align-items:stretch!important;padding-top:0!important;padding-bottom:max(12px, env(safe-area-inset-bottom, 0px))!important;padding-left:var(--te-fold-pad-x)!important;padding-right:var(--te-fold-pad-x)!important;background:radial-gradient(ellipse 120% 80% at 50% -25%, rgba(229,57,53,.12), transparent 55%), linear-gradient(180deg,#060606 0%,#0a0a0a 50%,#080808 100%)!important}:is(.te-seo-home,.te-ui-padrao) .te-first-fold .te-hero-wrapper{margin:0!important;flex:0 0 auto!important;width:100%!important;max-width:none!important}:is(.te-seo-home,.te-ui-padrao) section[id],:is(.te-seo-home,.te-ui-padrao) #te-top,:is(.te-seo-home,.te-ui-padrao) #te-orcamento-capa{scroll-margin-top:min(120px,18vh)!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-wrapper{position:relative!important;width:100%!important;margin:0!important;margin-top:0!important;background:linear-gradient(180deg,rgba(18,18,18,.92) 0%,rgba(10,10,10,.96) 100%)!important;padding-top:0!important;padding-bottom:clamp(12px,2.5vh,28px)!important;padding-left:0!important;padding-right:0!important;border-top:1px solid rgba(255,255,255,.06)!important;border-bottom:1px solid rgba(255,255,255,.06)!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.04)!important}:is(.te-seo-home,.te-ui-padrao) .te-hero{display:flex!important;align-items:flex-start!important;justify-content:center!important;padding:0!important;position:relative!important;z-index:10!important}:is(.te-seo-home,.te-ui-padrao) .te-hero .te-container{max-width:100%!important;width:100%!important;padding:0 var(--te-fold-pad-x)!important}:is(.te-seo-home,.te-ui-padrao) .te-hero .te-container.te-hero-cap-grid{max-width:min(1200px,100%)!important;margin:0 auto!important;padding:0!important;width:100%!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-cap-grid{display:grid!important;gap:clamp(20px,3vw,36px)!important;align-items:start!important;width:100%!important;column-gap:clamp(24px,3.5vw,40px)!important}@media(min-width:768px){:is(.te-seo-home,.te-ui-padrao) .te-hero-cap-grid{grid-template-columns:minmax(0,1fr) minmax(280px,min(380px,34vw))!important;align-items:center!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-cap-col{display:flex!important;flex-direction:column!important;align-items:flex-start!important;text-align:left!important;width:100%!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-cap-col .te-hero-highlight,:is(.te-seo-home,.te-ui-padrao) .te-hero-cap-col .te-h1-sub,:is(.te-seo-home,.te-ui-padrao) .te-hero-cap-col .te-answer-capsule{margin-left:0!important;margin-right:0!important;max-width:40rem!important;width:100%!important;text-align:left!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-cap-col .te-hero-content>h1{margin-left:0!important;margin-right:0!important;max-width:40rem!important;width:100%!important;text-align:left!important;border-left:4px solid #E53935!important;padding-left:14px!important;box-sizing:border-box!important;border-radius:0 2px 2px 0!important;font-size:clamp(1.28rem,2.8vw + .5rem,2.05rem)!important;font-weight:900!important;line-height:1.22!important;color:#fff!important;letter-spacing:-.02em!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-cap-col .te-hero-buttons{justify-content:flex-start!important;margin-left:0!important;margin-right:0!important;max-width:40rem!important;width:100%!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-cap-col .te-pillar-grid{margin-left:0!important;margin-right:0!important;margin-top:clamp(12px,2vh,20px)!important;max-width:100%!important;width:100%!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-form-panel{align-self:stretch!important}}:is(.te-seo-home,.te-ui-padrao) .te-hero-cap-col{min-width:0!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-content{width:100%!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-highlight{font-size:clamp(.72rem,1.5vw,.82rem)!important;margin:0 auto clamp(14px,2.2vh,22px)!important;color:#E53935!important;font-weight:600!important;text-transform:uppercase!important;letter-spacing:.14em!important;line-height:1.4!important;max-width:var(--te-readable)!important}:is(.te-seo-home,.te-ui-padrao) .te-hero h1{font-size:clamp(1.28rem,2.8vw + .5rem,2.05rem)!important;font-weight:900!important;margin:0 auto clamp(16px,2.5vh,24px)!important;line-height:1.22!important;color:#fff!important;max-width:var(--te-readable)!important;letter-spacing:-.02em!important}:is(.te-seo-home,.te-ui-padrao) .te-h1-sub{display:block!important;font-size:clamp(.88rem,1.4vw + .35rem,1.05rem)!important;font-weight:500!important;color:#b8b8b8!important;margin:0 auto clamp(22px,3vh,32px)!important;letter-spacing:.01em!important;text-transform:none!important;line-height:1.55!important;max-width:var(--te-readable)!important}:is(.te-seo-home,.te-ui-padrao) .te-answer-capsule{font-size:clamp(.9rem,1.2vw + .55rem,1.02rem)!important;line-height:1.65!important;color:#c8c8c8!important;margin:0 auto clamp(20px,2.8vh,28px)!important;max-width:var(--te-readable)!important;padding:clamp(16px,2vh,20px) clamp(18px,2.5vw,24px)!important;background:rgba(229,57,53,.07)!important;border-left:4px solid #E53935!important;border-radius:0 12px 12px 0!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-buttons{display:flex!important;flex-wrap:wrap!important;gap:clamp(8px,1.4vw,14px)!important;justify-content:center!important;margin:0 auto!important;max-width:min(52rem,100%)!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-form-panel{background:rgba(255,255,255,.07)!important;border:2px solid #E53935!important;border-radius:16px!important;padding:clamp(20px,2.2vw,28px)!important;box-shadow:0 12px 40px rgba(0,0,0,.35)!important;max-width:min(440px,100%)!important;margin:0 auto!important;width:100%!important;box-sizing:border-box!important}@media(min-width:768px){:is(.te-seo-home,.te-ui-padrao) .te-hero-form-panel{margin:0!important;width:100%!important;max-width:none!important}}:is(.te-seo-home,.te-ui-padrao) .te-pillar-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:10px 12px!important;list-style:none!important;padding:0!important;margin:0!important}body.home .elementor-section:has(.te-seo-home),body .elementor-section:has(.te-ui-padrao){padding-top:0!important;margin-top:0!important}body.home .elementor-section:has(.te-seo-home) > .elementor-container,body .elementor-section:has(.te-ui-padrao) > .elementor-container{padding-top:0!important;margin-top:0!important}body.home .elementor-column:has(.te-seo-home),body .elementor-column:has(.te-ui-padrao){padding-top:0!important;margin-top:0!important}body.home .elementor-column:has(.te-seo-home) > .elementor-widget-wrap,body .elementor-column:has(.te-ui-padrao) > .elementor-widget-wrap{padding-top:0!important;margin-top:0!important}body.home .elementor-widget-html .elementor-widget-container:has(.te-seo-home),body .elementor-widget-html .elementor-widget-container:has(.te-ui-padrao){padding-top:0!important;margin-top:0!important}/* Navegação rápida: tablet/desktop ≥768px uma linha (scroll X se precisar); mobile ≤767px pilha. */:is(.te-seo-home,.te-ui-padrao) .te-servicos-fold-band .te-container{padding-left:clamp(12px,4vw,22px)!important;padding-right:clamp(12px,4vw,22px)!important;box-sizing:border-box!important}@media(min-width:768px){:is(.te-seo-home,.te-ui-padrao) .te-servicos-fold-band .te-servicos-nav-unified .te-sidebar-toc-list{display:flex!important;flex-direction:row!important;flex-wrap:nowrap!important;justify-content:center!important;align-items:center!important;gap:8px!important;overflow-x:auto!important;overflow-y:hidden!important;-webkit-overflow-scrolling:touch!important;padding:8px 0 12px!important;width:100%!important;max-width:100%!important;box-sizing:border-box!important;list-style:none!important;margin:0!important}:is(.te-seo-home,.te-ui-padrao) .te-servicos-fold-band .te-servicos-nav-unified .te-sidebar-toc-list li{width:auto!important;max-width:none!important;flex:0 0 auto!important;margin:0!important;list-style:none!important}:is(.te-seo-home,.te-ui-padrao) .te-servicos-fold-band .te-servicos-nav-unified .te-sidebar-toc-list a{width:auto!important;max-width:none!important;white-space:nowrap!important;padding:10px 14px!important;min-height:44px!important;box-sizing:border-box!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;text-align:center!important;border-radius:4px!important;border:1px solid rgba(229,57,53,.45)!important;background:rgba(0,0,0,.35)!important;font-size:clamp(.82rem,1.4vw,.92rem)!important;font-weight:700!important;color:#fff!important;text-decoration:none!important}}@media(max-width:767px){:is(.te-seo-home,.te-ui-padrao){--te-fold-pad-x:0!important;margin-top:0!important}:is(.te-seo-home,.te-ui-padrao) .te-first-fold{justify-content:flex-start!important;padding-top:0!important;padding-left:0!important;padding-right:0!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-wrapper{padding-top:0!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-cap-grid{grid-template-columns:1fr!important}:is(.te-seo-home,.te-ui-padrao) .te-hero .te-container,:is(.te-seo-home,.te-ui-padrao) .te-hero .te-container.te-hero-cap-grid{padding-left:0!important;padding-right:0!important;margin-left:0!important;margin-right:0!important;width:100%!important;max-width:100%!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-form-panel,:is(.te-seo-home,.te-ui-padrao) #te-orcamento-capa{margin-top:clamp(40px,10vw,72px)!important;margin-left:0!important;margin-right:0!important;max-width:100%!important;width:100%!important;border-radius:0!important;display:block!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-buttons,:is(.te-seo-home,.te-ui-padrao) .te-hero-cap-col .te-hero-buttons{margin-top:20px!important;margin-bottom:90px!important;gap:clamp(10px,2.2vw,16px)!important;flex-direction:column!important;align-items:center!important;width:100%!important}.elementor .elementor-widget-html .elementor-widget-container:has(:is(.te-seo-home,.te-ui-padrao)){padding-top:0!important;padding-left:0!important;padding-right:0!important;margin-left:0!important;margin-right:0!important;max-width:100%!important;width:100%!important}.elementor-section:has(:is(.te-seo-home,.te-ui-padrao)){padding-top:0!important;padding-left:0!important;padding-right:0!important}.elementor-section:has(:is(.te-seo-home,.te-ui-padrao)) > .elementor-container{max-width:100%!important;padding-top:0!important;padding-left:0!important;padding-right:0!important}.elementor-column:has(:is(.te-seo-home,.te-ui-padrao)),.elementor-column:has(:is(.te-seo-home,.te-ui-padrao)) > .elementor-widget-wrap{padding-left:0!important;padding-right:0!important}.te-seo-home #te-numeros{display:none!important}.te-seo-home .te-sidebar-toc-list li:has(a[href="#te-numeros"]),.te-seo-home .te-toc-list li:has(a[href="#te-numeros"]){display:none!important}:is(.te-seo-home,.te-ui-padrao) .te-servicos-nav-unified .te-sidebar-toc-list,:is(.te-seo-home,.te-ui-padrao) .te-servicos-fold-band .te-sidebar-toc-list,:is(.te-seo-home,.te-ui-padrao) .te-main-flow .te-sidebar-toc-list,:is(.te-seo-home,.te-ui-padrao) .te-sidebar .te-sidebar-toc-list{display:flex!important;flex-direction:column!important;flex-wrap:nowrap!important;align-items:stretch!important;gap:10px!important;width:100%!important;justify-content:flex-start!important}:is(.te-seo-home,.te-ui-padrao) .te-servicos-nav-unified .te-sidebar-toc-list li,:is(.te-seo-home,.te-ui-padrao) .te-servicos-fold-band .te-sidebar-toc-list li,:is(.te-seo-home,.te-ui-padrao) .te-main-flow .te-sidebar-toc-list li,:is(.te-seo-home,.te-ui-padrao) .te-sidebar .te-sidebar-toc-list li{width:100%!important;max-width:100%!important}:is(.te-seo-home,.te-ui-padrao) .te-servicos-nav-unified .te-sidebar-toc-list a,:is(.te-seo-home,.te-ui-padrao) .te-servicos-fold-band .te-sidebar-toc-list a,:is(.te-seo-home,.te-ui-padrao) .te-main-flow .te-sidebar-toc-list a,:is(.te-seo-home,.te-ui-padrao) .te-sidebar .te-sidebar-toc-list a{width:100%!important;max-width:100%!important;box-sizing:border-box!important;display:flex!important;align-items:center!important;justify-content:center!important;text-align:center!important;padding:12px 16px!important;min-height:48px!important;border-radius:4px!important;border:1px solid rgba(229,57,53,.45)!important;background:rgba(0,0,0,.35)!important;font-size:clamp(1rem,3.1vw,1.1rem)!important;text-decoration:none!important;color:#fff!important;font-weight:700!important}:is(.te-seo-home,.te-ui-padrao) .te-servicos-nav-unified .te-sidebar-toc,:is(.te-seo-home,.te-ui-padrao) .te-servicos-fold-band .te-sidebar-toc,:is(.te-seo-home,.te-ui-padrao) .te-sidebar .te-sidebar-toc{display:block!important;width:100%!important}:is(.te-seo-home,.te-ui-padrao) .te-servicos-fold-band .te-servicos-nav-unified .te-sidebar-toc-list{display:flex!important;flex-direction:column!important;flex-wrap:nowrap!important;align-items:stretch!important;gap:clamp(10px,2.4vw,16px)!important;width:100%!important;max-width:100%!important;overflow:visible!important;padding:6px 0 8px!important;margin:0!important;list-style:none!important;box-sizing:border-box!important}:is(.te-seo-home,.te-ui-padrao) .te-servicos-fold-band .te-servicos-nav-unified .te-sidebar-toc-list li{width:100%!important;max-width:100%!important;flex:0 0 auto!important;margin:0!important;list-style:none!important}:is(.te-seo-home,.te-ui-padrao) .te-servicos-fold-band .te-servicos-nav-unified .te-sidebar-toc-list a{width:100%!important;max-width:100%!important;white-space:normal!important;padding:12px 16px!important;min-height:48px!important;box-sizing:border-box!important;display:flex!important;align-items:center!important;justify-content:center!important;text-align:center!important;border-radius:6px!important;border:1px solid rgba(229,57,53,.45)!important;background:rgba(0,0,0,.35)!important;font-size:clamp(.92rem,2.8vw,1.02rem)!important;font-weight:700!important;color:#fff!important;text-decoration:none!important}:is(.te-seo-home,.te-ui-padrao) .te-main-flow #te-numeros .te-container{padding-left:clamp(12px,4vw,20px)!important;padding-right:clamp(12px,4vw,20px)!important;box-sizing:border-box!important}:is(.te-seo-home,.te-ui-padrao) details.te-toc-mobile{width:100%!important;max-width:100%!important;box-sizing:border-box!important}:is(.te-seo-home,.te-ui-padrao) details.te-toc-mobile nav{display:block!important;width:100%!important;max-width:100%!important}:is(.te-seo-home,.te-ui-padrao) details.te-toc-mobile .te-toc-list,:is(.te-seo-home,.te-ui-padrao) .te-main-flow .te-toc-list{display:flex!important;flex-direction:column!important;flex-wrap:nowrap!important;align-items:stretch!important;gap:10px!important;width:100%!important;max-width:100%!important;list-style:none!important;padding:0 16px 16px!important;margin:0!important;box-sizing:border-box!important}:is(.te-seo-home,.te-ui-padrao) details.te-toc-mobile .te-toc-list li,:is(.te-seo-home,.te-ui-padrao) .te-main-flow .te-toc-list li{width:100%!important;max-width:100%!important;margin:0!important;list-style:none!important}:is(.te-seo-home,.te-ui-padrao) details.te-toc-mobile .te-toc-list a,:is(.te-seo-home,.te-ui-padrao) .te-main-flow .te-toc-list a{width:100%!important;max-width:100%!important;box-sizing:border-box!important;display:flex!important;align-items:center!important;justify-content:center!important;text-align:center!important;padding:12px 16px!important;min-height:48px!important;border-radius:4px!important;border:1px solid rgba(229,57,53,.45)!important;background:rgba(0,0,0,.35)!important;font-size:clamp(1rem,3.1vw,1.1rem)!important;text-decoration:none!important;color:#fff!important;font-weight:700!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-highlight,:is(.te-seo-home,.te-ui-padrao) .te-hero-cap-col .te-hero-highlight{text-align:center!important;width:100%!important;max-width:100%!important;margin-left:auto!important;margin-right:auto!important;margin-bottom:10px!important;display:block!important;font-size:clamp(.82rem,2.85vw,.92rem)!important;line-height:1.45!important;letter-spacing:.09em!important}:is(.te-seo-home,.te-ui-padrao) .te-hero h1,:is(.te-seo-home,.te-ui-padrao) .te-hero-content>h1{margin-bottom:10px!important;text-align:center!important;font-size:clamp(1.58rem,6vw + .55rem,2.55rem)!important;line-height:1.28!important}:is(.te-seo-home,.te-ui-padrao) .te-h1-sub{display:none!important}:is(.te-seo-home,.te-ui-padrao) .te-answer-capsule{font-size:clamp(1.08rem,3.5vw + .48rem,1.22rem)!important;line-height:1.74!important}:is(.te-seo-home,.te-ui-padrao) .te-hero .te-cta-button{padding:14px 22px!important;font-size:clamp(1rem,3.2vw,1.12rem)!important}:is(.te-seo-home,.te-ui-padrao) .te-hero .te-cta-button .te-cta-line{font-size:clamp(.98rem,3vw,1.08rem)!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-form-title{font-size:clamp(1.02rem,3.4vw,1.18rem)!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-form-group label{font-size:.8rem!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-form-group input,:is(.te-seo-home,.te-ui-padrao) .te-hero-form-group textarea{font-size:1.02rem!important;min-height:46px!important}:is(.te-seo-home,.te-ui-padrao) .te-hero-form-actions .te-hero-form-btn{font-size:.82rem!important;padding:14px 16px!important}:is(.te-seo-home,.te-ui-padrao) .te-main-flow{font-size:clamp(1.08rem,3.5vw + .48rem,1.22rem)!important;line-height:1.74!important}:is(.te-seo-home,.te-ui-padrao) h2.te-section-title,:is(.te-seo-home,.te-ui-padrao) h3.te-section-title{font-size:clamp(1.58rem,6vw + .55rem,2.55rem)!important;line-height:1.28!important}:is(.te-seo-home,.te-ui-padrao) .te-servicos-nav-unified-title{font-size:clamp(1.58rem,6vw + .55rem,2.55rem)!important;line-height:1.28!important}:is(.te-seo-home,.te-ui-padrao) .te-servicos-fold-band .te-servicos-nav-unified-title{font-size:clamp(1.02rem,3vw,1.65rem)!important;line-height:1.28!important}:is(.te-seo-home,.te-ui-padrao) .te-card-title{font-size:clamp(1.2rem,3.9vw + .42rem,1.34rem)!important;line-height:1.38!important}:is(.te-seo-home,.te-ui-padrao) .te-card-body,:is(.te-seo-home,.te-ui-padrao) .te-card-summary,:is(.te-seo-home,.te-ui-padrao) .te-card-summary p{font-size:clamp(1.08rem,3.5vw + .48rem,1.22rem)!important;line-height:1.74!important}:is(.te-seo-home,.te-ui-padrao) .te-guia-body,:is(.te-seo-home,.te-ui-padrao) .te-guia-body p,:is(.te-seo-home,.te-ui-padrao) .te-content-text,:is(.te-seo-home,.te-ui-padrao) .te-content-text p,:is(.te-seo-home,.te-ui-padrao) .te-text-content,:is(.te-seo-home,.te-ui-padrao) .te-text-content p,:is(.te-seo-home,.te-ui-padrao) .te-text-content li{font-size:clamp(1.08rem,3.5vw + .48rem,1.22rem)!important;line-height:1.74!important}:is(.te-seo-home,.te-ui-padrao) .te-faq-section summary{font-size:clamp(1.1rem,3.6vw + .42rem,1.22rem)!important;line-height:1.45!important}:is(.te-seo-home,.te-ui-padrao) .te-faq-section .te-faq-body,:is(.te-seo-home,.te-ui-padrao) .te-faq-body p{font-size:clamp(1.08rem,3.5vw + .48rem,1.22rem)!important;line-height:1.74!important}:is(.te-seo-home,.te-ui-padrao) .te-sidebar-heading{font-size:clamp(1.12rem,3.6vw + .4rem,1.24rem)!important;line-height:1.38!important}:is(.te-seo-home,.te-ui-padrao) .te-sidebar-kicker,:is(.te-seo-home,.te-ui-padrao) .te-sidebar-toc-kicker{font-size:clamp(.95rem,3.2vw,1.05rem)!important;letter-spacing:.09em!important}:is(.te-seo-home,.te-ui-padrao) .te-sidebar-note{font-size:clamp(1.08rem,3.4vw + .45rem,1.18rem)!important;line-height:1.72!important}:is(.te-seo-home,.te-ui-padrao) .te-sidebar-list a{font-size:clamp(1rem,3.1vw,1.1rem)!important;min-height:44px!important}:is(.te-seo-home,.te-ui-padrao) .te-pillar-title{font-size:clamp(.95rem,3.1vw,1.06rem)!important}:is(.te-seo-home,.te-ui-padrao) .te-pillar-text{font-size:clamp(1.04rem,3.2vw,1.14rem)!important;line-height:1.68!important}:is(.te-seo-home,.te-ui-padrao) .te-main-flow .te-cta-button,:is(.te-seo-home,.te-ui-padrao) .te-cta-section .te-cta-button,:is(.te-seo-home,.te-ui-padrao) .te-content-grid .te-cta-button{font-size:clamp(1rem,3.2vw,1.12rem)!important;padding:14px 20px!important}:is(.te-seo-home,.te-ui-padrao) a.te-card-link{font-size:clamp(1rem,3.1vw,1.1rem)!important;padding:12px 18px!important}:is(.te-seo-home,.te-ui-padrao) .te-cta-title{font-size:clamp(1.12rem,3.6vw + .35rem,1.28rem)!important;line-height:1.35!important}:is(.te-seo-home,.te-ui-padrao) .te-pillar-grid{display:none!important}}
.te-whatsapp-container{gap:clamp(18px,6vw,32px)!important;row-gap:clamp(18px,6vw,32px)!important}
.te-whatsapp-badge{background:linear-gradient(135deg,#C62828,#8e1616)!important;color:#fff!important;font-weight:800!important;letter-spacing:.05em!important;border:none!important;border-radius:10px 10px 0 0!important;box-sizing:border-box!important}
#teCapSubmit19.te-hero-form-btn,#te-orcamento-capa #teCapSubmit19{background:linear-gradient(135deg,#E53935,#C62828)!important;color:#fff!important;border:none!important;font-weight:700!important;box-shadow:0 4px 15px rgba(229,57,53,.35)!important}#teCapSubmit19.te-hero-form-btn:hover,#teCapSubmit19.te-hero-form-btn:focus-visible{background:linear-gradient(135deg,#C62828,#b71c1c)!important;color:#fff!important;box-shadow:0 6px 20px rgba(229,57,53,.5)!important;outline:none!important}
.te-whatsapp-container.te-wa-reveal-after-hero:not(.te-wa-past-hero){opacity:0!important;visibility:hidden!important;pointer-events:none!important}.te-whatsapp-container.te-wa-reveal-after-hero{transition:opacity .35s ease,visibility .35s ease}
body.home .te-seo-home .te-first-fold,body .te-ui-padrao .te-first-fold{min-height:0!important;padding-bottom:max(8px,env(safe-area-inset-bottom,0px))!important;justify-content:flex-start!important}body.home .te-seo-home .te-hero-wrapper,body .te-ui-padrao .te-hero-wrapper{padding-bottom:clamp(4px,1vh,12px)!important}body.home .te-seo-home .te-layout,body .te-ui-padrao .te-layout{margin-top:0!important;padding-top:0!important;gap:0!important}body.home .te-seo-home .te-sidebar-cidades,body .te-ui-padrao .te-sidebar-cidades{padding-top:0!important;margin-top:0!important;padding-bottom:clamp(8px,2vw,20px)!important}body.home .te-seo-home .te-main-flow,body .te-ui-padrao .te-main-flow{margin-top:0!important;padding-top:0!important}body.home .te-seo-home .te-main-flow #te-numeros.te-stats-section,body .te-ui-padrao .te-main-flow #te-numeros.te-stats-section{padding-top:0!important;margin-top:0!important}body.home .te-seo-home .te-main-flow #te-fabricamos.te-services-list-section,body .te-ui-padrao .te-main-flow #te-fabricamos.te-services-list-section,body.home .te-seo-home .te-main-flow #te-guia-toldo.te-guia-toldos,body .te-ui-padrao .te-main-flow #te-guia-toldo.te-guia-toldos,body.home .te-seo-home .te-main-flow #te-por-que.te-content-section,body .te-ui-padrao .te-main-flow #te-por-que.te-content-section{padding-top:clamp(22px,3.5vw,38px)!important}body.home .te-seo-home .te-main-flow,body .te-ui-padrao .te-main-flow{background:#000!important}body.home .te-seo-home .te-main-flow #te-numeros.te-stats-section,body .te-ui-padrao .te-main-flow #te-numeros.te-stats-section,body.home .te-seo-home .te-main-flow #te-fabricamos.te-services-list-section,body .te-ui-padrao .te-main-flow #te-fabricamos.te-services-list-section,body.home .te-seo-home .te-main-flow #te-guia-toldo.te-guia-toldos,body .te-ui-padrao .te-main-flow #te-guia-toldo.te-guia-toldos,body.home .te-seo-home .te-main-flow #te-por-que.te-content-section,body .te-ui-padrao .te-main-flow #te-por-que.te-content-section,body.home .te-seo-home .te-main-flow #te-modelos-toldos.te-models-section,body .te-ui-padrao .te-main-flow #te-modelos-toldos.te-models-section,body.home .te-seo-home .te-main-flow #te-faq-toldos.te-faq-section,body .te-ui-padrao .te-main-flow #te-faq-toldos.te-faq-section{background:#000!important;border-top:1px solid rgba(255,255,255,.06)!important}body.home .te-seo-home #te-cidades-atendidas-home.te-home-cidades-pos-modelos,body .te-ui-padrao #te-cidades-atendidas-home.te-home-cidades-pos-modelos,body.home .te-seo-home #te-cidades-atendidas-home,body .te-ui-padrao #te-cidades-atendidas-home{background:#000!important;border-top:1px solid rgba(255,255,255,.06)!important}body.home .te-seo-home .te-main-flow .te-sidebar-inner,body .te-ui-padrao .te-main-flow .te-sidebar-inner{background:#252525!important;border:1px solid rgba(255,255,255,.1)!important;border-radius:18px!important;box-sizing:border-box!important;padding:clamp(8px,1.2vw,14px) clamp(14px,2vw,20px) clamp(14px,2vw,20px)!important}.te-page-modelo-servicos-local .te-servicos-fold-band{width:100%!important;max-width:100%!important;box-sizing:border-box!important}.te-page-modelo-servicos-local .te-servicos-fold-band .te-container{width:100%!important;max-width:100%!important;margin:0!important;padding-left:clamp(12px,4vw,20px)!important;padding-right:clamp(12px,4vw,20px)!important;box-sizing:border-box!important}.te-page-modelo-servicos-local .te-servicos-fold-band .te-sidebar-inner{background:transparent!important;border:none!important;padding:0!important;box-shadow:none!important;border-radius:0!important;width:100%!important;max-width:100%!important;margin:0!important}.te-page-modelo-servicos-local .te-servicos-fold-band .te-servicos-nav-unified{width:100%!important;max-width:100%!important;box-sizing:border-box!important;margin-left:0!important;margin-right:0!important;border:none!important;box-shadow:none!important}body.home .te-seo-home .te-sidebar-cidades .te-sidebar-inner,body .te-ui-padrao .te-sidebar-cidades .te-sidebar-inner{padding-top:clamp(6px,1vw,12px)!important}body.home .te-seo-home .te-main-flow .te-servicos-nav-unified-title,body .te-ui-padrao .te-main-flow .te-servicos-nav-unified-title{color:#ff8a8a!important;-webkit-text-fill-color:#ff8a8a!important;background:none!important;background-image:none!important;-webkit-background-clip:border-box!important;background-clip:border-box!important;text-align:center!important;font-weight:800!important}body.home .te-seo-home .te-main-flow .te-servicos-nav-unified .te-sidebar-toc-list a,body .te-ui-padrao .te-main-flow .te-servicos-nav-unified .te-sidebar-toc-list a,body.home .te-seo-home .te-main-flow .te-sidebar .te-sidebar-toc-list a,body .te-ui-padrao .te-main-flow .te-sidebar .te-sidebar-toc-list a{background:#1a1a1a!important;border:1px solid rgba(255,255,255,.12)!important;border-radius:8px!important;color:#fff!important;font-weight:600!important}body.home .te-seo-home .te-main-flow details.te-toc-mobile .te-toc-list a,body .te-ui-padrao .te-main-flow details.te-toc-mobile .te-toc-list a{background:#1a1a1a!important;border:1px solid rgba(255,255,255,.12)!important;border-radius:8px!important;color:#fff!important}body.home .te-seo-home .te-main-flow h2.te-section-title,body .te-ui-padrao .te-main-flow h2.te-section-title{color:#ff8a8a!important;-webkit-text-fill-color:#ff8a8a!important;background:none!important;background-image:none!important;-webkit-background-clip:border-box!important;background-clip:border-box!important}body.home .te-seo-home #te-fabricamos .te-container,body .te-ui-padrao #te-fabricamos .te-container,body.home .te-seo-home #te-guia-toldo .te-container,body .te-ui-padrao #te-guia-toldo .te-container,body.home .te-seo-home #te-por-que .te-container,body .te-ui-padrao #te-por-que .te-container{background:#252525!important;border:1px solid rgba(255,255,255,.1)!important;border-radius:18px!important;padding:clamp(22px,3.5vw,32px) clamp(18px,3vw,28px)!important;box-sizing:border-box!important}body.home .te-seo-home #te-guia-toldo .te-guia-side-img,body .te-ui-padrao #te-guia-toldo .te-guia-side-img,body.home .te-seo-home #te-por-que .te-por-que-side-img,body .te-ui-padrao #te-por-que .te-por-que-side-img{border-radius:14px!important}body.home .te-seo-home .te-main-flow .te-services-lead,body .te-ui-padrao .te-main-flow .te-services-lead,body.home .te-seo-home .te-main-flow .te-guia-body,body .te-ui-padrao .te-main-flow .te-guia-body,body.home .te-seo-home .te-main-flow .te-guia-body p,body .te-ui-padrao .te-main-flow .te-guia-body p,body.home .te-seo-home .te-main-flow .te-content-text,body .te-ui-padrao .te-main-flow .te-content-text,body.home .te-seo-home .te-main-flow .te-content-text p,body .te-ui-padrao .te-main-flow .te-content-text p{color:#e4e4e4!important}body.home .te-seo-home .te-main-flow .te-content-text strong,body .te-ui-padrao .te-main-flow .te-content-text strong,body.home .te-seo-home .te-main-flow .te-guia-body strong,body .te-ui-padrao .te-main-flow .te-guia-body strong,body.home .te-seo-home .te-main-flow .te-services-lead strong,body .te-ui-padrao .te-main-flow .te-services-lead strong{color:#cc6666!important}body.home .te-seo-home #te-fabricamos .te-services-chips li,body .te-ui-padrao #te-fabricamos .te-services-chips li{background:#1a1a1a!important;border:1px solid rgba(255,255,255,.14)!important;color:#eee!important}body.home .te-seo-home #te-numeros .te-stats-unified-card,body .te-ui-padrao #te-numeros .te-stats-unified-card{background:#252525!important;border:1px solid rgba(255,255,255,.1)!important;border-radius:18px!important}body.home .te-seo-home #te-numeros .te-stats-title-band,body .te-ui-padrao #te-numeros .te-stats-title-band{background:transparent!important;border-bottom:none!important}body.home .te-seo-home #te-numeros .te-stats-unified-title,body .te-ui-padrao #te-numeros .te-stats-unified-title,body.home .te-seo-home #te-numeros .te-stats-intro,body .te-ui-padrao #te-numeros .te-stats-intro{color:#ff8a8a!important;-webkit-text-fill-color:#ff8a8a!important;background:none!important;background-image:none!important;-webkit-background-clip:border-box!important;background-clip:border-box!important}body.home .te-seo-home #te-numeros .te-stat-item,body .te-ui-padrao #te-numeros .te-stat-item{background:#1a1a1a!important;border:1px solid rgba(255,255,255,.12)!important;border-radius:10px!important}body.home .te-seo-home #te-numeros .te-stat-number,body .te-ui-padrao #te-numeros .te-stat-number{color:#f04d4d!important;font-weight:800!important}body.home .te-seo-home #te-numeros .te-stat-label,body .te-ui-padrao #te-numeros .te-stat-label{color:#e8e8e8!important;text-transform:uppercase!important;letter-spacing:.06em!important;font-size:.7rem!important}body.home .te-seo-home #te-modelos-toldos .te-models-grid .te-card,body .te-ui-padrao #te-modelos-toldos .te-models-grid .te-card,body.home .te-seo-home #te-modelos-toldos article.te-card,body .te-ui-padrao #te-modelos-toldos article.te-card,body.home .te-seo-home #te-modelos-toldos .te-card,body .te-ui-padrao #te-modelos-toldos .te-card{background:#252525!important;border:1px solid rgba(255,255,255,.1)!important;border-radius:16px!important;overflow:hidden!important}body.home .te-seo-home #te-modelos-toldos .te-card-title,body .te-ui-padrao #te-modelos-toldos .te-card-title{color:#ff8a8a!important}body.home .te-seo-home .te-main-flow .te-faq-section details,body .te-ui-padrao .te-main-flow .te-faq-section details{background:#2d2d2d!important;border:1px solid rgba(255,255,255,.1)!important;border-radius:12px!important;margin-bottom:12px!important;overflow:hidden!important}body.home .te-seo-home .te-main-flow .te-faq-section summary,body .te-ui-padrao .te-main-flow .te-faq-section summary{font-family:Montserrat,system-ui,sans-serif!important;font-weight:700!important;color:#f0e8e6!important;-webkit-text-fill-color:#f0e8e6!important;background:none!important;background-image:none!important;-webkit-background-clip:border-box!important;background-clip:border-box!important;list-style:none!important;display:flex!important;justify-content:space-between!important;align-items:center!important;gap:12px!important;padding:16px 18px!important;cursor:pointer!important}body.home .te-seo-home .te-main-flow .te-faq-section summary::-webkit-details-marker,body .te-ui-padrao .te-main-flow .te-faq-section summary::-webkit-details-marker{display:none!important}body.home .te-seo-home .te-main-flow .te-faq-section summary::after,body .te-ui-padrao .te-main-flow .te-faq-section summary::after{content:"+"!important;font-size:1.25rem!important;font-weight:800!important;color:#cc6666!important;flex-shrink:0!important;line-height:1!important}body.home .te-seo-home .te-main-flow .te-faq-section details[open] summary::after,body .te-ui-padrao .te-main-flow .te-faq-section details[open] summary::after{content:"\2013"!important}body.home .te-seo-home .te-main-flow .te-faq-section .te-faq-body,body .te-ui-padrao .te-main-flow .te-faq-section .te-faq-body,body.home .te-seo-home .te-main-flow .te-faq-body p,body .te-ui-padrao .te-main-flow .te-faq-body p{color:#d8d8d8!important}body.home .te-seo-home .te-cidades-ddd-wrap,body .te-ui-padrao .te-cidades-ddd-wrap{background:#000!important;background-image:none!important}body.home .te-seo-home .te-cidades-ddd-wrap .te-cidades-ddd-titlebar,body .te-ui-padrao .te-cidades-ddd-wrap .te-cidades-ddd-titlebar{background:#252525!important;border-radius:16px 16px 0 0!important;margin-left:0!important;margin-right:0!important;border-bottom:1px solid rgba(255,255,255,.08)!important}body.home .te-seo-home .te-cidades-ddd-wrap .te-cidades-ddd-heading,body .te-ui-padrao .te-cidades-ddd-wrap .te-cidades-ddd-heading{color:#ff8a8a!important}body.home .te-seo-home .te-dd-tab,body .te-ui-padrao .te-dd-tab{background:#1a1a1a!important;border:1px solid rgba(255,255,255,.14)!important;color:#eee!important}body.home .te-seo-home .te-dd-tab[aria-selected=true],body .te-ui-padrao .te-dd-tab[aria-selected=true]{background:rgba(255,255,255,.95)!important;color:#111!important;border-color:#fff!important}body.home .te-seo-home .te-dd-panels,body .te-ui-padrao .te-dd-panels{background:#2d2d2d!important;border:1px solid rgba(255,255,255,.1)!important}body.home .te-seo-home .te-cta-section,body .te-ui-padrao .te-cta-section{background:#252525!important;border:1px solid rgba(255,255,255,.1)!important;border-radius:18px!important}body.home .te-seo-home .te-main-flow .te-cta-title,body .te-ui-padrao .te-main-flow .te-cta-title{color:#ff8a8a!important;-webkit-text-fill-color:#ff8a8a!important;background:none!important}@media(max-width:767px){body.home .te-seo-home details.te-toc-mobile .te-toc-list,body .te-ui-padrao details.te-toc-mobile .te-toc-list,body.home .te-seo-home .te-main-flow details.te-toc-mobile .te-toc-list,body .te-ui-padrao .te-main-flow details.te-toc-mobile .te-toc-list{display:flex!important;flex-direction:row!important;flex-wrap:nowrap!important;justify-content:center!important;align-items:center!important;gap:8px!important;overflow-x:auto!important;overflow-y:hidden!important;-webkit-overflow-scrolling:touch!important;padding:8px 12px 12px!important;width:100%!important;max-width:100%!important;box-sizing:border-box!important;list-style:none!important;margin:0!important}body.home .te-seo-home details.te-toc-mobile .te-toc-list li,body .te-ui-padrao details.te-toc-mobile .te-toc-list li,body.home .te-seo-home .te-main-flow details.te-toc-mobile .te-toc-list li,body .te-ui-padrao .te-main-flow details.te-toc-mobile .te-toc-list li{width:auto!important;max-width:none!important;flex:0 0 auto!important;margin:0!important}body.home .te-seo-home details.te-toc-mobile .te-toc-list a,body .te-ui-padrao details.te-toc-mobile .te-toc-list a,body.home .te-seo-home .te-main-flow details.te-toc-mobile .te-toc-list a,body .te-ui-padrao .te-main-flow details.te-toc-mobile .te-toc-list a{width:auto!important;max-width:none!important;white-space:nowrap!important;padding:10px 14px!important;min-height:44px!important;box-sizing:border-box!important}}
@media (min-width:768px) and (max-width:1366px){body.home .te-seo-home,body .te-ui-padrao{margin-top:0!important}body.home .te-seo-home .te-first-fold,body .te-ui-padrao .te-first-fold{justify-content:flex-start!important;padding-top:0!important;padding-left:0!important;padding-right:0!important}body.home .te-seo-home .te-hero-wrapper,body .te-ui-padrao .te-hero-wrapper{padding-top:0!important;margin-top:0!important}body.home .elementor-section:has(.te-seo-home),body .elementor-section:has(.te-ui-padrao){padding-top:0!important;margin-top:0!important}body.home .elementor-section:has(.te-seo-home) > .elementor-container,body .elementor-section:has(.te-ui-padrao) > .elementor-container{padding-top:0!important;margin-top:0!important}body.home .elementor-column:has(.te-seo-home) > .elementor-widget-wrap,body .elementor-column:has(.te-ui-padrao) > .elementor-widget-wrap{padding-top:0!important;margin-top:0!important}body.home .elementor-widget-html .elementor-widget-container:has(.te-seo-home),body .elementor-widget-html .elementor-widget-container:has(.te-ui-padrao){padding-top:0!important;margin-top:0!important}body.home .te-seo-home .te-layout,body .te-ui-padrao .te-layout{max-width:100%!important;width:100%!important;box-sizing:border-box!important;padding-left:clamp(14px,3vw,22px)!important;padding-right:clamp(14px,3vw,22px)!important}body.home .elementor-section:has(.te-seo-home) > .elementor-container,body .elementor-section:has(.te-ui-padrao) > .elementor-container{max-width:100%!important;width:100%!important}body.home .elementor-column:has(.te-seo-home),body.home .elementor-column:has(.te-seo-home) > .elementor-widget-wrap,body .elementor-column:has(.te-ui-padrao),body .elementor-column:has(.te-ui-padrao) > .elementor-widget-wrap{max-width:100%!important;width:100%!important}body.home .elementor-25 .elementor-widget-html .elementor-widget-container:has(.te-seo-home),body .elementor-25 .elementor-widget-html .elementor-widget-container:has(.te-ui-padrao){max-width:100%!important;width:100%!important}body.home .te-seo-home #te-fabricamos .te-container,body .te-ui-padrao #te-fabricamos .te-container,body.home .te-seo-home #te-fabricamos:has(.te-fabricamos-grid) .te-container,body .te-ui-padrao #te-fabricamos:has(.te-fabricamos-grid) .te-container,body.home .te-seo-home #te-guia-toldo .te-container,body .te-ui-padrao #te-guia-toldo .te-container,body.home .te-seo-home #te-guia-toldo:has(.te-guia-grid) .te-container,body .te-ui-padrao #te-guia-toldo:has(.te-guia-grid) .te-container,body.home .te-seo-home #te-por-que .te-container,body .te-ui-padrao #te-por-que .te-container,body.home .te-seo-home #te-por-que:has(.te-por-que-grid) .te-container,body .te-ui-padrao #te-por-que:has(.te-por-que-grid) .te-container{max-width:100%!important;width:100%!important;margin-left:0!important;margin-right:0!important}body.home .te-seo-home #te-modelos-toldos .te-container,body .te-ui-padrao #te-modelos-toldos .te-container{max-width:100%!important;width:100%!important;margin-left:0!important;margin-right:0!important}body.home .te-seo-home .te-cidades-ddd-wrap .te-container,body .te-ui-padrao .te-cidades-ddd-wrap .te-container{max-width:100%!important;width:100%!important}body.home .te-seo-home .te-hero .te-container.te-hero-cap-grid,body .te-ui-padrao .te-hero .te-container.te-hero-cap-grid{max-width:100%!important;width:100%!important}}
body.home .te-whatsapp-container,
body.page-template-front-page .te-whatsapp-container,
body.eleg-wa-home .te-whatsapp-container { display:none !important; }
body.eleg-wa-fold .te-whatsapp-container,
body.eleg-at-footer .te-whatsapp-container { opacity:0 !important; visibility:hidden !important; pointer-events:none !important; }
.te-whatsapp-container { transition:opacity .25s ease, visibility .25s ease; }
body:has(:is(.te-seo-home,.te-ui-padrao,.te-page-modelo-servicos-local,.te-page-modelo-vidro)) :is(#content,.site-content,.content-area,main,article,.entry-content,.elementor,.elementor-section-wrap){margin-top:0!important;padding-top:0!important}body .elementor:has(:is(.te-seo-home,.te-ui-padrao,.te-page-modelo-servicos-local,.te-page-modelo-vidro)) > .elementor-element:first-child,body .elementor-section:has(:is(.te-seo-home,.te-ui-padrao,.te-page-modelo-servicos-local,.te-page-modelo-vidro)),body .elementor-column:has(:is(.te-seo-home,.te-ui-padrao,.te-page-modelo-servicos-local,.te-page-modelo-vidro)),body .elementor-widget:has(:is(.te-seo-home,.te-ui-padrao,.te-page-modelo-servicos-local,.te-page-modelo-vidro)),body .elementor-widget-wrap:has(:is(.te-seo-home,.te-ui-padrao,.te-page-modelo-servicos-local,.te-page-modelo-vidro)),body .elementor-widget-container:has(:is(.te-seo-home,.te-ui-padrao,.te-page-modelo-servicos-local,.te-page-modelo-vidro)){margin-top:0!important;padding-top:0!important}:is(.te-seo-home,.te-ui-padrao,.te-page-modelo-servicos-local,.te-page-modelo-vidro),:is(.te-seo-home,.te-ui-padrao,.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-first-fold,:is(.te-seo-home,.te-ui-padrao,.te-page-modelo-servicos-local,.te-page-modelo-vidro) .te-hero-wrapper{margin-top:0!important;padding-top:0!important}
body.post-type-archive-blog #content,
body.post-type-archive-glossario #content,
body.single-blog #content,
body.single-glossario #content,
body.ast-custom-post-type #content,
body.post-type-archive-blog .site-content,
body.post-type-archive-glossario .site-content,
body.single-blog .site-content,
body.single-glossario .site-content,
body.ast-custom-post-type .site-content,
body.post-type-archive-blog .ast-container,
body.post-type-archive-glossario .ast-container,
body.single-blog .ast-container,
body.single-glossario .ast-container,
body.ast-custom-post-type .ast-container,
body.post-type-archive-blog .content-area,
body.post-type-archive-glossario .content-area,
body.single-blog .content-area,
body.single-glossario .content-area,
body.ast-custom-post-type .content-area,
body.post-type-archive-blog article,
body.post-type-archive-glossario article,
body.single-blog article,
body.single-glossario article,
body.ast-custom-post-type article,
body.post-type-archive-blog .entry-content,
body.post-type-archive-glossario .entry-content,
body.single-blog .entry-content,
body.single-glossario .entry-content,
body.ast-custom-post-type .entry-content{margin-top:0!important;padding-top:0!important}
body.post-type-archive-blog .elegarch,
body.post-type-archive-glossario .elegarch,
body.single-blog .ebv3,
body.single-glossario .ebv3{margin-top:0!important;padding-top:0!important}
body.single-blog .ebv3 .shell,
body.single-glossario .ebv3 .shell{padding-top:0!important}
body.single-blog .ebv3 .herowrap,
body.single-glossario .ebv3 .herowrap{min-height:0!important;align-items:flex-start!important;margin-top:0!important;margin-bottom:32px!important;padding-top:0!important}
body.post-type-archive-blog .elegarch .hero{margin-top:0!important;padding-top:38px!important}
body.post-type-archive-glossario .elegarch .hero{margin-top:0!important;padding-top:36px!important}
body.ast-custom-post-type .te-ui-padrao,
body.ast-custom-post-type .te-seo-home,
body.ast-custom-post-type .te-page-modelo-servicos-local,
body.ast-custom-post-type .te-page-modelo-vidro,
body.ast-custom-post-type .te-first-fold,
body.ast-custom-post-type .te-hero-wrapper,
body.ast-custom-post-type .te-hero{margin-top:0!important;padding-top:0!important}
body.ast-custom-post-type .elementor-section-wrap > .elementor-section:first-child,
body.ast-custom-post-type .elementor-widget-wrap > .elementor-element:first-child,
body.ast-custom-post-type .elementor-widget-html:first-child,
body.ast-custom-post-type .elementor-widget-container:first-child{margin-top:0!important;padding-top:0!important}
@media(max-width:767px){
 body.single-blog .ebv3 .herowrap,
 body.single-glossario .ebv3 .herowrap{margin-bottom:20px!important}
 body.post-type-archive-blog .elegarch .hero,
 body.post-type-archive-glossario .elegarch .hero{padding-top:24px!important}
}
@media (max-width: 768px) {
        .e-con, .e-con-boxed, .e-con-full, .elementor-element.e-con {
            --container-max-width: 100% !important;
            max-width: 100% !important;
            width: 100% !important;
        }
        .e-con-inner, .elementor-container {
            max-width: 100% !important;
            width: 100% !important;
        }
        .container-padrao {
            max-width: 100% !important;
            width: 100% !important;
            padding-left: 10px !important;
            padding-right: 10px !important;
        }
        .ast-container, .site-content .ast-container {
            max-width: 100% !important;
        }
    }
.whatsapp-buttons{position:fixed!important;bottom:15px!important;right:10px!important;display:flex!important;flex-direction:column!important;gap:8px!important;z-index:9999!important}
.whatsapp-btn{width:150px!important;height:40px!important;padding:0!important;box-sizing:border-box!important;border-radius:20px!important;font-size:14px!important}
.whatsapp-btn .whatsapp-icon{width:18px!important;height:18px!important}
#acc-widget-btn{position:fixed!important;bottom:111px!important;right:10px!important;width:150px!important;height:40px!important;border-radius:20px!important;padding:0!important}
#acc-widget-btn img{width:28px!important;height:28px!important}
@media(max-width:1024px){
#acc-widget-btn{width:150px!important;height:40px!important;right:10px!important;bottom:111px!important;border-radius:20px!important;padding:0!important}
#acc-widget-btn img{width:28px!important;height:28px!important}
}
@media(max-width:768px){
.whatsapp-buttons{bottom:12px!important;right:8px!important;gap:6px!important}
.whatsapp-btn{width:130px!important;height:34px!important;font-size:12px!important}
.whatsapp-btn .whatsapp-icon{width:16px!important;height:16px!important}
#acc-widget-btn{bottom:92px!important;right:8px!important;width:130px!important;height:34px!important;border-radius:17px!important;padding:0!important}
#acc-widget-btn img{width:24px!important;height:24px!important}
}
@media(max-width:600px){
#acc-widget-btn{width:130px!important;height:34px!important;right:8px!important;bottom:92px!important;border-radius:17px!important;padding:0!important}
#acc-widget-btn img{width:24px!important;height:24px!important}
}
@media(max-width:480px){
.whatsapp-buttons{bottom:8px!important;right:5px!important;gap:5px!important}
.whatsapp-btn{width:120px!important;height:32px!important;font-size:11px!important}
.whatsapp-btn .whatsapp-icon{width:14px!important;height:14px!important}
#acc-widget-btn{bottom:83px!important;right:5px!important;width:120px!important;height:32px!important;border-radius:16px!important;padding:0!important}
#acc-widget-btn img{width:22px!important;height:22px!important}
}
@media(max-width:400px){
#acc-widget-btn{width:120px!important;height:32px!important;right:5px!important;bottom:83px!important;border-radius:16px!important;padding:0!important}
#acc-widget-btn img{width:22px!important;height:22px!important}
}
