/* ============================================================
   MACHADO REFORMAS E OBRAS — DESIGN SYSTEM BLACK & GOLD
   Visual moderno, clean, premium e equilibrado
   ============================================================ */

:root {
    --color-gold-deep: #8C582A;    /* Dourado Bronze Nobre */
    --color-gold-light: #F2BF80;   /* Dourado Claro Iluminado / Areia */
    --color-gold-border: rgba(242, 191, 128, 0.28);
    --color-gold-glow: rgba(242, 191, 128, 0.15);
    --color-dark: #0D0D0D;         /* Preto Profundo Principal */
    --color-dark-alt: #141414;     /* Preto Superfície */
    --color-dark-card: #1A1A1A;    /* Superfície de Card Escuro */
    --color-muted: #9E9B98;        /* Cinza Médio Neutro */
    --color-light: #FAFAFA;        /* Branco Suave / Off-White */
    --color-white: #FFFFFF;
}

/* =============================================
   Glyphs SVG Icon System
   ============================================= */
.glyph-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 0;
    flex-shrink: 0;
}

.glyph-icon-lg {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

.glyph-icon-sm {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.glyph-chevron {
    width: 16px;
    height: 16px;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.ht-faq-item.active .glyph-chevron {
    transform: rotate(0deg);
}

.glyph-arrow-right {
    width: 13px;
    height: 13px;
    transform: rotate(90deg);
}

.glyph-arrow-up {
    width: 18px;
    height: 18px;
    transform: rotate(0deg);
}

/* =============================================
   Header & Navegação (Black & Gold Minimalista)
   ============================================= */
#ht-masthead {
    background: var(--color-dark);
    border-top: 3px solid var(--color-gold-deep);
    border-bottom: 1px solid var(--color-gold-border);
    min-height: 92px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.35);
    position: relative;
    z-index: 999;
}

#ht-site-branding {
    float: left;
    padding: 10px 0;
}

#ht-site-branding img.custom-logo {
    max-height: 87px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

#ht-site-navigation {
    padding: 27px 0;
}

.ht-main-navigation .ht-menu li a {
    color: #ECECEC;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 0.25s ease;
    padding: 8px 14px;
    position: relative;
}

.ht-main-navigation .ht-menu li:hover > a,
.ht-main-navigation .ht-menu .current_page_item > a,
.ht-main-navigation .ht-menu .current-menu-item > a {
    color: var(--color-gold-light);
}

.ht-main-navigation .ht-menu li > a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--color-gold-light);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.ht-main-navigation .ht-menu li:hover > a::after,
.ht-main-navigation .ht-menu .current_page_item > a::after {
    transform: scaleX(1);
}

.toggle-bar span,
.toggle-bar span:before,
.toggle-bar span:after {
    background: var(--color-gold-light);
}

.cta-text-desktop {
    display: inline;
}

.cta-text-mobile {
    display: none;
}

.toggle-bar-icon {
    display: block;
    width: 32px;
    height: 32px;
    fill: var(--color-gold-light);
}

@media screen and (max-width: 1000px) {
    .toggle-bar {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    #ht-site-navigation {
        background: var(--color-dark-alt);
        border-top: 1px solid var(--color-gold-border);
    }
    .ht-main-navigation .ht-menu li a {
        color: #ffffff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* =============================================
   Dobra 1: Hero Slider
   ============================================= */
#ht-home-slider-section {
    position: relative;
    background: var(--color-dark);
}

#ht-home-slider-section .ht-slide-overlay {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.88) 0%, rgba(13, 13, 13, 0.65) 100%);
}

.ht-slide-caption {
    width: 88%;
    max-width: 920px;
}

.ht-slide-cap-title span {
    background: rgba(13, 13, 13, 0.9);
    border-left: 4px solid var(--color-gold-light);
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1.25;
    padding: 14px 24px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.hero-subheadline {
    color: #E6E6E6;
    font-size: 19px;
    font-weight: 400;
    margin: 22px 0 26px;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    max-width: 820px;
}

.hero-cta-wrap {
    margin-top: 15px;
}

.ht-hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-dark);
    color: var(--color-gold-light) !important;
    border: 1.5px solid var(--color-gold-light);
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 36px;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.45);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
}

.ht-hero-cta-btn i {
    font-size: 20px;
    color: #25D366;
}

.ht-hero-cta-btn:hover {
    background: var(--color-gold-light);
    color: var(--color-dark) !important;
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--color-gold-glow);
}

.ht-hero-cta-btn:hover i {
    color: var(--color-dark);
}

.hero-subtext {
    color: var(--color-muted);
    font-size: 14px;
    margin-top: 14px;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

@media only screen and (max-width: 768px) {
    .ht-slide-cap-title span {
        font-size: 22px;
        padding: 10px 14px;
    }
    .hero-subheadline {
        font-size: 15px;
        margin: 14px 0 20px;
    }
    .ht-hero-cta-btn {
        font-size: 15px;
        padding: 12px 24px;
    }
}

/* =============================================
   Dobra 2: "Sua reforma, com uma equipe para cuidar de tudo"
   Fundo Preto Sofisticado com Cards Dourado/Preto
   ============================================= */
#ht-featured-post-section {
    background: var(--color-dark);
    color: #ffffff;
    padding: 85px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#ht-featured-post-section .ht-section-title {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.ht-section-tagline-desc {
    color: #D1CFCD;
    font-size: 17px;
    max-width: 820px;
    margin: 0 auto 50px;
    line-height: 1.65;
}

.ht-featured-post-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.ht-featured-post-card {
    background: var(--color-dark-alt);
    border: 1px solid var(--color-gold-border);
    border-radius: 6px;
    padding: 35px 24px;
    text-align: center;
    flex: 1 1 calc(33.333% - 24px);
    max-width: calc(33.333% - 24px);
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.ht-featured-post-card:hover {
    background: var(--color-dark-card);
    border-color: var(--color-gold-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px var(--color-gold-glow);
}

.ht-featured-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark);
    color: var(--color-gold-light);
    border: 1.5px solid var(--color-gold-border);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 24px;
    transition: all 0.3s ease;
}

.ht-featured-post-card:hover .ht-featured-card-icon {
    background: var(--color-gold-deep);
    border-color: var(--color-gold-light);
    color: #ffffff;
}

.ht-featured-post-card h5 {
    color: #ffffff;
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0;
}

.ht-featured-cta-wrap {
    text-align: center;
    margin-top: 50px;
}

.ht-btn-featured {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-gold-deep);
    color: #ffffff !important;
    border: 1px solid var(--color-gold-light);
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 36px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(0,0,0,0.3);
}

.ht-btn-featured:hover {
    background: var(--color-gold-light);
    color: var(--color-dark) !important;
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px var(--color-gold-glow);
}

@media only screen and (max-width: 900px) {
    .ht-featured-post-card {
        flex: 1 1 calc(50% - 24px);
        max-width: calc(50% - 24px);
    }
}

@media only screen and (max-width: 600px) {
    .ht-featured-post-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* =============================================
   Dobra 3: "Nossos Serviços"
   Design Clean, Equilibrado e de Alta Leitura
   ============================================= */
#ht-service-post-section {
    background: var(--color-light);
    padding: 95px 0;
    position: relative;
}

.ht-service-left-bg {
    background-image: url("../assets/images/043-banner-projeto-hidraulico-02.jpg");
    opacity: 0.08;
}

#ht-service-post-section .ht-section-title {
    color: var(--color-dark);
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

#ht-service-post-section .ht-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-gold-deep);
    margin: 10px auto 0;
}

.ht-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.ht-service-post {
    background: #ffffff;
    border: 1px solid #E6E6E6;
    border-left: 4px solid var(--color-dark);
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ht-service-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-left-color: var(--color-gold-deep);
}

.ht-service-post h5 {
    color: var(--color-dark);
    font-size: 21px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.ht-service-post p {
    color: #555555;
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 20px;
}

.ht-service-cta {
    align-self: flex-start;
    display: inline-block;
    color: var(--color-gold-deep);
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-decoration: none;
    border-bottom: 1.5px solid var(--color-gold-deep);
    padding-bottom: 2px;
    transition: all 0.25s ease;
}

.ht-service-cta:hover {
    color: var(--color-dark);
    border-color: var(--color-dark);
    transform: translateX(3px);
}

@media only screen and (max-width: 768px) {
    .ht-service-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   Dobra 4: CTA Parallax ("Está pensando em reformar?")
   Black & Gold Sofisticado
   ============================================= */
#ht-cta-section {
    background-image: url("../assets/images/044-cta.jpg");
    position: relative;
    padding: 105px 0;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.ht-cta-overlay {
    background: rgba(13, 13, 13, 0.84);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

#ht-cta-section .ht-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

#ht-cta-section .ht-section-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

#ht-cta-section .ht-section-tagline {
    color: var(--color-gold-light);
    font-size: 19px;
    max-width: 780px;
    margin: 0 auto 38px;
    line-height: 1.6;
    font-weight: 400;
}

.ht-cta-buttons a.ht-cta-button1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-dark);
    color: var(--color-gold-light);
    border: 1.5px solid var(--color-gold-light);
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 38px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ht-cta-buttons a.ht-cta-button1 i {
    color: #25D366;
    font-size: 20px;
}

.ht-cta-buttons a.ht-cta-button1:hover {
    background: var(--color-gold-light);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--color-gold-glow);
}

.ht-cta-buttons a.ht-cta-button1:hover i {
    color: var(--color-dark);
}

/* =============================================
   Dobra 5: "Por que contratar a Machado?"
   Clean, Branco & Preto com Acentos Dourados
   ============================================= */
#ht-why-us-section {
    background: #ffffff;
    padding: 95px 0;
}

#ht-why-us-section .ht-section-title {
    color: var(--color-dark);
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
}

#ht-why-us-section .ht-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-gold-deep);
    margin: 10px auto 45px;
}

.ht-why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.ht-why-us-item {
    background: var(--color-light);
    border: 1px solid #ECECEC;
    border-radius: 6px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.3s ease;
}

.ht-why-us-item:hover {
    border-color: var(--color-gold-light);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.ht-why-check-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark);
    color: var(--color-gold-light);
    border: 1px solid var(--color-gold-border);
    border-radius: 50%;
}

.ht-why-content h5 {
    color: var(--color-dark);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ht-why-content p {
    color: #555555;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

/* =============================================
   Dobra 6: Galeria de Obras (Preto & Dourado Premium)
   ============================================= */
#ht-gallery-section {
    background: var(--color-dark);
    padding: 95px 0;
}

#ht-gallery-section .ht-container {
    max-width: 1280px;
}

#ht-gallery-section .ht-section-title {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
}

#ht-gallery-section .ht-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-gold-light);
    margin: 10px auto 45px;
}

.ht-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1240px;
    margin: 0 auto;
}

.ht-gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #000000;
    border: 1px solid rgba(242, 191, 128, 0.22);
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.ht-gallery-item:hover {
    border-color: var(--color-gold-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6) !important;
    transform: translateY(-4px);
}

.ht-gallery-item img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ht-gallery-item:hover img {
    transform: scale(1.05);
    opacity: 0.92;
}

.ht-gallery-item.ht-gallery-item-featured {
    grid-column: span 2;
}

.ht-gallery-item.ht-gallery-item-featured img {
    height: 560px;
}

.ht-gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.4) 60%, transparent 100%);
    padding: 24px;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ht-gallery-item:hover .ht-gallery-overlay {
    opacity: 1;
}

.ht-gallery-overlay span {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-gold-light);
    background: rgba(13, 13, 13, 0.88);
    border: 1px solid var(--color-gold-border);
    padding: 10px 22px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media only screen and (max-width: 860px) {
    .ht-gallery-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .ht-gallery-item.ht-gallery-item-featured {
        grid-column: span 1;
    }
    .ht-gallery-item img,
    .ht-gallery-item.ht-gallery-item-featured img {
        height: 360px;
    }
}

/* =============================================
   Dobra 7: "Para quem é o serviço?"
   Clean, Cards Brancos com Ícones Preto & Dourado
   ============================================= */
#ht-target-section {
    background: #ffffff;
    padding: 95px 0;
}

#ht-target-section .ht-section-title {
    color: var(--color-dark);
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
}

#ht-target-section .ht-section-subtitle {
    color: var(--color-gold-deep);
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.4px;
}

.ht-target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ht-target-card {
    background: var(--color-light);
    border: 1px solid #E6E6E6;
    border-radius: 6px;
    padding: 35px 22px;
    text-align: center;
    transition: all 0.3s ease;
}

.ht-target-card:hover {
    background: #ffffff;
    border-color: var(--color-gold-deep);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.ht-target-icon {
    width: 58px;
    height: 58px;
    line-height: 58px;
    margin: 0 auto 20px;
    background: var(--color-dark);
    border: 1.5px solid var(--color-gold-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ht-target-card:hover .ht-target-icon {
    border-color: var(--color-gold-light);
}

.ht-target-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--color-gold-light);
    fill: none;
    stroke-width: 1.8;
}

.ht-target-card h5 {
    color: var(--color-dark);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ht-target-card p {
    color: #555555;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

@media only screen and (max-width: 900px) {
    .ht-target-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 550px) {
    .ht-target-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   Dobra 8: "Área de atendimento"
   Black & Gold
   ============================================= */
#ht-locations-section {
    background: var(--color-dark-alt);
    color: #ffffff;
    padding: 90px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#ht-locations-section .ht-section-title {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

#ht-locations-section .ht-section-subtitle {
    color: var(--color-gold-light);
    font-size: 18px;
    margin-bottom: 45px;
    letter-spacing: 0.5px;
}

.ht-cities-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    max-width: 850px;
    margin: 0 auto 35px;
}

.ht-city-badge {
    background: var(--color-dark);
    border: 1.5px solid var(--color-gold-border);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.ht-city-badge i {
    color: var(--color-gold-light);
}

.ht-city-badge:hover {
    background: var(--color-gold-deep);
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-gold-glow);
}

.ht-location-note {
    color: var(--color-muted);
    font-size: 16px;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =============================================
   Dobra 9: "Como funciona"
   Clean com Numerais Dourados
   ============================================= */
#ht-how-it-works-section {
    background: #ffffff;
    padding: 95px 0;
}

#ht-how-it-works-section .ht-section-title {
    color: var(--color-dark);
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
}

#ht-how-it-works-section .ht-section-subtitle {
    color: var(--color-gold-deep);
    font-size: 18px;
    text-align: center;
    margin-bottom: 55px;
}

.ht-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ht-step-card {
    background: var(--color-light);
    border: 1px solid #ECECEC;
    border-top: 3px solid var(--color-dark);
    border-radius: 4px;
    padding: 32px 22px;
    position: relative;
    transition: all 0.3s ease;
}

.ht-step-card:hover {
    border-top-color: var(--color-gold-deep);
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.ht-step-number {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-gold-deep);
    line-height: 1;
    margin-bottom: 14px;
}

.ht-step-card h5 {
    color: var(--color-dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ht-step-card p {
    color: #555555;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

@media only screen and (max-width: 900px) {
    .ht-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 550px) {
    .ht-steps-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   Dobra 10: "FAQ" (Clean & Modern Accordion)
   ============================================= */
#ht-faq-section {
    background: var(--color-light);
    padding: 95px 0;
}

#ht-faq-section .ht-section-title {
    color: var(--color-dark);
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
}

#ht-faq-section .ht-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-gold-deep);
    margin: 10px auto 45px;
}

.ht-faq-wrap {
    max-width: 850px;
    margin: 0 auto;
}

.ht-faq-item {
    background: #ffffff;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    transition: all 0.25s ease;
}

.ht-faq-item:hover {
    border-color: var(--color-gold-deep);
}

.ht-faq-item.active {
    border-color: var(--color-gold-deep);
    box-shadow: 0 6px 18px rgba(140, 88, 42, 0.08);
}

.ht-faq-question {
    padding: 20px 24px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    letter-spacing: 0.3px;
}

.ht-faq-question i {
    color: var(--color-gold-deep);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.ht-faq-item.active .ht-faq-question i {
    transform: rotate(180deg);
}

.ht-faq-answer {
    display: none;
    padding: 0 24px 22px;
    color: #555555;
    font-size: 15.5px;
    line-height: 1.6;
    border-top: 1px solid #F2F2F2;
    padding-top: 16px;
    animation: faqFadeIn 0.25s ease;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ht-faq-item.active .ht-faq-answer {
    display: block;
}

/* =============================================
   Dobra 11: "CTA FINAL"
   Black & Gold de Alto Impacto
   ============================================= */
#ht-cta-final-section {
    background: linear-gradient(rgba(13, 13, 13, 0.92), rgba(13, 13, 13, 0.92)), url("../assets/images/005-banner-04.jpg");
    background-size: cover;
    background-position: center;
    padding: 105px 0;
    text-align: center;
    color: #ffffff;
    border-top: 1px solid var(--color-gold-border);
}

#ht-cta-final-section .ht-section-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

#ht-cta-final-section p.cta-final-desc {
    color: var(--color-gold-light);
    font-size: 20px;
    max-width: 650px;
    margin: 0 auto 38px;
    line-height: 1.5;
}

.ht-btn-cta-final {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-dark);
    color: var(--color-gold-light) !important;
    border: 1.5px solid var(--color-gold-light);
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 18px 45px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(0,0,0,0.6);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ht-btn-cta-final i {
    font-size: 22px;
    color: #25D366;
}

.ht-btn-cta-final:hover {
    background: var(--color-gold-light);
    color: var(--color-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--color-gold-glow);
}

.ht-btn-cta-final:hover i {
    color: var(--color-dark);
}

.ht-cta-final-cities {
    margin-top: 28px;
    color: var(--color-muted);
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* =============================================
   Dobra 12: Rodapé
   Preto Nobre com Detalhes Finos em Dourado
   ============================================= */
#ht-colophon {
    background: #080808;
    color: #CCCCCC;
    border-top: 3px solid var(--color-gold-deep);
    padding: 65px 0 25px;
}

.ht-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 45px;
    margin-bottom: 45px;
}

.ht-footer-brand h4 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.ht-footer-brand p {
    color: #A0A0A0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.ht-footer-cities {
    color: var(--color-gold-light);
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    margin-top: 12px;
    letter-spacing: 0.5px;
}

.ht-footer-col h5 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--color-gold-deep);
    padding-bottom: 6px;
    display: inline-block;
}

.ht-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ht-footer-links li {
    margin-bottom: 11px;
}

.ht-footer-links li a {
    color: #CCCCCC;
    text-decoration: none;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
}

.ht-footer-links li a:hover {
    color: var(--color-gold-light);
    transform: translateX(3px);
}

.ht-footer-cnpj,
.ht-footer-whatsapp {
    font-size: 13.5px;
    color: var(--color-muted);
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.ht-footer-whatsapp a {
    color: #25d366;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.ht-footer-whatsapp a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.ht-footer-whatsapp .glyph-whatsapp-cta {
    fill: #25d366;
    width: 16px;
    height: 16px;
}

#ht-bottom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    text-align: center;
    font-size: 13px;
    color: #777777;
}

@media only screen and (max-width: 768px) {
    .ht-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* =============================================
   JoinChat & Utilitários
   ============================================= */
.joinchat__button__open {
    background: #25D366;
}

#ht-back-top {
    background: var(--color-dark);
    color: var(--color-gold-light);
    border: 1px solid var(--color-gold-border);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    position: fixed;
    right: 25px;
    bottom: 25px;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

#ht-back-top:hover {
    background: var(--color-gold-light);
    color: var(--color-dark);
    border-color: var(--color-gold-light);
}


/* ============================================================
   AJUSTE DE TIPOGRAFIA GLOBAL (+20% NO CORPO DE TEXTO)
   ============================================================ */
body {
    font-size: 18px !important;
    line-height: 1.65 !important;
    background-color: var(--color-dark) !important;
}

p {
    font-size: 18px;
    line-height: 1.65;
}


/* ============================================================
   ELIMINAÇÃO DO ESPAÇO EM BRANCO ENTRE HEADER E CONTENT
   ============================================================ */
#ht-masthead {
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid var(--color-gold-border) !important;
    background: var(--color-dark) !important;
}

#ht-content,
.ht-site-content {
    margin: 0 !important;
    padding: 0 !important;
    background: var(--color-dark) !important;
    clear: both;
}

#ht-home-slider-section {
    margin: 0 !important;
    border: none !important;
}


/* ============================================================
   MENU NAVEGAÇÃO: PREENCHIMENTO DOURADO E TEXTO PRETO NO HOVER/ACTIVE
   ============================================================ */
.ht-main-navigation .ht-menu li a {
    color: #ECECEC;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    padding: 9px 16px;
    border-radius: 4px;
    position: relative;
    display: inline-block;
}

.ht-main-navigation .ht-menu li:hover > a,
.ht-main-navigation .ht-menu .current_page_item > a,
.ht-main-navigation .ht-menu .current-menu-item > a,
.ht-main-navigation .ht-menu .current_page_ancestor > a,
.ht-main-navigation .ht-menu li.active > a,
.ht-main-navigation .ht-menu .current > a {
    background: var(--color-gold-light) !important;
    color: #0D0D0D !important;
}

.ht-main-navigation .ht-menu li > a::after {
    display: none !important;
}

@media screen and (max-width: 1000px) {
    .toggle-bar, #ht-site-navigation {
        background: var(--color-dark-alt);
        border-top: 1px solid var(--color-gold-border);
    }
    .ht-main-navigation .ht-menu li a {
        color: #ffffff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .ht-main-navigation .ht-menu li:hover > a,
    .ht-main-navigation .ht-menu .current_page_item > a,
    .ht-main-navigation .ht-menu .current-menu-item > a,
    .ht-main-navigation .ht-menu li.active > a {
        background: var(--color-gold-light) !important;
        color: #0D0D0D !important;
    }
}


/* ============================================================
   1. HERO ESTÁTICA COM IMAGEM DE FUNDO & CAPTION CENTRALIZADA
   ============================================================ */
#ht-home-slider-section.ht-hero-static {
    position: relative;
    background: url('../assets/images/bg-hero.webp') center center / cover no-repeat;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 0;
    box-sizing: border-box;
    margin: 0 !important;
    overflow: hidden;
}

#ht-home-slider-section .ht-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 8, 8, 0.88) 0%, rgba(13, 13, 13, 0.75) 100%);
    z-index: 1;
}

#ht-home-slider-section .ht-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.ht-hero-static .ht-slide-caption {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 960px !important;
    text-align: center !important;
    z-index: 2;
    box-sizing: border-box;
}

.ht-hero-static .ht-slide-cap-title {
    text-align: center !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}

.ht-hero-static .ht-slide-cap-title span {
    display: inline-block;
    background: rgba(13, 13, 13, 0.92);
    border-left: 4px solid var(--color-gold-light);
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.25;
    padding: 16px 28px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.ht-hero-static .hero-subheadline {
    color: #EAEAEA;
    font-size: 21px !important; /* +20% */
    font-weight: 400;
    margin: 24px auto 28px;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    max-width: 840px;
    text-align: center;
}

.ht-hero-static .hero-cta-wrap {
    text-align: center;
    margin: 0 auto;
}

.ht-hero-static .hero-subtext {
    color: var(--color-muted);
    font-size: 16px !important;
    margin-top: 14px;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

/* ============================================================
   ÍCONE "ROLAR A PÁGINA" NA HERO
   ============================================================ */
.ht-hero-scroll-btn {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0.88;
}

.ht-hero-scroll-btn:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(3px);
}

.scroll-btn-mouse {
    width: 22px;
    height: 35px;
    border: 2px solid var(--color-gold-light);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    box-sizing: border-box;
    background: rgba(13, 13, 13, 0.45);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.scroll-btn-wheel {
    width: 3.5px;
    height: 7px;
    background: var(--color-gold-light);
    border-radius: 2px;
    animation: scrollWheelAnim 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollWheelAnim {
    0% {
        opacity: 0;
        transform: translateY(-2px);
    }
    30% {
        opacity: 1;
    }
    70% {
        opacity: 1;
        transform: translateY(8px);
    }
    100% {
        opacity: 0;
        transform: translateY(11px);
    }
}

.scroll-btn-text {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #ECECEC;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
    transition: color 0.25s ease;
}

.ht-hero-scroll-btn:hover .scroll-btn-text {
    color: var(--color-gold-light);
}

.scroll-btn-chevron {
    color: var(--color-gold-light);
    animation: scrollChevronAnim 1.8s ease-in-out infinite;
}

@keyframes scrollChevronAnim {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(4px);
    }
    60% {
        transform: translateY(2px);
    }
}

@media only screen and (max-width: 768px) {
    #ht-home-slider-section.ht-hero-static {
        min-height: 520px;
        padding: 60px 0 115px;
    }
    .ht-hero-scroll-btn {
        bottom: 14px;
        gap: 3px;
    }
    .scroll-btn-mouse {
        width: 18px;
        height: 28px;
    }
    .scroll-btn-wheel {
        width: 3px;
        height: 6px;
    }
    .scroll-btn-text {
        font-size: 9.5px;
        letter-spacing: 1.1px;
    }
    .ht-hero-static .ht-slide-cap-title span {
        font-size: 24px;
        padding: 12px 18px;
    }
    .ht-hero-static .hero-subheadline {
        font-size: 17px !important;
        margin: 16px auto 22px;
    }
}


/* ============================================================
   ÍCONES WHATSAPP: DOURADO NOS BOTÕES CTA & BRANCO NO FLUTUANTE
   ============================================================ */
.glyph-whatsapp-cta {
    color: var(--color-gold-light) !important;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    transition: color 0.25s ease;
    flex-shrink: 0;
}

.ht-hero-cta-btn:hover .glyph-whatsapp-cta,
.ht-btn-featured:hover .glyph-whatsapp-cta,
.ht-btn-cta-section:hover .glyph-whatsapp-cta,
.ht-btn-cta-final:hover .glyph-whatsapp-cta {
    color: #0D0D0D !important;
}

/* Floating JoinChat WhatsApp Button */
.joinchat__button {
    background: #25D366 !important;
    text-decoration: none !important;
    color: inherit !important;
}

.joinchat__button__open {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-image: none !important;
    width: 100% !important;
    height: 100% !important;
}

.joinchat-white-icon {
    width: 34px !important;
    height: 34px !important;
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
    display: block !important;
}


/* ============================================================
   REMOÇÃO DO EFEITO GLOW NO HOVER DE CARDS E BOTÕES
   ============================================================ */
:root {
    --color-gold-glow: transparent !important;
}

.ht-hero-cta-btn:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}

.ht-featured-post-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.4) !important;
}

.ht-btn-featured:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.3) !important;
}

.ht-service-post:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.06) !important;
}

.ht-cta-buttons a.ht-cta-button1:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}

.ht-why-bento-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.06) !important;
}

.ht-gallery-item:hover {
    box-shadow: 0 6px 22px rgba(0,0,0,0.5) !important;
}

.ht-target-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08) !important;
}

.ht-city-badge:hover {
    box-shadow: none !important;
}

.ht-step-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.06) !important;
}

.ht-btn-cta-final:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.4) !important;
}


/* ============================================================
   DOBRA CTA FINAL: OVERLAY ESCURO PARA CONTRASTE E LEGIBILIDADE
   ============================================================ */
#ht-cta-final-section {
    background: linear-gradient(rgba(6, 6, 6, 0.96), rgba(6, 6, 6, 0.96)), url("../assets/images/005-banner-04.jpg") !important;
    background-size: cover !important;
    background-position: center !important;
    padding: 105px 0;
    text-align: center;
    color: #ffffff;
    border-top: 1px solid var(--color-gold-border);
}

#ht-cta-final-section .ht-section-title {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

#ht-cta-final-section p.cta-final-desc {
    color: #F2D2A9 !important; /* Dourado suave de alto contraste */
    font-size: 22px !important; /* +20% */
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.55;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}


/* ============================================================
   DOBRA 5: BENTO GRID POR QUE CONTRATAR A MACHADO
   Sem quebras de linha indesejadas e layout moderno
   ============================================================ */
#ht-why-us-section {
    background: #ffffff;
    padding: 95px 0;
}

.ht-why-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
}

.ht-why-bento-card {
    background: var(--color-light);
    border: 1px solid #ECECEC;
    border-radius: 8px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.ht-why-bento-card:hover {
    border-color: var(--color-gold-deep);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06) !important;
    transform: translateY(-3px);
}

.ht-why-bento-card.ht-bento-featured {
    grid-column: span 2;
    background: var(--color-dark);
    border-color: var(--color-gold-border);
    color: #ffffff;
}

.ht-why-bento-card.ht-bento-featured .ht-why-content h5 {
    color: #ffffff;
}

.ht-why-bento-card.ht-bento-featured .ht-why-content p {
    color: #D1CFCD;
}

.ht-why-bento-card.ht-bento-featured:hover {
    border-color: var(--color-gold-light);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
}

.ht-why-check-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark);
    color: var(--color-gold-light);
    border: 1.5px solid var(--color-gold-border);
    border-radius: 50%;
    flex-shrink: 0;
}

.ht-bento-featured .ht-why-check-icon {
    background: var(--color-gold-deep);
    color: #ffffff;
    border-color: var(--color-gold-light);
}

.ht-why-check-icon svg {
    width: 22px;
    height: 22px;
}

.ht-why-content {
    width: 100%;
}

.ht-why-content h5 {
    color: var(--color-dark);
    font-size: 21px; /* +20% */
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
    letter-spacing: 0.3px;
}

.ht-why-content p {
    color: #555555;
    font-size: 17.5px !important; /* +20% */
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .ht-why-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ht-why-bento-card.ht-bento-featured {
        grid-column: span 2;
    }
}

@media (max-width: 650px) {
    .ht-why-bento-grid {
        grid-template-columns: 1fr;
    }
    .ht-why-bento-card.ht-bento-featured {
        grid-column: span 1;
    }
}


/* ============================================================
   DOBRA 7: PARA QUEM É O SERVIÇO (4 CARDS COMPLETOS)
   ============================================================ */
#ht-target-section {
    background: #ffffff;
    padding: 95px 0;
    border-top: 1px solid #ECECEC;
}

.ht-target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .ht-target-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .ht-target-grid {
        grid-template-columns: 1fr;
    }
}

.ht-target-card {
    background: #ffffff;
    border: 1px solid #ECECEC;
    border-radius: 8px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.ht-target-card:hover {
    border-color: var(--color-gold-deep);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08) !important;
    transform: translateY(-4px);
}

.ht-target-icon {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark);
    color: var(--color-gold-light);
    border: 1.5px solid var(--color-gold-border);
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.ht-target-icon svg {
    width: 32px;
    height: 32px;
}

.ht-target-card:hover .ht-target-icon {
    background: var(--color-gold-deep);
    color: #ffffff;
    border-color: var(--color-gold-light);
}

.ht-target-card h5 {
    color: var(--color-dark);
    font-size: 21px; /* +20% */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.ht-target-card p {
    color: #555555;
    font-size: 17.5px !important; /* +20% */
    line-height: 1.55;
    margin: 0;
}


/* ============================================================
   AUMENTO DE +20% EM TODOS OS TEXTOS CORRIDOS E CARDS
   ============================================================ */
.ht-section-tagline-desc {
    font-size: 20px !important; /* +20% de 17px */
    line-height: 1.65;
}

.ht-service-post p {
    font-size: 17.5px !important; /* +20% de 15px */
    line-height: 1.6;
}

.ht-step-card p {
    font-size: 17.5px !important;
    line-height: 1.6;
}

.ht-step-card h5 {
    font-size: 21px !important;
}

.ht-faq-question {
    font-size: 19px !important;
}

.ht-faq-answer {
    font-size: 18px !important;
    line-height: 1.65;
}

.ht-location-note {
    font-size: 19px !important;
    line-height: 1.6;
}

.ht-cities-wrap .ht-city-badge {
    font-size: 17px !important;
}

.ht-footer-brand p {
    font-size: 16.5px !important;
}

.ht-footer-links li a {
    font-size: 16.5px !important;
}

#ht-bottom-footer p {
    font-size: 15.5px !important;
}


/* ============================================================
   AJUSTES SOLICITADOS — PARALLAX, NAVBAR, CTA DOBRA 4, FOOTER
   ============================================================ */

/* 1. Dobra 4 CTA: Overlay um pouco mais escuro e texto branco */
#ht-cta-section {
    background-image: url("../assets/images/044-cta.jpg") !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    padding: 105px 0;
}

#ht-cta-section .ht-cta-overlay {
    background: rgba(10, 10, 10, 0.90) !important; /* Overlay escurecido para contraste perfeito */
    position: absolute;
    inset: 0;
}

#ht-cta-section .ht-section-tagline {
    color: #ffffff !important; /* Texto branco */
    font-size: 20px !important;
    max-width: 800px;
    margin: 0 auto 38px;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

#ht-cta-section .ht-cta-buttons a.ht-cta-button1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-dark);
    color: var(--color-gold-light) !important;
    border: 1.5px solid var(--color-gold-light);
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 38px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

#ht-cta-section .ht-cta-buttons a.ht-cta-button1:hover {
    background: var(--color-gold-light) !important;
    color: #0D0D0D !important;
    border-color: var(--color-gold-light) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}

#ht-cta-section .ht-cta-buttons a.ht-cta-button1:hover .glyph-whatsapp-cta {
    color: #0D0D0D !important;
}

/* Dobra 2 CTA: Falar com um especialista */
.ht-btn-featured {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-dark) !important;
    color: var(--color-gold-light) !important;
    border: 1.5px solid var(--color-gold-light) !important;
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 36px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ht-btn-featured:hover {
    background: var(--color-gold-light) !important;
    color: #0D0D0D !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}

.ht-btn-featured:hover .glyph-whatsapp-cta {
    color: #0D0D0D !important;
}

/* 4. Navbar Header: Linha única sem quebras */
#ht-masthead {
    min-height: 88px;
}

@media screen and (min-width: 1001px) {
    #ht-masthead .ht-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        max-width: 1260px !important;
        width: 100% !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
    }

    #ht-site-branding {
        float: none !important;
        width: auto !important;
        flex-shrink: 0 !important;
        padding: 8px 0 !important;
    }

    #ht-site-navigation {
        float: none !important;
        width: auto !important;
        flex-grow: 1 !important;
        display: flex !important;
        justify-content: flex-end !important;
        padding: 0 !important;
    }

    .ht-main-navigation .ht-menu {
        float: none !important;
    }

    .ht-main-navigation .ht-menu ul#menu-principal {
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        gap: 2px !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .ht-main-navigation .ht-menu li {
        float: none !important;
        margin: 0 !important;
        white-space: nowrap !important;
    }

    .ht-main-navigation .ht-menu li a {
        font-size: 13.5px !important;
        padding: 8px 10px !important;
        letter-spacing: 0.4px !important;
        white-space: nowrap !important;
    }
}

@media screen and (min-width: 1200px) {
    .ht-main-navigation .ht-menu li a {
        font-size: 14.5px !important;
        padding: 8px 12px !important;
        letter-spacing: 0.6px !important;
    }
}

@media screen and (max-width: 1000px) {
    #ht-masthead {
        position: relative !important;
    }
    #ht-masthead .ht-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
    }
    #ht-site-branding {
        float: none !important;
        width: auto !important;
        display: flex !important;
        align-items: center !important;
    }
    #ht-site-navigation {
        display: none;
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        top: 100% !important;
        width: 100% !important;
        background: #0d0d0d !important;
        border-top: 1px solid rgba(242, 191, 128, 0.2) !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.8) !important;
        z-index: 9999 !important;
    }
    .ht-main-navigation .ht-menu ul#menu-principal {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 10px 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    .ht-main-navigation .ht-menu li {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
    }
    .ht-main-navigation .ht-menu li a {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 12px 15px !important;
    }
}

/* 5. Parallax Hero */
#ht-home-slider-section.ht-hero-static {
    background-image: url('../assets/images/bg-hero.webp') !important;
    background-attachment: fixed !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

/* 3. Rodapé Back to top sutil */
#ht-back-top {
    display: none !important;
}

#ht-bottom-footer {
    border-top: 1px solid rgba(242, 191, 128, 0.12);
    margin-top: 25px;
}

.ht-bottom-footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 24px;
    box-sizing: border-box;
}

.ht-bottom-footer-wrap p {
    margin: 0;
}

.ht-footer-back-to-top {
    color: var(--color-muted);
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ht-footer-back-to-top:hover {
    color: var(--color-gold-light);
}

/* 6. Instagram Rodapé */
.glyph-instagram-footer {
    color: var(--color-gold-light) !important;
    transition: color 0.25s ease;
}

.ht-footer-links li a:hover .glyph-instagram-footer {
    color: #ffffff !important;
}

/* ============================================================
   RESPONSIVIDADE MOBILE COMPLETA (TUDO CENTRALIZADO)
   Garantia: Desktop intocado (> 768px).
   Afeta apenas viewports <= 768px e <= 480px.
   ============================================================ */

@media screen and (max-width: 768px) {
    /* 0. Prevenção Geral de Overflow & Tipografia Fluida */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    #ht-page {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    .ht-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }

    .ht-section {
        padding: 55px 0 !important;
    }

    .ht-section-title-tagline {
        text-align: center !important;
        margin-bottom: 35px !important;
    }

    .ht-section-title {
        text-align: center !important;
        font-size: 27px !important;
        line-height: 1.25 !important;
        text-wrap: balance !important;
    }

    .ht-section-subtitle {
        text-align: center !important;
        font-size: 15px !important;
        margin-top: 8px !important;
        text-wrap: balance !important;
    }

    .ht-section-title:after,
    .ht-section-title::after {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* 1. Header & Menu de Navegação */
    #ht-masthead {
        position: relative !important;
        padding: 15px 0 !important;
    }

    #ht-site-branding {
        float: none !important;
        text-align: center !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 50px !important; /* Espaço para o botão toggle sem sobrepor */
        box-sizing: border-box !important;
    }

    #ht-site-branding .custom-logo-link {
        display: inline-block !important;
        margin: 0 auto !important;
    }

    #ht-site-branding .custom-logo {
        max-width: 170px !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .toggle-bar {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        right: 15px !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        width: 44px !important;
        height: 44px !important;
        cursor: pointer !important;
        z-index: 999 !important;
        padding: 0 !important;
    }

    .toggle-bar span {
        display: none !important;
    }

    .toggle-bar-icon {
        width: 32px !important;
        height: 32px !important;
        fill: var(--color-gold-light) !important;
        display: block !important;
        transition: transform 0.25s ease, opacity 0.25s ease !important;
    }

    .toggle-bar:hover .toggle-bar-icon,
    .toggle-bar:active .toggle-bar-icon {
        opacity: 0.85 !important;
        transform: scale(1.06) !important;
    }

    #ht-site-navigation {
        display: none;
        float: none !important;
        width: 100% !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        text-align: center !important;
        margin: 0 !important;
        background: #0d0d0d !important;
        border-top: 1px solid rgba(242, 191, 128, 0.2) !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.8) !important;
        z-index: 9999 !important;
    }

    #menu-principal {
        float: none !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 10px 0 !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        white-space: normal !important;
    }

    #menu-principal li {
        float: none !important;
        width: 100% !important;
        display: block !important;
        text-align: center !important;
        margin: 0 !important;
    }

    #menu-principal li a {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 12px 15px !important;
        font-size: 15px !important;
        border-bottom: 1px solid rgba(242, 191, 128, 0.08) !important;
        box-sizing: border-box !important;
    }

    #menu-principal li a:hover,
    #menu-principal li.current-menu-item a {
        background: var(--color-gold-light) !important;
        color: #000000 !important;
    }

    /* 2. Dobra 1: Hero Estática */
    #ht-home-slider-section.ht-hero-static {
        min-height: 520px !important;
        padding-top: 55px !important;
        padding-bottom: 115px !important;
        background-image: url('../assets/images/bg-hero-mobile.webp') !important;
        background-attachment: scroll !important; /* Desativa fixed em mobile para performance suave */
    }

    .ht-hero-static .ht-slide-caption {
        padding: 0 10px !important;
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .ht-slide-cap-title,
    .ht-slide-cap-title span {
        text-align: center !important;
        font-size: 26px !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
        display: block !important;
    }

    .hero-subheadline,
    .ht-slide-cap-desc {
        text-align: center !important;
        font-size: 15px !important;
        line-height: 1.55 !important;
        margin: 0 auto 20px !important;
        max-width: 100% !important;
        display: block !important;
    }

    .hero-cta-wrap,
    .ht-slide-cap-link {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .ht-hero-cta-btn,
    .ht-btn-slide {
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
        font-size: 14px !important;
        padding: 13px 22px !important;
        text-align: center !important;
        white-space: nowrap !important;
        width: auto !important;
        max-width: 100% !important;
        gap: 8px !important;
    }

    .cta-text-desktop {
        display: none !important;
    }

    .cta-text-mobile {
        display: inline !important;
        white-space: nowrap !important;
    }

    .hero-subtext {
        text-align: center !important;
        margin: 14px auto 25px !important;
        font-size: 13.5px !important;
        line-height: 1.5 !important;
        max-width: 340px !important;
    }

    .ht-hero-scroll-btn {
        bottom: 14px !important;
        gap: 3px !important;
    }

    .scroll-btn-mouse {
        width: 18px !important;
        height: 28px !important;
    }

    .scroll-btn-wheel {
        width: 3px !important;
        height: 6px !important;
    }

    .scroll-btn-text {
        font-size: 9.5px !important;
        letter-spacing: 1.1px !important;
    }

    .scroll-btn-chevron {
        width: 15px !important;
        height: 15px !important;
    }

    /* 3. Dobra 2: Sua Reforma, com uma equipe para cuidar de tudo */
    #ht-featured-post-section {
        padding: 60px 0 !important;
        text-align: center !important;
    }

    .ht-section-tagline-desc {
        text-align: center !important;
        font-size: 15px !important;
        line-height: 1.6 !important;
        max-width: 520px !important;
        margin: 10px auto 30px !important;
    }

    .ht-featured-post-wrap {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        max-width: 440px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .ht-featured-post-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 22px 14px !important;
        box-sizing: border-box !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .ht-featured-card-icon {
        margin: 0 auto 12px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .ht-featured-post-card h5 {
        text-align: center !important;
        font-size: 16px !important;
        line-height: 1.3 !important;
        margin: 0 !important;
    }

    .ht-featured-cta-wrap {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 30px auto 0 !important;
        width: 100% !important;
        text-align: center !important;
    }

    .ht-btn-featured {
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
        text-align: center !important;
        font-size: 14px !important;
        padding: 13px 22px !important;
    }

    /* 4. Dobra 3: Nossos Serviços */
    #ht-service-post-section {
        padding: 60px 0 !important;
        text-align: center !important;
    }

    .ht-service-left-bg {
        display: none !important;
    }

    .ht-service-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 420px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .ht-service-post {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 28px 20px !important;
    }

    .ht-service-post h5 {
        text-align: center !important;
        font-size: 20px !important;
        margin-bottom: 10px !important;
        width: 100% !important;
    }

    .ht-service-post p {
        text-align: center !important;
        font-size: 14.5px !important;
        line-height: 1.55 !important;
        margin: 0 0 16px !important;
        width: 100% !important;
    }

    .ht-service-cta {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
        text-align: center !important;
        font-size: 14px !important;
    }

    /* 5. Dobra 4: CTA Intermediário */
    #ht-cta-section {
        padding: 60px 0 !important;
        text-align: center !important;
    }

    #ht-cta-section .ht-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .ht-section-tagline {
        text-align: center !important;
        font-size: 15px !important;
        line-height: 1.55 !important;
        max-width: 480px !important;
        margin: 12px auto 24px !important;
    }

    .ht-cta-buttons {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .ht-cta-button1,
    .ht-btn-cta {
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
        text-align: center !important;
        font-size: 14px !important;
        padding: 13px 22px !important;
    }

    /* 6. Dobra 5: Por que contratar a Machado? */
    #ht-why-us-section,
    #ht-why-section {
        padding: 60px 0 !important;
        text-align: center !important;
    }

    .ht-why-bento-grid,
    .ht-why-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        max-width: 420px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .ht-why-bento-card,
    .ht-why-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 24px 20px !important;
        margin: 0 auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .ht-why-bento-card.ht-bento-featured {
        grid-column: span 1 !important;
        width: 100% !important;
    }

    .ht-why-check-icon,
    .ht-why-icon {
        margin: 0 auto 14px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-shrink: 0 !important;
    }

    .ht-why-content {
        text-align: center !important;
        width: 100% !important;
    }

    .ht-why-content h5 {
        text-align: center !important;
        font-size: 18.5px !important;
        margin-bottom: 8px !important;
    }

    .ht-why-content p {
        text-align: center !important;
        font-size: 14.5px !important;
        line-height: 1.55 !important;
        margin: 0 !important;
    }

    /* 7. Dobra 6: Galeria de Obras (Opção 1 em 1 Coluna) */
    #ht-gallery-section {
        padding: 60px 0 !important;
        text-align: center !important;
    }

    #ht-gallery-section .ht-container {
        max-width: 100% !important;
    }

    .ht-gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 440px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .ht-gallery-item,
    .ht-gallery-item.ht-gallery-item-featured {
        grid-column: span 1 !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .ht-gallery-item img,
    .ht-gallery-item.ht-gallery-item-featured img {
        height: 320px !important;
        width: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    .ht-gallery-overlay {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    .ht-gallery-overlay span {
        margin: 0 auto !important;
    }

    /* 8. Dobra 7: Para quem é o serviço */
    #ht-target-section {
        padding: 60px 0 !important;
        text-align: center !important;
    }

    .ht-target-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 420px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .ht-target-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
        padding: 28px 20px !important;
        box-sizing: border-box !important;
    }

    .ht-target-icon {
        margin: 0 auto 16px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .ht-target-card h5 {
        text-align: center !important;
        font-size: 19px !important;
        margin-bottom: 8px !important;
    }

    .ht-target-card p {
        text-align: center !important;
        font-size: 14.5px !important;
        line-height: 1.55 !important;
        margin: 0 !important;
    }

    /* 9. Dobra 8: Área de Atendimento */
    #ht-locations-section {
        padding: 60px 0 !important;
        text-align: center !important;
    }

    .ht-cities-wrap {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 12px !important;
        max-width: 460px !important;
        margin: 0 auto !important;
    }

    .ht-city-badge {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        font-size: 15px !important;
        padding: 10px 18px !important;
        margin: 0 !important;
    }

    .ht-location-note {
        text-align: center !important;
        max-width: 460px !important;
        margin: 25px auto 0 !important;
        font-size: 14.5px !important;
        line-height: 1.55 !important;
    }

    /* 10. Dobra 9: Como Funciona */
    #ht-how-it-works-section {
        padding: 60px 0 !important;
        text-align: center !important;
    }

    .ht-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 420px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .ht-step-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
        padding: 28px 20px !important;
        box-sizing: border-box !important;
    }

    .ht-step-number {
        margin: 0 auto 14px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .ht-step-card h5 {
        text-align: center !important;
        font-size: 19px !important;
        margin-bottom: 8px !important;
    }

    .ht-step-card p {
        text-align: center !important;
        font-size: 14.5px !important;
        line-height: 1.55 !important;
        margin: 0 !important;
    }

    /* 11. Dobra 10: FAQ */
    #ht-faq-section {
        padding: 60px 0 !important;
        text-align: center !important;
    }

    .ht-faq-wrap {
        max-width: 500px !important;
        margin: 0 auto !important;
        width: 100% !important;
        text-align: left !important;
    }

    .ht-faq-item {
        margin-bottom: 12px !important;
        width: 100% !important;
    }

    .ht-faq-question {
        padding: 16px 18px !important;
        font-size: 15.5px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .ht-faq-answer {
        padding: 16px 18px !important;
        font-size: 14.5px !important;
        line-height: 1.55 !important;
    }

    /* 12. Dobra 11: CTA Final */
    #ht-cta-final-section,
    #ht-final-cta-section {
        padding: 60px 0 !important;
        text-align: center !important;
    }

    #ht-cta-final-section .ht-container,
    #ht-final-cta-section .ht-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        max-width: 480px !important;
        margin: 0 auto !important;
        padding: 0 16px !important;
    }

    .cta-final-desc,
    .ht-final-cta-tagline {
        text-align: center !important;
        font-size: 15px !important;
        line-height: 1.55 !important;
        margin: 0 auto 24px !important;
        max-width: 440px !important;
    }

    .ht-btn-cta-final {
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
        text-align: center !important;
        font-size: 14px !important;
        padding: 13px 22px !important;
    }

    .ht-cta-final-cities {
        text-align: center !important;
        font-size: 13.5px !important;
        line-height: 1.5 !important;
        margin: 20px auto 0 !important;
        max-width: 360px !important;
    }

    /* 13. Rodapé */
    .ht-footer-area,
    #ht-colophon {
        padding: 50px 0 20px !important;
        text-align: center !important;
    }

    .ht-footer-grid,
    .ht-footer-cols {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 35px !important;
        text-align: center !important;
        max-width: 440px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .ht-footer-brand,
    .ht-footer-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .ht-footer-brand h4,
    .ht-footer-col h5 {
        text-align: center !important;
        margin-bottom: 14px !important;
        width: 100% !important;
    }

    .ht-footer-brand p {
        text-align: center !important;
        margin-bottom: 8px !important;
        line-height: 1.5 !important;
    }

    .ht-footer-cities {
        text-align: center !important;
        margin: 6px auto 10px !important;
        font-size: 13.5px !important;
    }

    .ht-footer-cnpj,
    .ht-footer-whatsapp {
        text-align: center !important;
        margin: 0 auto !important;
        font-size: 13.5px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .ht-footer-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 auto !important;
        width: 100% !important;
        list-style: none !important;
    }

    .ht-footer-links li {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 10px !important;
        display: flex !important;
        justify-content: center !important;
    }

    .ht-footer-links li a {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 6px !important;
    }

    #ht-bottom-footer {
        margin-top: 25px !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .ht-bottom-footer-wrap {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 14px !important;
        padding: 20px 15px !important;
        width: 100% !important;
    }

    .ht-bottom-footer-wrap p {
        text-align: center !important;
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin: 0 !important;
    }

    .ht-footer-back-to-top {
        margin: 0 auto !important;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

/* ============================================================
   AJUSTES FINOS PARA TELAS EXTRA PEQUENAS (<= 480px / 375px)
   ============================================================ */
@media screen and (max-width: 480px) {
    .ht-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    #ht-home-slider-section.ht-hero-static {
        min-height: 540px !important;
        padding-top: 50px !important;
        padding-bottom: 120px !important;
    }

    .hero-subtext {
        font-size: 13px !important;
        margin-bottom: 25px !important;
        padding: 0 8px !important;
    }

    .ht-hero-scroll-btn {
        bottom: 12px !important;
    }

    .ht-slide-cap-title {
        font-size: 23px !important;
    }

    .ht-section-title {
        font-size: 24px !important;
    }

    .ht-btn-slide,
    .ht-btn-featured,
    .ht-btn-cta,
    .ht-btn-cta-final {
        font-size: 14px !important;
        padding: 13px 18px !important;
        width: 100% !important;
        max-width: 310px !important;
        box-sizing: border-box !important;
    }

    .ht-hero-cta-btn {
        width: auto !important;
        max-width: 100% !important;
        white-space: nowrap !important;
        font-size: 14px !important;
        padding: 12px 18px !important;
        box-sizing: border-box !important;
    }

    .ht-cities-wrap {
        gap: 8px !important;
    }

    .ht-city-badge {
        width: 100% !important;
        max-width: 280px !important;
        font-size: 14px !important;
        padding: 9px 14px !important;
    }

    .ht-gallery-item img,
    .ht-gallery-item.ht-gallery-item-featured img {
        height: 280px !important;
    }

    .ht-final-cta-card {
        padding: 30px 15px !important;
    }
}

/* ============================================================
   PERFORMANCE: Animações nativas sem sobrecarga de animate.css
   ============================================================ */
.animated {
    animation-duration: 0.7s;
    animation-fill-mode: both;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
.fadeInUp {
    animation-name: fadeInUp;
}

