:root {
  --h-blue-dark: var(--cor_primaria, #0e2860);
  --h-blue-light: #e6f0ff;
  --h-blue-brand: #1a56db;
  --h-text-primary: #111827;
  --h-text-secondary: #4b5563;
  --h-text-white: #ffffff;
  --h-gray-border: #e5e7eb;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--h-text-primary);
}

.text-left { text-align: left; }



.h-hero-section {
    background-color: var(--h-blue-dark);
    /* subtle grid background if possible, or just solid */
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    padding-bottom: 240px;
    position: relative;
}

.h-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.h-navbar-sticky {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.h-navbar-sticky .h-logo, 
.h-navbar-sticky .h-nav-links a,
.h-navbar-sticky .btn-icon,
.h-navbar-sticky .h-logo-text strong {
    color: var(--h-text-primary) !important;
}
.h-navbar-sticky .h-logo:hover, 
.h-navbar-sticky .h-nav-links a:hover,
.h-navbar-sticky .btn-icon:hover {
    color: var(--h-blue-brand) !important;
}
.h-navbar-sticky .h-logo-icon {
    background: var(--h-blue-brand);
    color: white !important;
}
.h-navbar-sticky .h-logo-text span {
    color: var(--h-text-secondary) !important;
}
.h-navbar-sticky .btn-whatsapp-outline {
    border-color: var(--h-blue-brand);
    color: var(--h-blue-brand) !important;
}
.h-navbar-sticky .btn-whatsapp-outline:hover {
    background: var(--h-blue-brand);
    color: white !important;
}
.h-navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.h-logo {
    display: flex;
    align-items: center;
    color: var(--h-text-white);
    text-decoration: none;
    gap: 12px;
}
.h-logo img{
    display: block;
    float: left;
    height: 75px;
}
.h-logo:hover {
    color: var(--h-text-white);
    text-decoration: none;
}
.h-logo-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.h-logo-text {
    line-height: 1.1;
}
.h-logo-text strong {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
}
.h-logo-text span {
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.7;
}

.h-nav-links {
    display: flex;
    gap: 25px;
}
.h-nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
    padding: 4px 0;
}
.h-nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--h-blue-brand);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.h-nav-links a:hover {
    color: var(--h-text-white);
}
.h-nav-links a:hover::after {
    width: 100%;
}

.h-nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.h-nav-actions .btn-icon {
    color: var(--h-text-white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.h-nav-actions .btn-icon:hover {
    background: rgba(255,255,255,0.2);
}
.h-nav-actions .btn-whatsapp-outline {
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--h-text-white);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.h-nav-actions .btn-whatsapp-outline:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

/* Animations */
@keyframes btn_glow {
    0% { box-shadow: 0 0 0 0 rgba(26, 86, 219, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(26, 86, 219, 0); }
    100% { box-shadow: 0 0 0 0 rgba(26, 86, 219, 0); }
}
.btn-glow {
    animation: btn_glow 2s infinite;
}

.h-hero-content {
    margin-top: 0;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.h-hero-pill {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--h-text-white);
    padding: 6px 14px;
    margin-top: 59px;
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.1);
}
.h-hero-title {
    color: var(--h-text-white);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    max-width: 850px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.h-hero-title span {
    color: #9fcfff; /* Light blue accent */
    display: block;
    margin-top: 5px;
}
.h-hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin-bottom: 20px;
}
.h-hero-location {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--h-text-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 35px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.h-btn-chamar {
    background: #ffffff;
    color: var(--h-blue-dark);
    padding: 16px 35px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.h-btn-chamar:hover {
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: var(--h-blue-dark);
}
.h-btn-chamar i {
    font-size: 20px;
    color: var(--h-blue-brand);
}

.h-hero-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.h-hero-badges span {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Empresa Section - Overlapping image */
.h-section-empresa {
    background-color: var(--back_contraste_home_1) !important;
    margin-top: 35px;/* pulls image up into the hero blue bg */
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}
.h-empresa-img-wrapper {
    width: 65%;
    margin: 0 auto 40px auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: #fff;
    padding: 10px;
}
.img_principal_empresa_new {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}
.h-empresa-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}
.h-empresa-subtitle {
    color: var(--h-text-secondary);
    font-size: 16px;
}

.h-divider {
    width: 60px;
    height: 3px;
    background: var(--h-blue-light);
    margin: 50px auto;
    border-radius: 2px;
}
.h-divider::before {
     content: "";
    filter: blur(1px);
    background: linear-gradient(90deg, #3b82f659, #60a5fa99, #3b82f659);
    border-radius: 99px;
    width: 80px;
    height: 3px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
}
/* Base Sections Styling */
.h-section-pill {
    color: var(--h-blue-brand);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}
.h-section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111827;
}
.h-section-desc {
    color: var(--h-text-secondary);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Servicos Grid */
.h-section-servicos { 
    padding: 120px 0; 
    background-color: #f8faff;
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(26, 86, 219, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(26, 86, 219, 0.04) 0%, transparent 40%);
}
.h-servicos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.h-card-servico {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s ease;
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    border: 1px solid rgba(26, 86, 219, 0.08);
    box-shadow: 0 10px 30px rgba(26, 86, 219, 0.04);
}
.h-card-servico:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 86, 219, 0.1);
    border-color: rgba(26, 86, 219, 0.2);
}
.h-card-servico .h-icon-wrapper {
    width: 56px;
    height: 56px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(26, 86, 219, 0.1);
}
.h-card-servico .h-icon-wrapper i {
    font-size: 22px;
    color: var(--h-blue-brand);
}
.h-card-servico h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}
.h-card-servico p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Portfolio */
.h-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}
.h-portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    background: #f3f4f6;
    aspect-ratio: 4/3;
    position: relative;
}
.h-portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.h-portfolio-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(26, 86, 219, 0) 0%, rgba(26, 86, 219, 0.6) 100%);
    opacity: 0;
    transition: 0.3s;
    z-index: 1;
}
.h-portfolio-item::after {
    content: '\f00e';
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: white;
    font-size: 32px;
    opacity: 0;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}
.h-portfolio-item:hover img {
    transform: scale(1.1);
}
.h-portfolio-item:hover::before {
    opacity: 1;
}
.h-portfolio-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Diferenciais */
.h-section-diferenciais {
    padding: 120px 0;
    background-color: #f8faff;
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(26, 86, 219, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(26, 86, 219, 0.04) 0%, transparent 40%);
}
.h-diferenciais-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.h-card-diferencial {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
    flex: 0 1 calc(25% - 18px);
    min-width: 260px;
    border: 1px solid rgba(26, 86, 219, 0.08);
    box-shadow: 0 10px 30px rgba(26, 86, 219, 0.04);
}
.h-card-diferencial:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 86, 219, 0.1);
}
.h-card-diferencial .h-icon-wrapper {
    width: 56px;
    height: 56px;
    background: #f0f7ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    color: var(--h-blue-brand);
    font-size: 22px;
    border: 1px solid rgba(26, 86, 219, 0.1);
}
.h-card-diferencial h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--h-blue-brand);
    margin: 0 0 10px 0;
}
.h-card-diferencial h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}
.h-card-diferencial p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Região / Atendimento */
.h-icon-pin {
    margin: 0 auto 20px auto;
    width: 60px;
    height: 60px;
    background: var(--h-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--h-blue-brand);
    font-size: 24px;
}
.h-regiao-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.h-card-regiao {
    background: #ffffff;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--h-blue-brand);
    border: 1px solid rgba(26, 86, 219, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: 0.3s;
}
.h-card-regiao:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 86, 219, 0.08);
    border-color: rgba(26, 86, 219, 0.2);
}
.h-card-regiao i {
    font-size: 18px;
}
.h-bairros-list {
    max-width: 800px;
    margin: 0 auto;
}
.h-bairros-title {
    font-size: 14px;
    color: var(--h-text-secondary);
    margin-bottom: 15px;
}
.h-bairros-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.h-bairros-tags span {
    border: 1px solid var(--h-gray-border);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--h-text-secondary);
}
.h-bairros-footer {
    font-size: 13px;
    color: var(--h-text-secondary);
}

/* WhatsApp Bubble Minimalist */
.botao_whatsapp {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 65px !important;
    height: 65px !important;
    background: #25D366 !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 32px !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4) !important;
    z-index: 10001 !important;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-decoration: none !important;
}
.botao_whatsapp:hover {
    transform: scale(1.1) rotate(10deg) !important;
    background: #128c7e !important;
}
.botao_whatsapp span { display: none !important; }

/* Horários */
.h-section-horarios {
    padding: 120px 0;
    background-color: #f8faff;
    background-image: 
        radial-gradient(circle at 50% 100%, rgba(26, 86, 219, 0.05) 0%, transparent 50%);
}
.h-horario-card {
    background: #ffffff;
    max-width: 450px;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(26, 86, 219, 0.08);
    box-shadow: 0 10px 30px rgba(26, 86, 219, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    transition: 0.3s;
}
.h-horario-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 86, 219, 0.1);
}
.h-horario-card .h-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #f0f7ff;
    color: var(--h-blue-brand, #1a56db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border: 1px solid rgba(26, 86, 219, 0.1);
}
.h-horario-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.h-horario-info strong {
    font-size: 24px;
    color: #111827;
    font-weight: 700;
}
.h-horario-info span {
    font-size: 18px;
    color: #4b5563;
}

/* Scroll Indicator */
.h-scroll-indicator {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.3);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mouse {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    position: relative;
}
.wheel {
    width: 2px;
    height: 5px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll_wheel 2s infinite;
}
@keyframes scroll_wheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 12px); }
}

.mobile_menu_toggle{ display: none; }

/* Responsive adjustments */
@media screen and (max-width: 991px) {
    .desktop_menu { display: none !important; }
    .mobile_menu_toggle { display: block; color: white; font-size: 24px; text-decoration: none; }
    .h-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .h-card-servico, .h-card-diferencial {
        flex: 0 1 calc(50% - 12px);
    }
    .h-empresa-img-wrapper { width: 90%; }
}
@media screen and (max-width: 767px) {
    .h-hero-title { font-size: 32px; }
    .h-portfolio-grid {
        grid-template-columns: 1fr;
    }
    .h-card-servico, .h-card-diferencial {
        flex: 0 1 100%;
    }
    .h-horarios-banner { flex-direction: column; gap: 30px; }
    .h-hero-badges { flex-direction: column; gap: 15px; }
}