.elementor-486 .elementor-element.elementor-element-397172d{--display:flex;}.elementor-486 .elementor-element.elementor-element-397172d.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-486 .elementor-element.elementor-element-f3276dc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-486 .elementor-element.elementor-element-a93ed90{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-486 .elementor-element.elementor-element-397172d{--width:85.341%;}}/* Start custom CSS for html, class: .elementor-element-bf13ba1 *//* CSS Otimizado para Elementor (Variáveis CSS removidas e substituídas por valores literais) */

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #212529;
    background-color: #f8f9fa;
}

a {
    text-decoration: none;
    color: #0066cc;
    transition: color 0.3s;
}

a:hover {
    color: #212529;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    color: #212529;
}

h1 span {
    color: #0066cc;
}

h2 {
    font-size: 2.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.section-title span {
    color: #0066cc;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.section-badge {
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0066cc;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50px;
    text-transform: uppercase;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #0066cc;
    color: #ffffff;
    border-color: #0066cc;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #25d366;
    color: #ffffff;
    border-color: #25d366;
}

.btn-secondary:hover {
    background-color: #1e7e34;
    border-color: #1e7e34;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #0066cc;
    border-color: #0066cc;
}

.btn-outline:hover {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn i {
    margin-right: 8px;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: #212529;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #0066cc;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0066cc;
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #212529;
    margin: 5px 0;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background-color: #f8f9fa;
    padding: 80px 0;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    margin: 10px 0 20px;
    font-size: 3.8rem;
    font-weight: 800;
}

.hero h2 {
    font-size: 1.8rem;
    color: #6c757d;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-feature {
    font-weight: 600;
    color: #212529;
}

.hero-feature i {
    color: #25d366;
    margin-right: 8px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-trust span {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

.hero-trust i {
    color: #0066cc;
    margin-right: 5px;
}

.hero-image-container {
    flex: 1;
    position: relative;
    text-align: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Animações */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Marcas Section */
.marcas {
    padding: 40px 0;
    background-color: #ffffff;
}

.marcas-slider {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 0.7;
}

.marca-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 120px;
}

.marca-item img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s, opacity 0.3s;
}

.marca-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Sobre Section */
.sobre {
    padding: 80px 0;
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.sobre-text {
    flex: 1;
}

.sobre-image {
    flex: 1;
    text-align: center;
}

.sobre-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sobre-stats {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066cc;
    display: inline-block;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 800;
    color: #0066cc;
    vertical-align: top;
    margin-left: -5px;
}

.stat-text {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 600;
}

/* Diferenciais Section */
.diferenciais {
    padding: 80px 0;
    background-color: #f1f7fe;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Regra para 4 colunas em telas grandes (Desktop) */
.cards-grid-4-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.2);
}

.card-icon {
    font-size: 3rem;
    color: #0066cc;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.card p {
    color: #6c757d;
    margin-bottom: 15px;
}

.card-link {
    font-weight: 600;
    display: inline-block;
    color: #0066cc;
}

.card-link i {
    margin-left: 5px;
    transition: margin-left 0.3s;
}

.card-link:hover i {
    margin-left: 10px;
}

/* Unidades Section */
.unidades,
.elementor-section.unidades {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.unidades-container,
.elementor-container.unidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.unidade-card,
.elementor-widget-container.unidade-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    transition: transform 0.3s;
}

.unidade-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ver-mais-container {
    text-align: center;
    margin-top: 30px;
}

.ver-mais-container .btn {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ver-mais-container .btn i {
    transition: transform 0.3s ease;
}

.ver-mais-container .btn:hover i {
    transform: translateX(5px);
}

.unidade-card.featured {
    border: 3px solid #0066cc;
}

.unidade-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.unidade-card .badge.new {
    background-color: #25d366;
    color: #ffffff;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 5px;
    margin-left: 10px;
}

.unidade-card p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.unidade-card i {
    color: #0066cc;
    margin-right: 10px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    z-index: 10;
}

.slider-btn {
    background-color: #0066cc;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background-color: #0056b3;
}

.slider-btn i {
    font-size: 1.2rem;
}

/* Responsividade para o carrossel de unidades */
@media (max-width: 992px) {
    .unidade-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .unidade-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

/* Estilo para a seção Por Que Escolher - Compatível com Elementor */
.why-choose .cards-container,
.elementor-section.why-choose .elementor-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Estilos para carrossel do Elementor */
.elementor-widget-image-carousel .swiper-container {
    overflow: visible !important;
}

.elementor-widget-image-carousel .swiper-slide {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s;
}

.elementor-widget-image-carousel .swiper-slide:hover {
    transform: translateY(-5px);
}

.elementor-widget-image-carousel .swiper-pagination-bullet {
    background-color: #0066cc;
}

.elementor-widget-image-carousel .swiper-button-next,
.elementor-widget-image-carousel .swiper-button-prev {
    background-color: #0066cc;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .why-choose .cards-container,
    .elementor-section.why-choose .elementor-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-choose .cards-container,
    .elementor-section.why-choose .elementor-container {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #00d4ff 0%, #00b8e6 100%);
    position: relative;
}

.faq .section-title {
    color: #212529;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    font-size: 1rem;
    color: #0066cc;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    color: #6c757d;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Depoimentos Section */
.depoimentos {
    padding: 80px 0;
    background-color: #f1f7fe;
    text-align: center;
}

.depoimentos-slider {
    display: flex;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    margin-bottom: 20px;
    position: relative;
}

.depoimento-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 15px;
}

.depoimento-stars i {
    color: gold;
    margin-bottom: 15px;
}

.depoimento-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.depoimento-author {
    margin-top: 15px;
}

.author-name {
    font-weight: 700;
    display: block;
}

.author-title {
    font-size: 0.9rem;
    color: #6c757d;
}

.slider-controls button {
    background: #0066cc;
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-controls button:hover {
    background: #212529;
}

/* CTA Section */
.cta {
    background-color: #0066cc;
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 2rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Contato Section */
.contato {
    padding: 80px 0;
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contato-form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contato-form h3 {
    margin-bottom: 20px;
    color: #0066cc;
}

.form-group {
    margin-bottom: 15px;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.contato-form textarea {
    resize: vertical;
}

.form-feedback {
    margin-top: 10px;
    font-weight: 600;
    color: #25d366;
}

.contato-info {
    padding: 30px 0;
}

.info-card {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: #0066cc;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #212529;
}

.info-item p {
    color: #6c757d;
}

.map-link {
    font-size: 0.9rem;
    font-weight: 600;
}

.social-media-container h4 {
    margin-bottom: 15px;
    color: #212529;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    transition: transform 0.3s;
}

.social-btn:hover {
    transform: translateY(-3px);
    color: #ffffff;
}

.social-btn i {
    font-size: 1.2rem;
}

.instagram {
    background: #E1306C;
}

.facebook {
    background: #3b5998;
}

.youtube {
    background: #FF0000;
}

/* Footer */
.footer {
    background-color: #212529;
    color: #ffffff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-logo .social-media {
    display: flex;
    gap: 10px;
}

.footer-logo .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.footer-logo .social-icon:hover {
    background-color: #0066cc;
    color: #ffffff;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #0066cc;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links a,
.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: block;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact i {
    color: #0066cc;
    margin-right: 10px;
}

.footer-newsletter form {
    display: flex;
    margin-top: 15px;
}

.footer-newsletter input {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    width: 70%;
}

.footer-newsletter button {
    border-radius: 0 5px 5px 0;
    width: 30%;
    padding: 10px;
    border: none;
    background-color: #0066cc;
    color: #ffffff;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #0066cc;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    line-height: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 1200px) {
    .cards-grid-4-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image-container {
        order: 1;
        margin-bottom: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .sobre-content {
        flex-direction: column;
    }

    .sobre-image {
        order: 1;
        margin-bottom: 30px;
    }

    .sobre-text {
        order: 2;
        text-align: center;
    }

    .sobre-stats {
        justify-content: space-around;
        gap: 10px;
    }

    .contato-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cards-grid-4-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #212529;
        opacity: 0.95;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%);
    }

    .nav-menu.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu li {
        margin: 20px 0;
    }

    .nav-menu a {
        color: #ffffff;
        font-size: 1.5rem;
    }

    .nav-menu a::after {
        background-color: #ffffff;
    }

    .header-buttons .btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-newsletter form {
        justify-content: center;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}/* End custom CSS */