/* =======================================================
   SUCURI CMS - TEMPLATE GLASS V2.3
   Design Moderno com Glassmorphism + Contraste Otimizado
   ======================================================= */

:root {
    --primary-color: #5e72e4;
    --secondary-color: #32325d;
    --bg-main: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #32325d;
    --text-secondary: #525f7f;
    --text-light: #ffffff;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 10px rgba(0,0,0,.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,.12);
    --shadow-glass: 0 8px 32px rgba(0,0,0,.1);
    --font-family: 'Open Sans', sans-serif;
    --transition: 0.3s ease;

    /* Glassmorphism - V2.3 MELHORADO */
    --glass-bg: rgba(255,255,255,0.25);
    --glass-bg-header: rgba(255,255,255,0.35);
    --glass-border: rgba(255,255,255,0.3);
    --glass-blur: blur(15px);
    --glass-blur-strong: blur(20px);

    /* Text shadows para contraste */
    --text-shadow-light: 0 2px 8px rgba(0,0,0,0.3);
    --text-shadow-strong: 0 2px 12px rgba(0,0,0,0.6), 0 0 20px rgba(0,0,0,0.4);
    --text-shadow-header: 0 1px 3px rgba(0,0,0,0.2);
}

/* ============================================================
   RESET E BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: var(--bg-main) !important;
    color: var(--text-secondary) !important;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none !important;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color) !important;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary) !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
}

h1 { font-size: 2.5rem !important; }
h2 { font-size: 2.2rem !important; }
h3 { font-size: 1.8rem !important; }
h4 { font-size: 1.5rem !important; }
h5 { font-size: 1.2rem !important; }
h6 { font-size: 1rem !important; }

p {
    color: var(--text-secondary) !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
    margin-bottom: 1rem;
}

/* ============================================================
   LISTAS
   ============================================================ */
ul, ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

/* ============================================================
   HEADER - GLASS EFFECT V2.3 - CONTRASTE OTIMIZADO
   ============================================================ */
.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(var(--primary-rgb, 94, 114, 228), 0.08),
        rgba(var(--secondary-rgb, 50, 50, 93), 0.08)
    );
    pointer-events: none;
}

/* Fundo extra para garantir contraste sobre qualquer imagem */
.site-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(var(--bg-main-rgb, 255, 255, 255), 0.3) 0%,
        rgba(var(--bg-main-rgb, 255, 255, 255), 0.15) 100%
    );
    pointer-events: none;
    z-index: -1;
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-branding img,
.site-logo {
    max-height: 50px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.site-branding img:hover,
.site-logo:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.site-branding h1 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-shadow: var(--text-shadow-header);
    font-weight: 700;
}

/* Menu Desktop - V2.3 COM TEXT-SHADOW */
.site-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-nav a {
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    text-shadow: var(--text-shadow-header);
}

.site-nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(var(--primary-rgb, 94, 114, 228), 0.1),
        rgba(var(--primary-rgb, 94, 114, 228), 0.05)
    );
    opacity: 0;
    transition: var(--transition);
}

.site-nav a:hover::before,
.site-nav a.active::before {
    opacity: 1;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* ============================================================
   MENU MOBILE - GLASS
   ============================================================ */
.menu-toggle {
    display: none;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: rgba(var(--primary-rgb, 94, 114, 228), 0.15);
    transform: scale(1.05);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    width: 100%;
    padding: 1rem 0;
    border-top: 1px solid var(--glass-border);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-glass);
}

.mobile-nav a {
    padding: 0.75rem 1.5rem;
    color: var(--text-primary) !important;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
    text-shadow: var(--text-shadow-header);
    font-weight: 500;
}

.mobile-nav a:hover {
    background: rgba(var(--primary-rgb, 94, 114, 228), 0.1);
    color: var(--primary-color) !important;
}

.mobile-nav.open {
    display: flex;
}

@media (max-width: 991px) {
    .site-nav {
        display: none !important;
    }
    .menu-toggle {
        display: block;
    }
}

/* ============================================================
   HERO SECTION - GRADIENT + GLASS
   ============================================================ */
.hero-slider,
.hero-slide {
    width: 100% !important;
    min-height: 600px !important;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    color: #fff;
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove limitações do container Bootstrap */
.hero-slider .container,
.hero-slide .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.5)
    );
}

/* Elemento Glass no Hero */
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(var(--primary-rgb, 94, 114, 228), 0.15) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 120px 20px;
}

.hero-title {
    font-size: 3.2rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 1.5rem !important;
    text-shadow: var(--text-shadow-strong);
    /* Removido gradient clip para melhor legibilidade */
}

.hero-subtitle {
    font-size: 1.4rem !important;
    color: rgba(255, 255, 255, 0.98) !important;
    margin-bottom: 2rem !important;
    text-shadow: var(--text-shadow-light);
    font-weight: 400;
}

/* ============================================================
   SEÇÕES GENÉRICAS
   ============================================================ */
section,
.section,
.pb-block,
.pb-section,
.text-section,
.clients-section,
.testimonials-section,
.newsletter-section,
.cta-section {
    padding: 80px 20px !important;
    margin: 0 !important;
    background: unset !important;
    position: relative;
}

/* Container interno das seções */
section .container,
.section .container,
.pb-block .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--text-primary) !important;
    margin-bottom: 2rem !important;
    text-align: center;
    position: relative;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,
        var(--primary-color),
        transparent
    );
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(var(--primary-rgb, 94, 114, 228), 0.3);
}

.section-subtitle {
    font-size: 1.2rem !important;
    color: var(--text-secondary) !important;
    text-align: center;
    margin-bottom: 3rem !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* ============================================================
   BOTÕES - GLASS + GRADIENT
   ============================================================ */
.btn,
.btn-primary,
button.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg,
        var(--primary-color),
        rgba(var(--primary-rgb, 94, 114, 228), 0.8)
    ) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb, 94, 114, 228), 0.3);
}

.btn::before,
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.2),
        transparent
    );
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::before,
.btn-primary:hover::before {
    opacity: 1;
}

.btn:hover,
.btn-primary:hover {
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(var(--primary-rgb, 94, 114, 228), 0.4);
}

.btn-secondary {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur);
    color: var(--text-primary) !important;
    border: 1px solid var(--glass-border) !important;
}

.btn-secondary:hover {
    background: rgba(var(--primary-rgb, 94, 114, 228), 0.1) !important;
}

/* ============================================================
   CARDS - GLASSMORPHISM
   ============================================================ */
.card,
.product-card,
.blog-card,
.service-card {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border) !important;
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-glass);
    height: 100%;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.card::before,
.product-card::before,
.blog-card::before,
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        var(--primary-color),
        transparent
    );
    opacity: 0;
    transition: var(--transition);
}

.card:hover::before,
.product-card:hover::before,
.blog-card:hover::before,
.service-card:hover::before {
    opacity: 1;
}

.card:hover,
.product-card:hover,
.blog-card:hover,
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,.15);
    border-color: rgba(var(--primary-rgb, 94, 114, 228), 0.3) !important;
}

.card-body {
    padding: 1rem;
}

.card-title {
    color: var(--text-primary) !important;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-secondary) !important;
}

/* ============================================================
   PRODUTOS
   ============================================================ */
.product-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-title {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    margin-bottom: 0.5rem !important;
}

.product-price {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg,
        var(--primary-color),
        rgba(var(--primary-rgb, 94, 114, 228), 0.7)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-description {
    color: var(--text-secondary) !important;
    margin-bottom: 1rem;
}

/* ============================================================
   GRID BOOTSTRAP OVERRIDES
   ============================================================ */
.row {
    margin-right: -15px;
    margin-left: -15px;
}

[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

/* ============================================================
   FOOTER - GLASS
   ============================================================ */
.site-footer,
.theme-footer {
    background: linear-gradient(135deg,
        var(--secondary-color),
        rgba(var(--secondary-rgb, 50, 50, 93), 0.9)
    ) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 80px 20px 40px !important;
    margin-top: 0 !important;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 20% 80%,
        rgba(var(--primary-rgb, 94, 114, 228), 0.1) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.site-footer h5,
.site-footer h6 {
    color: #fff !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    transition: var(--transition);
}

.site-footer a:hover {
    color: #fff !important;
    transform: translateX(3px);
}

.site-footer .site-logo {
    max-height: 60px;
    margin-bottom: 1rem;
}

/* Logo Fábrica de Sites - CORRIGIDO */
.site-footer a[href*="fdsites"] img {
    max-width: 130px !important;
    max-height: 42px !important;
    width: auto !important;
    height: auto !important;
    opacity: 0.8;
    transition: var(--transition);
}

.site-footer a[href*="fdsites"]:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.site-footer p,
.site-footer li {
    color: rgba(255, 255, 255, 0.8) !important;
}

.site-footer ul {
    list-style: none;
    padding-left: 0;
}

.site-footer li {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: var(--transition);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
}

.social-links a i {
    color: rgba(255, 255, 255, 0.8);
}

.social-links a:hover {
    background: rgba(var(--primary-rgb, 94, 114, 228), 0.2);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb, 94, 114, 228), 0.3);
}

.social-links a:hover i {
    color: var(--primary-color) !important;
}

/* ============================================================
   WHATSAPP FLUTUANTE - GLASS
   ============================================================ */
#whatsappFloating {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.2);
}

#whatsappFloating::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    filter: blur(8px);
    opacity: 0.5;
    z-index: -1;
    transition: var(--transition);
}

#whatsappFloating:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

#whatsappFloating:hover::before {
    opacity: 0.8;
}

#whatsappFloating a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#whatsappFloating i {
    color: #fff !important;
    font-size: 30px;
}

/* ============================================================
   FORMULÁRIOS - GLASS
   ============================================================ */
.form-control {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.75rem;
    border-radius: 8px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 94, 114, 228), 0.15);
    background: rgba(var(--primary-rgb, 94, 114, 228), 0.05);
}

.form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* ============================================================
   AJUSTES PÁGINAS INTERNAS
   ============================================================ */

.page-home .site-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

.d-flex { display: flex !important; }
.d-block { display: block !important; }
.d-inline-block { display: inline-block !important; }

.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-center { align-items: center !important; }

.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    section,
    .section,
    .pb-block,
    .pb-section {
        padding: 50px 15px !important;
    }

    .site-header {
        padding: 0.75rem 0;
    }

    .hero-content {
        padding: 80px 15px;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem !important;
    }

    .section-title {
        font-size: 1.5rem !important;
    }

    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.75rem !important; }
    h3 { font-size: 1.5rem !important; }
}

/* Header sempre legível sobre banners escuros */
.site-header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.15)
    );
    backdrop-filter: blur(6px);
}

/* Logo / nome */
.site-header .site-branding a,
.site-header .site-branding h1 {
    color: #ffffff !important;
}

/* Menu */
.site-header .site-nav a {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 600;
}

.site-header .site-nav a:hover,
.site-header .site-nav a.active {
    color: #ffffff !important;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
}

.hero-slide::before,
.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.35)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: #ffffff !important;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-subtitle {
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content .btn-primary {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
}

.hero-content .btn-primary:hover {
    filter: brightness(1.05);
}



.hero-slider,
.hero-slide {
    opacity: 1 !important;
    filter: none !important;
}


.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.35)
    );
    z-index: 1;
}

.hero-content,
.hero-content * {
    position: relative;
    z-index: 2;
    color: #ffffff !important;
    opacity: 1 !important;
}

/* =====================================================
   HEADER FIXO (REFERÊNCIA ÚNICA)
   ===================================================== */

:root {
    --header-height: 90px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 9999;
}

    background: var(--glass-bg-header);
    backdrop-filter: var(--glass-blur-strong);
    -webkit-backdrop-filter: var(--glass-blur-strong);

    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
}

/* O body compensa o header fixo */
body {
    padding-top: var(--header-height, 90px);
}

/* =====================================================
   PAGE BANNER — CONTROLE REAL DO TOPO
   ===================================================== */

.page-banner,
.page_banner {
    position: relative;
    min-height: 280px;

    /* !important garante override do padding inline do renderer */
    padding-top: calc(var(--header-height, 90px) + 50px) !important;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;

    color: #ffffff;
    overflow: hidden;
}

/* FUNDO COM COR PRIMÁRIA */
.page-banner::before,
.page_banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    background: linear-gradient(
        90deg,
        var(--primary-color) 0%,
        color-mix(in srgb, var(--primary-color) 60%, #ffffff 40%) 100%
    );
}

/* OVERLAY LEVE */
.page-banner::after,
.page_banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        rgba(0,0,0,0.18),
        rgba(0,0,0,0.08)
    );
}

/* TEXTO ACIMA DE TUDO */
.page-banner *,
.page_banner * {
    position: relative;
    z-index: 2;
    color: #ffffff !important;
}

/* REMOVE QUALQUER EMPURRÃO DO BOOTSTRAP */
.page-banner h1,
.page_banner h1 {
    margin-top: 0 !important;
}
