.elementor-175 .elementor-element.elementor-element-4ef71dc1{--display:flex;}.elementor-175 .elementor-element.elementor-element-4ef71dc1:not(.elementor-motion-effects-element-type-background), .elementor-175 .elementor-element.elementor-element-4ef71dc1 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}.elementor-175 .elementor-element.elementor-element-0b955ea{--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-175 .elementor-element.elementor-element-8ae10cb{--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-175 .elementor-element.elementor-element-e28670d{--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-175 .elementor-element.elementor-element-a0b25eb{--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-175 .elementor-element.elementor-element-7541675{--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-175 .elementor-element.elementor-element-6308bb8{--display:flex;}/* Start custom CSS for html, class: .elementor-element-725a7c2a *//* Container Principal do Header */
.adv-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    background-color: transparent;
    font-family: "Helvetica", "Arial", sans-serif;
    position: relative;
}

/* --- Estilos do Logo --- */
.adv-logo img {
    max-height: 45px;
    width: auto;
    display: block;
}

/* --- Estilos do Menu --- */
.adv-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.adv-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.adv-nav a:hover {
    color: #cccccc;
}

/* --- Estilos do Botão (CTA) --- */
.adv-btn {
    background-color: #ffffff;
    color: #c92c2c;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.adv-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* --- Botão Hambúrguer (escondido no desktop) --- */
.adv-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.adv-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* --- Responsividade Mobile --- */
@media (max-width: 900px) {
    
    /* Header fixo no topo */
    .adv-header-wrapper {
        position: sticky;
        top: 0;
        width: 100%;
        padding: 12px 20px;
        background-color: transparent;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        box-sizing: border-box;
        z-index: 1000;
        flex-wrap: wrap;
    }

    /* Logo e hambúrguer na mesma linha */
    .adv-logo {
        order: 1;
    }

    .adv-menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    /* Logo menor */
    .adv-logo img {
        max-height: 32px;
    }

    /* Menu começa escondido (dropdown) */
    .adv-nav {
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        background-color: #ffffff;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 10px 15px rgba(0,0,0,0);
    }

    /* Quando o menu está aberto */
    .menu-open .adv-nav {
        max-height: 500px;
        padding: 10px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        margin-top: 10px;
    }

    /* Links empilhados verticalmente */
    .adv-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .adv-nav li {
        width: 100%;
        border-bottom: 1px solid #f5f5f5;
    }

    .adv-nav li:last-child {
        border-bottom: none;
    }

    .adv-nav a {
        display: block;
        padding: 15px 20px;
        color: #2a2d5b;
        font-size: 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .adv-nav a:hover {
        background-color: rgba(0, 0, 0, 0.05);
        color: #2a2d5b;
    }

    /* CTA abaixo do menu */
    .adv-cta {
        order: 4;
        width: 100%;
        display: none; /* esconde por padrão */
        justify-content: center;
        margin-top: 10px;
    }

    /* Mostra o CTA quando o menu está aberto */
    .menu-open .adv-cta {
        display: flex;
    }

    .adv-btn {
        padding: 12px 32px;
        font-size: 15px;
        width: auto;
        max-width: 280px;
    }

    /* Animação do ícone hambúrguer → X */
    .menu-open .adv-menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-open .adv-menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    .menu-open .adv-menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .adv-header-wrapper {
        padding: 10px 16px;
    }
    
    .adv-logo img {
        max-height: 28px;
    }
    
    .adv-nav a {
        font-size: 15px;
        padding: 13px 18px;
    }
    
    .adv-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d0f55e3 *//* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* ========== SCROLL SUAVE ========== */
html {
    scroll-behavior: smooth;
}

/* Ajuste para compensar header fixo (se tiveres) */
#funcionalidades-section {
    scroll-margin-top: 80px; /* Ajusta conforme a altura do teu header */
}

.banner-area {
    background-color: #008CCC;
    color: #ffffff;
    min-height: 400px;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.content-container {
    max-width: 800px;
    z-index: 2;
    position: relative;
}

/* Tipografia */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.9;
}

p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 650px;
}

/* Botão "Saiba mais" */
.btn-cta {
    display: inline-block;
    background-color: #ffffff;
    color: #D32F2F;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 40px;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* --- Elementos Decorativos de Fundo --- */
.bg-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    z-index: 1;
}

.shape-top-left {
    top: -100px;
    left: -100px;
    transform: rotate(45deg);
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 100, 160, 0.4),
        rgba(0, 100, 160, 0.4) 40px,
        transparent 40px,
        transparent 80px
    );
    opacity: 0.5;
}

.shape-bottom-right {
    bottom: -100px;
    right: -100px;
    transform: rotate(20deg);
    background: repeating-linear-gradient(
        -45deg,
        rgba(0, 100, 160, 0.4),
        rgba(0, 100, 160, 0.4) 40px,
        transparent 40px,
        transparent 80px
    );
    opacity: 0.5;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    .btn-cta {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
    
    .bg-shape {
        width: 200px;
        height: 200px;
    }
}/* End custom CSS */
/* Start custom CSS for global, class: .elementor-global-264 *//* Container Principal da Newsletter */
.advance-newsletter-box {
    position: relative;
    /* Imagem de fundo + Gradiente Azul (da esquerda para direita) */
    /* Ajuste a URL abaixo com a sua imagem */
    background: linear-gradient(90deg, #0089cf 30%, rgba(0,137,207,0.85) 55%, rgba(0,137,207,0) 100%), 
                url('https://advancestation.pt/wp-content/uploads/2025/12/Frame-91.png');
    background-size: cover;
    background-position: center;
    height: 450px; /* Altura do banner */
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    border-radius: 4px;
    overflow: hidden;
    font-family: sans-serif;
}

/* Área do conteúdo (Texto e Formulário) */
.advance-newsletter-content {
    width: 100%;
    max-width: 550px; /* Limita a largura do texto */
    padding-left: 60px; /* Espaço da esquerda */
    padding-right: 20px;
    z-index: 2;
}

/* Título */
.advance-newsletter-content h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Subtítulo "Subscreva a nossa newsletter" */
.advance-newsletter-content p {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Estilo dos campos do formulário */
.advance-form-visual {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaço entre o campo de email e o botão */
    max-width: 400px;
}

/* Campo de Email */
.advance-form-visual input[type="email"] {
    width: 100%;
    padding: 15px 25px;
    border-radius: 50px; /* Borda redonda estilo cápsula */
    border: none;
    font-size: 16px;
    outline: none;
    color: #333;
}

/* Botão Vermelho */
.advance-form-visual button {
    width: 100%;
    padding: 15px 25px;
    border-radius: 50px; /* Borda redonda estilo cápsula */
    border: none;
    background-color: #d61a22; /* Vermelho vivo */
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.advance-form-visual button:hover {
    background-color: #b01218; /* Vermelho mais escuro ao passar o mouse */
}

/* Responsividade para Celulares */
@media (max-width: 768px) {
    .advance-newsletter-box {
        background: #0089cf; /* Fundo azul sólido no celular para leitura fácil */
        height: auto;
        padding: 40px 20px;
    }
    
    .advance-newsletter-content {
        padding-left: 0;
        text-align: center;
        margin: 0 auto;
    }
    
    .advance-newsletter-content h2 {
        font-size: 24px;
    }
}/* End custom CSS */