/**** IMPORT FONT PADRAO ******/
@import url('../fonts/stylesheet.css');

/*******************************/
:root {
    --body-collor: #E8FAF5;
    --color-dark: #0E4242;
    --color-md: #156868;
    --color-green: #3ADDB6;
    --color-white: #FFFFFF;
}

body {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    background: var(--body-collor);
}

/* =============================================
   HEADER - Prime Exteriors
   ============================================= */
/* Wrapper externo com fundo cinza (página) */
.site-header {
    position: sticky;
    top: 16px;
    z-index: 1000;
    padding: 0 16px;
    margin-bottom: 8px;
}

/* Pílula branca */
.header-inner {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--color-white);
    border-radius: 999px;
    padding: 15px 21px 15px 33px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    max-width: 1280px;
    margin: 0 auto;
    margin-top: 30px;
}

/* ---- Logo ---- */
.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 52px;
    width: auto;
    display: block;
}

/* ---- Social Icons ---- */
.header-social {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-green);
    color: var(--color-dark);
    border-radius: 30px;
    font-size: 20px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.header-social a:hover {
    background: var(--color-dark);
    color: var(--color-green);
    transform: translateY(-2px);
}

/* ---- Navigation ---- */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-nav .nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav .nav-menu>li>a {
    display: block;
    color: var(--color-dark);
    font-family: 'Intro';
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.header-nav .nav-menu>li>a:hover,
.header-nav .nav-menu>li.current-menu-item>a {
    color: var(--color-green);
}

/* Dropdown arrow para itens com sub-menu */
.header-nav .nav-menu>li.menu-item-has-children>a::after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 18px;
    margin-left: 5px;
    color: var(--color-green);
}

/* Sub-menu dropdown */
.header-nav .nav-menu .sub-menu {
    display: none;
    position: absolute;
    font-family: 'Intro';
    top: calc(75% + 8px);
    left: 0;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    list-style: none;
    margin: 0;
    padding: 8px;
    min-width: 250px;
    z-index: 100;
}

.header-nav .nav-menu>li.menu-item-has-children {
    position: relative;
}

.header-nav .nav-menu>li.menu-item-has-children:hover .sub-menu {
    display: block;
}

.header-nav .nav-menu .sub-menu li a {
    display: block;
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.header-nav .nav-menu .sub-menu li a:hover {
    background: rgba(58, 221, 182, 0.12);
    color: var(--color-dark);
}

/* ---- CTA Button ---- */
.btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-green);
    color: var(--color-dark);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 40px;
    border-radius: 999px;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.btn-call i {
    font-size: 15px;
}

.btn-call:hover {
    background: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-1px);
}

/* ---- Hamburger (oculto no desktop) ---- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--color-dark);
    border-radius: 999px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Estado ativo (X) */
.hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ---- Mobile Menu ---- */
.mobile-menu {
    display: none;
    background: var(--color-white);
    border-radius: 24px;
    margin-top: 8px;
    padding: 24px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.mobile-nav-menu li a {
    display: block;
    color: var(--color-dark);
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(14, 66, 66, 0.08);
    transition: color 0.2s;
}

.mobile-nav-menu li:last-child a {
    border-bottom: none;
}

.mobile-nav-menu li a:hover {
    color: var(--color-green);
}

/* Sub-menu mobile */
.mobile-nav-menu .sub-menu {
    list-style: none;
    padding: 0 0 0 16px;
    margin: 4px 0;
}

.mobile-nav-menu .sub-menu li a {
    font-size: 15px;
    font-weight: 500;
    padding: 8px 4px;
    border-bottom: none;
    color: var(--color-dark);
    opacity: 0.75;
}

.mobile-social {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-green);
    color: var(--color-white);
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s;
}

.mobile-social a:hover {
    background: var(--color-dark);
}

.mobile-cta {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
    .header-nav .nav-menu>li>a {
        font-size: 14px;
        padding: 6px 9px;
    }

    .header-inner {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .site-header {
        top: 10px;
        padding: 0 12px;
    }

    .header-inner {
        border-radius: 999px;
        padding: 10px 14px 10px 16px;
        gap: 12px;
    }

    /* Ocultar elementos desktop no mobile */
    .header-social,
    .header-nav,
    .btn-call {
        display: none;
    }

    /* Mostrar hamburger */
    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .header-logo img {
        height: 44px;
    }
}



/* ============================================================
   Hero — Prime Exteriors
   Depende das vars do :root já declaradas no tema:
   --body-collor, --color-dark, --color-green, --color-white
   Fonte display: 'Intro' (já carregada no tema)
   ============================================================ */

/* --- Container principal ---------------------------------- */
.pe-hero {
    position: relative;
    width: 95%;
    min-height: 750px;
    height: clamp(380px, 52vw, 620px);
    border-radius: 36px;
    overflow: hidden;
    background-image: var(--hero-bg, none);
    background-size: cover;
    background-position: center center;
    background-color: var(--color-dark);
    margin: 0 auto;
    display: flex;
    margin-top: -45px;
}

/* --- Overlay degradê esquerda ----------------------------- */
.pe-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(14, 66, 66, 0.82) 0%,
            rgba(14, 66, 66, 0.60) 40%,
            rgba(14, 66, 66, 0.15) 65%,
            transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* --- Área de conteúdo ------------------------------------- */
.pe-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    height: 100%;
    max-width: 560px;
    padding: 48px 52px;
}

/* --- Sparkles decorativos --------------------------------- */
.pe-hero__sparkles {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    color: var(--color-green);
    margin-bottom: -6px;
}

.pe-hero__sparkle {
    display: block;
}

.pe-hero__sparkle--lg {
    width: 36px;
    height: 36px;
}

.pe-hero__sparkle--sm {
    width: 22px;
    height: 22px;
    align-self: flex-end;
    margin-bottom: 4px;
}

/* --- Bloco de texto WYSIWYG (content_hero) ---------------- */
/*
   No editor WYSIWYG configure o H1 com a seguinte estrutura:
   Linha 1: "Every <span>inch</span>"  → branco + verde
   Linha 2: "<span>every</span> time"  → verde + branco
   Os estilos abaixo cobrem ambos os padrões.
*/
.pe-hero__text {
    line-height: 1.05;
}

.pe-hero__text h1,
.pe-hero__text h2 {
    font-family: 'Intro', sans-serif;
    font-size: 79px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.0;
    margin: 0 0 20px 0;
    padding: 0;
}

.pe-hero__text h1 strong,
.pe-hero__text h2 strong {
    font-weight: 400;
    color: var(--color-green);
}

/* Palavras em verde dentro do H1 — use <span> no WYSIWYG */
.pe-hero__text h1 span,
.pe-hero__text h2 span {
    color: var(--color-green);
}

/* Parágrafos de apoio dentro do campo (se existirem) */
.pe-hero__text p {
    font-size: 16px;
    color: var(--color-white);
    margin: 8px 0 0;
    opacity: 0.85;
}

/* --- Linha de brand + badge ------------------------------- */
.pe-hero__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pe-hero__brand-name {
    font-family: 'Intro', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

.pe-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border: 1.5px solid var(--color-green);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* --- CTA pill -------------------------------------------- */
.pe-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background-color: var(--color-green);
    color: var(--color-dark);
    font-family: 'Intro', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    align-self: flex-start;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.pe-hero__cta:hover,
.pe-hero__cta:focus-visible {
    background-color: var(--color-white);
    color: var(--color-dark);
    transform: translateY(-2px);
    outline: 2px solid var(--color-green);
    outline-offset: 2px;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
    .pe-hero {
        height: clamp(320px, 60vw, 500px);
        border-radius: 12px;
    }

    .pe-hero__content {
        padding: 36px 36px;
        max-width: 480px;
    }

    .pe-hero__text h1,
    .pe-hero__text h2 {
        font-size: clamp(44px, 7vw, 64px);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .pe-hero {
        height: auto;
        min-height: 480px;
        border-radius: 10px;
    }

    .pe-hero__overlay {
        background: linear-gradient(to bottom,
                rgba(14, 66, 66, 0.75) 0%,
                rgba(14, 66, 66, 0.65) 100%);
    }

    .pe-hero__content {
        padding: 40px 24px 36px;
        max-width: 100%;
        gap: 14px;
    }

    .pe-hero__text h1,
    .pe-hero__text h2 {
        font-size: clamp(38px, 11vw, 54px);
    }

    .pe-hero__sparkle--lg {
        width: 28px;
        height: 28px;
    }

    .pe-hero__sparkle--sm {
        width: 16px;
        height: 16px;
    }

    .pe-hero__cta {
        width: 100%;
        justify-content: center;
    }
}

/* Acessibilidade — respeita prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .pe-hero__cta {
        transition: none;
    }
}

.iConMouse {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: -67px 0 0 0;
    position: relative;
    z-index: 1;
}




/* ============================================================
   Services Carousel — Prime Exteriors
   Depende: Owl Carousel 2 CSS + vars do :root do tema
   ============================================================ */

/* --- Seção wrapper ---------------------------------------- */
.pe-services {
    padding: 64px 50px;
}

.titleSectionOurServices {
    display: flow-root;
    justify-content: center;
    text-align: center;
    font-family: Intro;
    margin: 20px 0 20px 0;
}

.titleSectionOurServices h2 {
    color: var(--color-dark);
    font-size: 40px;
}

.titleSectionOurServices span {
    background: var(--color-green);
    color: #0E4242;
    border-radius: 50px;
    letter-spacing: 5px;
    padding: 3px 15px;
}

/* --- Overrides Owl: remove padding lateral padrão --------- */
.pe-services .owl-carousel .owl-stage-outer {
    padding: 16px 0 24px;
    /* respira verticalmente para o box-shadow dos cards */
}

.pe-services .owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.pe-services .owl-carousel .owl-item {
    display: flex;
}

/* --- Item (wrapper do slide) ------------------------------ */
.pe-services__item {
    padding: 0 10px;
    width: 100%;
    display: flex;
}

/* --- Card ------------------------------------------------- */
.pe-services__card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 24px 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    box-shadow: 0 2px 12px rgba(14, 66, 66, 0.07);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pe-services__card:hover {
    box-shadow: 0 6px 24px rgba(14, 66, 66, 0.13);
    transform: translateY(-3px);
}

/* --- Thumbnail com borda verde ---------------------------- */
.pe-services__thumb {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    border: 2.5px solid var(--color-green);
    overflow: hidden;
    flex-shrink: 0;
}

.pe-services__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Título ----------------------------------------------- */
.pe-services__title {
    font-family: 'Intro', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.25;
    margin: 0;
    width: 200px;
    height: 40px;
}

.pe-services__title a {
    color: inherit;
    text-decoration: none;
}

.pe-services__title a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* --- Texto descritivo (destak_text) ----------------------- */
.pe-services__text {
    font-size: 16px;
    color: var(--color-dark);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    /* empurra o CTA pro fundo do card */
}

/* --- CTA Read more ---------------------------------------- */
.pe-services__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    background-color: var(--color-green);
    color: var(--color-dark);
    font-family: 'Intro', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    align-self: flex-start;
    margin-top: auto;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.pe-services__cta:hover,
.pe-services__cta:focus-visible {
    background-color: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-1px);
    outline: 2px solid var(--color-green);
    outline-offset: 2px;
}

/* --- Dots de navegação ------------------------------------ */
.pe-services .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

/* Dot inativo — círculo verde */
.pe-services .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 100px;
    background-color: var(--color-green);
    transition: width 0.3s ease, background-color 0.3s ease;
}

/* --- Dots de navegação ------------------------------------ */
.owl-dots {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 0px !important;
}

.owl-dot span {
    display: block !important;
    width: 15px !important;
    height: 15px !important;
    border-radius: 100px !important;
    margin: 0 !important;
    background-color: var(--color-green) !important;
    transition: width 0.3s ease, background-color 0.3s ease !important;
}

.owl-dot.active span {
    width: 52px !important;
    background-color: var(--color-md) !important;
}

/* Dot ativo — pílula alongada escura */
.pe-services .owl-dot.active span {
    width: 52px;
    background-color: var(--color-dark);
}

/* --- Setas: removidas ------------------------------------ */
.pe-services .owl-nav {
    display: none !important;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 600px) {
    .pe-services {
        padding: 40px 0;
    }

    .pe-services__card {
        padding: 20px 16px 24px;
    }

    .pe-services__cta {
        width: 100%;
        justify-content: center;
    }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {

    .pe-services__card,
    .pe-services__cta {
        transition: none;
    }
}


/* ============================================================
   About Us — Seção Homepage — Prime Exteriors
   ============================================================ */

.pe-about {
    background-color: var(--body-collor);
    padding: 100px 0 130px 0;
}

.pe-about__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
}

/* ── COLUNA TEXTO ─────────────────────────────────────────── */
.pe-about__col--text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

/* Badge "ABOUT US" */
.pe-about__badge {
    display: inline-block;
    padding: 5px 16px;
    border: 1.5px solid var(--color-green);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-dark);
}

/* H2 — "Welcome to / Prime Exteriors" */
.pe-about__heading {
    font-family: 'Intro', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    color: var(--color-dark);
}

.pe-about__heading--green {
    color: var(--color-green);
    display: block;
}

/* Subtítulo — vem do WYSIWYG, use <h3> ou <strong> no editor */
.pe-about__resume h1 {
    font-family: 'Intro', sans-serif;
    color: var(--color-dark);
    font-size: 40px;
    font-weight: 500;
}

.pe-about__resume h1 strong {
    margin: 0;
    padding: 0;
    color: var(--color-green);
    font-size: 40px;
    font-weight: 500;
}

.pe-about__resume h3,
.pe-about__resume strong {
    font-family: 'Intro', sans-serif;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.25;
    margin: 21px 40px 22px 0;
    display: block;
}

/* Parágrafo */
.pe-about__resume p {
    font-size: 15px;
    color: var(--color-dark);
    line-height: 1.7;
    margin: 0;
    opacity: 0.85;
    max-width: 560px;
}

/* CTA */
.pe-about__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background-color: var(--color-green);
    color: var(--color-dark);
    font-family: 'Intro', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.pe-about__cta:hover,
.pe-about__cta:focus-visible {
    background-color: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    outline: 2px solid var(--color-green);
    outline-offset: 2px;
}

/* ── COLUNA MÍDIA ─────────────────────────────────────────── */
.pe-about__col--media {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Wrapper da imagem — sem background, a imagem já tem fundo removido (recortada) */
.pe-about__image-wrap {
    position: relative;
    width: 100%;
    max-width: 580px;
}

/* Imagem do beija-flor (recortada, sem fundo) */
.pe-about__image {
    display: block;
    width: 150%;
    height: auto;
    object-fit: contain;
    /* mix-blend-mode: multiply; */
    margin: -90px 0 0 -200px;
}

/* ── Card flutuante ──────────────────────────────────────── */
.pe-about__card {
    position: absolute;
    bottom: 2%;
    right: 210px;
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(14, 66, 66, 0.12);
    min-width: 180px;
    max-width: 220px;
}

.pe-about__card-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pe-about__card-logo img {
    max-width: 160px;
    height: auto;
}

/* Fallback caso não haja logo SVG */
.pe-about__card-brand {
    font-family: 'Intro', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.1;
}

.pe-about__card-logo small {
    font-size: 10px;
    color: var(--color-dark);
    opacity: 0.6;
    letter-spacing: 0.02em;
}

/* Badge "Quality guaranteed" */
.pe-about__card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1.5px solid var(--color-green);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-dark);
    white-space: nowrap;
    align-self: flex-start;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
    .pe-about__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pe-about__col--media {
        order: -1;
        /* imagem acima do texto no mobile */
    }

    .pe-about__image-wrap {
        max-width: 420px;
        margin: 0 auto;
    }

    .pe-about__card {
        bottom: 0;
        right: 0;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .pe-about {
        padding: 48px 0;
    }

    .pe-about__inner {
        padding: 0 20px;
    }

    .pe-about__cta {
        width: 100%;
        justify-content: center;
    }

    .pe-about__card {
        position: relative;
        bottom: auto;
        right: auto;
        align-self: center;
        margin-top: 16px;
    }

    .pe-about__image-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
    .pe-about__cta {
        transition: none;
    }
}





/* ============================================================
   Our Reviews — Carousel Section — Prime Exteriors
   ============================================================ */

/* ── Seção ─────────────────────────────────────────────────── */
.pe-reviews {
    background-color: var(--color-dark);
    padding: 72px 0 60px;
    border-radius: 44px;
    margin: 0 56px;
}

.pe-reviews__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── Cabeçalho centralizado ─────────────────────────────────── */
.pe-reviews__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 48px;
    text-align: center;
}

/* Badge "What are they saying about us?" */
.pe-reviews__badge {
    display: inline-block;
    padding: 5px 18px;
    border: 1.5px solid var(--color-green);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-green);
    text-transform: none;
}

/* Título "Our reviews" */
.pe-reviews__title {
    font-family: 'Intro', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    color: var(--color-white);
    margin: 0;
    line-height: 1.1;
}

/* Linha de ações: botão Google + rating */
.pe-reviews__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Botão "Share your review" */
.pe-reviews__btn--google {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background-color: var(--color-green);
    color: var(--color-dark);
    font-family: 'Intro', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.pe-reviews__btn--google:hover {
    background-color: var(--color-white);
    transform: translateY(-1px);
}

/* Badge rating "⭐ 4.9 rating of 518 reviews" */
.pe-reviews__rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 500;
}

/* ── Estrelas ───────────────────────────────────────────────── */
.pe-reviews__stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.pe-reviews__stars--gold {
    color: #F5A623;
    /* dourado para as estrelas */
}

/* ── Carrossel Owl overrides ────────────────────────────────── */
.pe-reviews .owl-carousel .owl-stage-outer {
    padding: 12px 0 20px;
}

.pe-reviews .owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.pe-reviews .owl-carousel .owl-item {
    display: flex;
}

/* ── Item / slide ───────────────────────────────────────────── */
.pe-reviews__item {
    padding: 0 10px;
    display: flex;
    width: 100%;
}

/* ── Card ───────────────────────────────────────────────────── */
.pe-reviews__card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 24px 22px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pe-reviews__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ── Reviewer: avatar + nome + estrelas ─────────────────────── */
.pe-reviews__reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Avatar círculo com inicial */
.pe-reviews__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Intro', sans-serif;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
}

.pe-reviews__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pe-reviews__name {
    font-family: 'Intro', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
}

/* ── Texto do review ────────────────────────────────────────── */
.pe-reviews__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-dark);
    opacity: 0.85;
    flex-grow: 1;
}

.pe-reviews__text p {
    margin: 0;
}

/* ── Dots — mesmo padrão da seção de serviços ───────────────── */
.pe-reviews .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
}

.pe-reviews .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 100px;
    background-color: rgba(58, 221, 182, 0.4);
    transition: width 0.3s ease, background-color 0.3s ease;
}

.pe-reviews .owl-dot.active span {
    width: 32px;
    background-color: var(--color-white);
}

.pe-reviews .owl-dot:hover span {
    background-color: var(--color-green);
}

/* Setas: desativadas */
.pe-reviews .owl-nav {
    display: none !important;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
    .pe-reviews {
        margin: 0 8px;
        border-radius: 16px;
        padding: 52px 0 44px;
    }
}

@media (max-width: 600px) {
    .pe-reviews {
        margin: 0;
        border-radius: 12px;
        padding: 40px 0 36px;
    }

    .pe-reviews__inner {
        padding: 0 16px;
    }

    .pe-reviews__actions {
        flex-direction: column;
        gap: 10px;
    }

    .pe-reviews__btn--google {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {

    .pe-reviews__card,
    .pe-reviews__btn--google {
        transition: none;
    }
}




/* ============================================================
   Latest Articles — Section Homepage — Prime Exteriors
   ============================================================ */

/* ── Seção ─────────────────────────────────────────────────── */
.pe-articles {
    background-color: var(--body-collor);
    padding: 80px 0 72px;
}

.pe-articles__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

/* ── Cabeçalho ─────────────────────────────────────────────── */
.pe-articles__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    max-width: 700px;
}

/* Badge preenchido verde */
.pe-articles__badge {
    display: inline-block;
    padding: 6px 20px;
    background-color: var(--color-green);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-dark);
}

/* Título */
.pe-articles__title {
    font-family: 'Intro', sans-serif;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 500;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.1;
}

/* Subtítulo */
.pe-articles__subtitle {
    font-size: 15px;
    color: var(--color-dark);
    opacity: 0.75;
    line-height: 1.65;
    margin: 0;
}

/* ── Grid 4 colunas ────────────────────────────────────────── */
.pe-articles__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

/* ── Card ──────────────────────────────────────────────────── */
.pe-articles__card {
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pe-articles__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(14, 66, 66, 0.1);
}

/* ── Thumbnail ─────────────────────────────────────────────── */
.pe-articles__thumb-link {
    display: block;
    text-decoration: none;
}

.pe-articles__thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--body-collor);
}

.pe-articles__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pe-articles__card:hover .pe-articles__thumb img {
    transform: scale(1.04);
}

/* Placeholder sem thumbnail */
.pe-articles__thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--body-collor) 0%, rgba(58, 221, 182, 0.2) 100%);
}

/* ── Corpo do card ─────────────────────────────────────────── */
.pe-articles__card>*:not(.pe-articles__thumb-link) {
    padding-left: 20px;
    padding-right: 20px;
}

/* ── Meta: data + categoria ────────────────────────────────── */
.pe-articles__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 18px;
    flex-wrap: wrap;
}

.pe-articles__date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--color-green);
    font-weight: 500;
}

.pe-articles__cat {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-green);
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.pe-articles__cat:hover {
    opacity: 0.75;
}

/* Separador implícito: cor igual, sem nada entre eles no print */

/* ── Título do post ────────────────────────────────────────── */
.pe-articles__post-title {
    font-family: 'Intro', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.35;
    margin: 10px 0 0;
    flex-grow: 1;
    /* empurra o read more pro fundo */
}

.pe-articles__post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}

.pe-articles__post-title a:hover {
    color: var(--color-green);
}

/* ── Read more ─────────────────────────────────────────────── */
.pe-articles__read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 0 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-green);
    text-decoration: none;
    transition: gap 0.2s ease;
    margin-top: auto;
}

.pe-articles__read-more:hover {
    gap: 12px;
}

.pe-articles__read-more svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.pe-articles__read-more:hover svg {
    transform: translateX(3px);
}

/* ── CTA "Read more articles" ──────────────────────────────── */
.pe-articles__footer {
    display: flex;
    justify-content: center;
}

.pe-articles__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background-color: var(--color-green);
    color: var(--color-dark);
    font-family: 'Intro', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.pe-articles__cta:hover,
.pe-articles__cta:focus-visible {
    background-color: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    outline: 2px solid var(--color-green);
    outline-offset: 2px;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

/* Tablet landscape */
@media (max-width: 1100px) {
    .pe-articles__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet portrait */
@media (max-width: 700px) {
    .pe-articles {
        padding: 56px 0 52px;
    }

    .pe-articles__inner {
        padding: 0 20px;
        gap: 32px;
    }

    .pe-articles__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pe-articles__thumb {
        aspect-ratio: 16 / 9;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .pe-articles__cta {
        width: 100%;
        text-align: center;
    }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {

    .pe-articles__card,
    .pe-articles__thumb img,
    .pe-articles__cta,
    .pe-articles__read-more svg {
        transition: none;
    }
}



/* ============================================================
   Footer — Prime Exteriors
   ============================================================ */

.pe-footer {
    background-color: var(--color-dark);
    padding: 114px 0 0;
}

.pe-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.iConMouseFooter {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0px 0 -64px 0;
    position: relative;
    z-index: 1;
}


/* ══════════════════════════════════════════════════════════════
   LINHA SUPERIOR — 3 colunas
══════════════════════════════════════════════════════════════ */
.pe-footer__top {
    display: grid;
    grid-template-columns: 260px 1fr 2fr;
    gap: 48px;
    align-items: start;
}

/* ── Col 1: Brand ───────────────────────────────────────────── */
.pe-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.pe-footer__logo-link {
    display: inline-block;
    line-height: 0;
}

.pe-footer__logo-link img {
    max-width: 160px;
    height: auto;
}

/* Botão "Call us" */
.pe-footer__call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border: 2px solid var(--color-green);
    border-radius: 100px;
    color: var(--color-green);
    font-family: 'Intro', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.pe-footer__call-btn:hover {
    background-color: var(--color-green);
    color: var(--color-dark);
}

/* Ícones sociais */
.pe-footer__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pe-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--color-green);
    border-radius: 50%;
    color: var(--color-green);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.pe-footer__social-link:hover {
    background-color: var(--color-green);
    color: var(--color-dark);
}

/* ── Col 2 & 3: Navs ────────────────────────────────────────── */
.pe-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Título da nav com losango */
.pe-footer__nav-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Intro', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-green);
    margin: 0;
    line-height: 1;
}

.pe-footer__diamond {
    color: var(--color-green);
    flex-shrink: 0;
}

/* Lista de menu gerada pelo WP */
.pe-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pe-footer__menu li a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.15s ease;
}

.pe-footer__menu li a:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Serviços em 2 colunas */
.pe-footer__menu--cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
}

/* ══════════════════════════════════════════════════════════════
   LINHA DE CONTATOS
══════════════════════════════════════════════════════════════ */
.pe-footer__contacts {
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 1px solid rgba(58, 221, 182, 0.15);
    padding-top: 40px;
}

.pe-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    text-decoration: none;
    color: var(--color-green);
    transition: opacity 0.15s ease;
}

a.pe-footer__contact-item:hover {
    opacity: 0.8;
}

/* Ícone com borda quadrada arredondada */
.pe-footer__contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--color-green);
    border-radius: 10px;
    color: var(--color-green);
    flex-shrink: 0;
}

.pe-footer__contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pe-footer__contact-text small {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-green);
    opacity: 0.65;
}

.pe-footer__contact-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-green);
    line-height: 1.5;
}

/* Divisor vertical entre itens de contato */
.pe-footer__contacts-divider {
    width: 1px;
    height: 48px;
    background-color: rgba(58, 221, 182, 0.2);
    margin: 0 32px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   RODAPÉ INFERIOR
══════════════════════════════════════════════════════════════ */
.pe-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(58, 221, 182, 0.15);
    padding: 20px 0 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.pe-footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.pe-footer__bottom-links a {
    font-size: 13px;
    color: var(--color-green);
    opacity: 0.75;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.pe-footer__bottom-links a:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pe-footer__copy {
    font-size: 13px;
    color: var(--color-green);
    opacity: 0.65;
    margin: 0;
    text-align: center;
}

.pe-footer__credit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-green);
    opacity: 0.65;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .pe-footer__top {
        grid-template-columns: 220px 1fr 1.5fr;
        gap: 32px;
    }

    .pe-footer__inner {
        padding: 0 32px;
    }
}

@media (max-width: 860px) {
    .pe-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .pe-footer__brand {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
    }

    .pe-footer__contacts {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .pe-footer__contacts-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
}

/* Mobile */
@media (max-width: 540px) {
    .pe-footer {
        padding: 48px 0 0;
    }

    .pe-footer__inner {
        padding: 0 20px;
        gap: 36px;
    }

    .pe-footer__top {
        grid-template-columns: 1fr;
    }

    .pe-footer__brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .pe-footer__menu--cols {
        grid-template-columns: 1fr 1fr;
    }

    .pe-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

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

@media (prefers-reduced-motion: reduce) {

    .pe-footer__call-btn,
    .pe-footer__social-link,
    .pe-footer__contact-item {
        transition: none;
    }
}



/* ============================================================
   About Us — page-about-us.css
   Mobile-First | Prime Exteriors Design System
   ============================================================ */

/* ── Reset de contexto da página ──────────────────────────── */
.au-page {
    overflow-x: hidden;
    margin-top: -50px;
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.au-hero {
    position: relative;
    background-color: var(--color-dark);
    border-radius: 0 0 24px 24px;
    min-height: 340px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 95%;
    margin: 0 auto;
}


.au-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.imgColibri {
    width: 95%;
    margin: 0 auto;
    position: relative;
}

.imgColibri img {
    margin: -400px 0 0 -100px;
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.au-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    border: 1px solid rgba(58, 221, 182, 0.5);
    border-radius: 100px;
    align-self: flex-start;
}

.au-hero__breadcrumb a,
.au-hero__breadcrumb span {
    font-size: 12px;
    color: var(--color-green);
    text-decoration: none;
    opacity: 0.9;
}

.au-hero__breadcrumb a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Conteúdo (título + subtítulo) ─────────────────────────── */
.au-hero__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 520px;
}

.au-hero__title {
    font-family: 'Intro', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

/* "Welcome to" — verde */
.au-hero__title .au-hero__title-line1 {
    display: block;
    color: var(--color-green);
}

/* A segunda linha fica naturalmente em branco pelo h1 */
.au-hero__title {
    color: var(--color-white);
}

/* Subtítulo — vem de the_content(), estilizado via descendente */
.au-hero__subtitle,
.au-hero__subtitle p {
    font-family: 'Intro', sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.35;
    margin: 0;
}

/* ── Sparkles ───────────────────────────────────────────────── */
.au-hero__sparkles {
    position: absolute;
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
    color: var(--color-green);
    pointer-events: none;
    z-index: 2;
}

.au-hero__spark {
    position: absolute;
    fill: currentColor;
}

.au-hero__spark--lg {
    width: 72px;
    height: 72px;
    top: -20px;
    left: 20px;
}

.au-hero__spark--md {
    width: 52px;
    height: 52px;
    top: 40px;
    left: 80px;
}

.au-hero__spark--sm {
    width: 28px;
    height: 28px;
    top: 90px;
    left: 10px;
}

/* ── Scroll icon ────────────────────────────────────────────── */
.au-hero__scroll {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--color-dark);
    border-radius: 50%;
    border: 2px solid var(--color-green);
}

.au-hero__scroll img {
    width: 20px;
    height: auto;
    display: block;
}

/* ════════════════════════════════════════════════════════════
   CONTEÚDO PRINCIPAL — Texto + Missão
════════════════════════════════════════════════════════════ */
.au-about {
    padding: 0 0 0 70px;
    margin: -40px 0 20px 0;
}

.au-about__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* ── Texto institucional ────────────────────────────────────── */
.au-about__text {
    color: var(--color-dark);
}

.au-about__text p {
    font-size: 15px;
    line-height: 1.75;
    text-align: justify;
    margin: 0 0 20px;
    opacity: 0.88;
}

.au-about__text p:last-child {
    margin-bottom: 0;
}

/* ── Card Missão ────────────────────────────────────────────── */
.au-mission__card {
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(14, 66, 66, 0.1);
    margin: -140px 160px 0 80px;
    position: relative;
}

.au-mission__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Intro', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.au-mission__title svg {
    color: var(--color-dark);
    flex-shrink: 0;
}

.au-mission__text,
.au-mission__text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark);
    opacity: 0.85;
    margin: 0;
}

/* Badge "Quality guaranteed" */
.au-mission__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1.5px solid var(--color-green);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-dark);
    align-self: flex-start;
}

/* ════════════════════════════════════════════════════════════
   WHY CHOOSE PRIME EXTERIORS
════════════════════════════════════════════════════════════ */
.au-why {
    position: relative;
    background-color: var(--color-green);
    border-radius: 24px;
    margin: 0 16px 80px;
    padding: 64px 24px 56px;
}

/* Losango/mouse decorativo no topo */
.au-why__top-icon {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    background-color: var(--color-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    rotate: 0deg;
}

/* O SVG losango fica atrás, o ícone mouse fica em cima */
.au-why__top-icon svg {
    position: absolute;
    width: 52px;
    height: 52px;
    color: var(--color-dark);
    /* Na verdade o losango é o container rotacionado */
}

.au-why__top-icon {
    rotate: 45deg;
}

.au-why__top-icon img {
    rotate: -45deg;
    position: relative;
    z-index: 1;
}

.au-why__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ── Header da seção ────────────────────────────────────────── */
.au-why__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
}

.au-why__title {
    font-family: 'Intro', sans-serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.15;
}

.au-why__subtitle {
    font-size: 14px;
    color: var(--color-dark);
    opacity: 0.85;
    line-height: 1.65;
    margin: 0;
}

/* ── Grid de 4 cards ────────────────────────────────────────── */
.au-why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* ── Card individual ────────────────────────────────────────── */
.au-why__card {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    backdrop-filter: blur(4px);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.au-why__card p strong {
    display: flex;
    font-family: Intro;
    font-size: 19px;
    gap: 15px;
    padding: 0 40px 0 0;
    line-height: 23px;
}

.au-why__card:hover {
    background-color: rgba(255, 255, 255, 0.75);
    transform: translateY(-3px);
}

/* Losango verde escuro no topo do card */
.au-why__card-icon {
    width: 36px;
    height: 36px;
    color: var(--color-dark);
    flex-shrink: 0;
}

.au-why__card-icon svg {
    width: 100%;
    height: 100%;
}

.au-why__card-title {
    font-family: 'Intro', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
    margin: 0;
}

.au-why__card-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--color-dark);
    opacity: 0.85;
    margin: 0;
}

.iConMouseAboutUs {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 0 -67px 0;
    position: relative;
    z-index: 1;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVO — Tablet (≥ 640px)
════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
    .au-hero {
        min-height: 400px;
    }

    .au-hero__inner {
        padding: 48px 40px 72px;
    }

    .au-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVO — Desktop (≥ 960px)
════════════════════════════════════════════════════════════ */
@media (min-width: 960px) {

    /* Hero */
    .au-hero {
        min-height: 460px;
        border-radius: 40px;
    }

    .au-hero__inner {
        padding: 56px 48px 80px;
    }

    .au-hero__sparkles {
        left: 42%;
    }


    .au-about__inner {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: 64px;
    }

    /* Why — 4 colunas */
    .au-why {
        margin: 0 24px 96px;
        padding: 72px 48px 64px;
    }

    .au-why__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVO — Large (≥ 1200px)
════════════════════════════════════════════════════════════ */
@media (min-width: 1200px) {
    .au-hero__inner {
        padding: 145px 24px 122px;
    }

    .au-why {
        padding: 40px;
        margin: -40px 0 20px 0;
    }
}

/* ════════════════════════════════════════════════════════════
   ACESSIBILIDADE
════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .au-why__card {
        transition: none;
    }
}

/* Focus visible global para navegação por teclado */
.au-page a:focus-visible,
.au-page button:focus-visible {
    outline: 2px solid var(--color-green);
    outline-offset: 3px;
    border-radius: 4px;
}


/* ============================================================
   Single Service — single-service.css
   Mobile-First | Prime Exteriors Design System
   Fontes: 'Intro' (display) | 'Inter' (body)
   ============================================================ */

/* ── Base da página ─────────────────────────────────────────── */
.ss-page {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    margin-top: -50px;
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.ss-hero {
    position: relative;
    background-color: var(--color-dark);
    border-radius: 35px;
    padding-bottom: 0;
    margin: 0 auto;
    width: 95%;
}

.ss-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 24px 48px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 32px;
    position: relative;
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.ss-hero__breadcrumb {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 18px;
    border: 1px solid rgba(58, 221, 182, 0.45);
    border-radius: 100px;
    align-self: start;
    justify-self: start;
}

.ss-hero__breadcrumb a,
.ss-hero__breadcrumb span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--color-green);
    text-decoration: none;
    opacity: 0.9;
    line-height: 1;
}

.ss-hero__breadcrumb a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Conteúdo (título + subtítulo) ─────────────────────────── */
.ss-hero__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: center;
    padding-bottom: 12px;
}

.ss-hero__title {
    font-family: 'Intro', sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: var(--color-green);
    line-height: 1.1;
    margin: 0;
}

.ss-hero__subtitle {
    font-family: 'Intro', sans-serif;
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.35;
    margin: 0;
    max-width: 420px;
}

/* ── Imagem destacada ───────────────────────────────────────── */
.ss-hero__image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* Sobe um pouco para sair do hero no desktop */
    align-self: end;
}

.ss-hero__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

/* ── CTA "Quote now" ────────────────────────────────────────── */
.ss-hero__cta-wrap {
    display: flex;
    padding: 0 24px;
    position: relative;
    /* Distância do topo do bloco ao fundo do hero */
    top: -12px;
    max-width: 1280px;
    margin: 0 auto;
}

.ss-hero__cta {
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background-color: var(--color-green);
    color: var(--color-dark);
    font-family: 'Intro', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.ss-hero__cta svg {
    flex-shrink: 0;
}

.ss-hero__cta:hover,
.ss-hero__cta:focus-visible {
    background-color: var(--color-white);
    color: var(--color-dark);
    transform: translateY(-2px);
    outline: 2px solid var(--color-green);
    outline-offset: 2px;
}

/* ════════════════════════════════════════════════════════════
   CONTEÚDO PRINCIPAL — the_content()
════════════════════════════════════════════════════════════ */
.ss-content {
    padding: 0 24px 56px;
}

.ss-content__inner {
    max-width: 1150px;
    margin: 0 auto;
}

/* ── Tipografia do conteúdo ─────────────────────────────────── */

/* Primeiro parágrafo — destaque bold */
.ss-content__inner>p:first-child,
.ss-content__inner>p:first-of-type {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.75;
    margin: 0 0 28px;
}

/* Parágrafos normais */
.ss-content__inner p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.75;
    margin: 0 0 20px;
    opacity: 0.88;
}

.ss-content__inner p:last-child {
    margin-bottom: 0;
}

/* H2 — "Why Professional..." */
.ss-content__inner h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
    margin: 32px 0 10px;
}

.ss-content__inner h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
    margin: 24px 0 8px;
}

/* Links dentro do conteúdo */
.ss-content__inner a {
    color: var(--color-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ss-content__inner a:hover {
    opacity: 0.8;
}

/* ── Strong inline (título bold dentro de parágrafo) ────────── */
.ss-content__inner strong {
    font-weight: 700;
    color: var(--color-dark);
}

/* ════════════════════════════════════════════════════════════
   KEY SERVICE FEATURES
════════════════════════════════════════════════════════════ */
.ss-features {
    padding: 0 24px 80px;
}

.ss-features__inner {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Título da seção */
.ss-features__title {
    font-family: 'Intro', sans-serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.15;
}

/* ── Grid de cards ──────────────────────────────────────────── */
.ss-features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* ── Card individual ────────────────────────────────────────── */
.ss-features__card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 24px 22px 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(14, 66, 66, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ss-features__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(14, 66, 66, 0.11);
}

/* Texto do card — o bold inline vem de <strong> no campo ACF */
.ss-features__card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.72;
    margin: 0;
    opacity: 0.9;
}

/* Strong dentro do card — título inline bold */
.ss-features__card-text strong,
.ss-features__card p strong {
    font-weight: 700;
    color: var(--color-dark);
    opacity: 1;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVO — Tablet (≥ 640px)
════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
    .ss-hero__inner {
        padding: 40px 32px 52px;
    }

    .ss-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVO — Desktop (≥ 960px)
════════════════════════════════════════════════════════════ */
@media (min-width: 960px) {

    /* Hero — 2 colunas */
    .ss-hero {
        margin-bottom: 72px;
    }

    .ss-hero__inner {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 1fr;
        column-gap: 48px;
        padding: 40px 48px 0;
        align-items: end;
    }

    .ss-hero__breadcrumb {
        grid-column: 1 / -1;
    }

    .ss-hero__content {
        padding-bottom: 48px;
    }

    .ss-hero__image-wrap {
        /* Imagem ultrapassa o hero para baixo */
        margin-bottom: -64px;
        position: relative;
        z-index: 2;
        max-width: 540px;
        justify-self: end;
    }

    .ss-hero__image {
        border-radius: 20px;
        height: 340px;
        object-fit: cover;
        object-position: center top;
    }

    .ss-hero__cta-wrap {
        padding: 0 48px;
        top: -8px;
    }

    /* Conteúdo e features */
    .ss-content {
        padding: 0 48px 64px;
    }

    .ss-features {
        padding: 0 48px 96px;
    }

    .ss-features__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVO — Large (≥ 1200px)
════════════════════════════════════════════════════════════ */
@media (min-width: 1200px) {
    .ss-hero__inner {
        padding: 108px 64px 0;
    }

    .ss-hero__cta-wrap {
        padding: 0 64px;
        margin-top: -40px;
        margin-bottom: 40px;
    }

    .ss-hero__image-wrap {
        margin-bottom: -80px;
    }

    .ss-hero__image {
        height: 380px;
    }

    .ss-content {
        padding: 0 64px 72px;
    }

    .ss-features {
        padding: 0 64px 96px;
    }
}

/* ════════════════════════════════════════════════════════════
   ACESSIBILIDADE
════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

    .ss-hero__cta,
    .ss-features__card {
        transition: none;
    }
}

.ss-page a:focus-visible,
.ss-page button:focus-visible {
    outline: 2px solid var(--color-green);
    outline-offset: 3px;
    border-radius: 4px;
}


/*========================================================= MODAL =======================================*/
/* Modal Base */
.ss-quote-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ss-quote-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.ss-quote-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.ss-quote-modal__container {
    background-color: var(--color-white);
    border: 1px solid #eee;
    border-radius: 15px;
    /* Mais arredondado como na imagem */
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.ss-quote-modal.is-open .ss-quote-modal__container {
    transform: translateY(0);
}

/* Header */
.ss-quote-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: none;
    padding-bottom: 0;
    position: relative;
    /* Para posicionar o botão de fechar */
}

.ss-quote-modal__title {
    font-family: 'Intro', sans-serif;
    font-size: 2.2em;
    /* Um pouco maior */
    color: var(--color-dark);
    margin: 0;
    position: relative;
}


.ss-quote-modal__close {
    background: none;
    border: none;
    font-size: 2.5em;
    color: var(--color-dark);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
    position: absolute;
    /* Posiciona o botão de fechar */
    top: 20px;
    right: 20px;
}

.ss-quote-modal__close:hover {
    color: var(--color-green);
}

/* Form Content */
.ss-quote-modal__content {
    padding-top: 10px;
}

.ss-form-section {
    margin-bottom: 25px;
}

.ss-form-section__title {
    font-family: 'Intro', sans-serif;
    font-size: 1.6em;
    /* Um pouco maior */
    color: var(--color-dark);
    margin: 30px 0 15px 0;
    /* Mais espaçamento superior */
    position: relative;
}


.ss-form-section__description {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--color-dark);
    margin-top: -10px;
    /* Ajusta o espaçamento com o título */
}

.ss-form-section__description span {
    font-weight: 600;
    color: var(--color-green);
}

.ss-field-group {
    margin-bottom: 20px;
}

/* Layout para campos lado a lado */
.ss-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.ss-form-row .ss-field-group {
    flex: 1;
    margin-bottom: 0;
}

.ss-field-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.95em;
}

.ss-field-group input[type="text"],
.ss-field-group input[type="number"],
.ss-field-group input[type="email"],
.ss-field-group input[type="tel"],
.ss-field-group select,
.ss-field-group textarea {
    width: 100%;
    padding: 14px 18px;
    /* Aumenta o padding para melhor espaçamento */
    border: 1px solid #e0e0e0;
    /* Borda mais suave */
    border-radius: 8px;
    /* Cantos mais arredondados */
    font-size: 1em;
    font-family: 'Inter', sans-serif;
    color: var(--color-dark);
    background-color: var(--body-collor);
    /* Mantém o body-color para inputs */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
    /* Sombra interna sutil */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ss-field-group input:focus,
.ss-field-group select:focus,
.ss-field-group textarea:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(58, 221, 182, 0.3);
    outline: none;
    background-color: var(--color-white);
}

.ss-field-group input::placeholder,
.ss-field-group textarea::placeholder {
    color: #999;
}

/* Buttons */
.ss-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    border: 2px solid transparent;
}

.ss-button--primary {
    background-color: var(--color-green);
    color: var(--color-white);
    border-color: var(--color-green);
    border-radius: 50px;
    padding: 14px 30px;
    font-size: 1.2em;
    /* Botão maior */
}

.ss-button--primary:hover {
    background-color: #30b89a;
    /* A slightly darker shade of green */
    border-color: #30b89a;
}

.ss-button--secondary {
    background-color: transparent;
    color: var(--color-dark);
    border-color: var(--color-dark);
    margin-right: 15px;
    border-radius: 50px;
    padding: 14px 30px;
    font-size: 1.2em;
    /* Botão maior */
}

.ss-button--secondary:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
}

/* Form Messages */
.ss-form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    /* Cantos mais arredondados */
    font-weight: 600;
    text-align: center;
}

.ss-form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.ss-form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.ss-form-info {
    font-size: 0.9em;
    color: #666;
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #f0f0f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.ss-form-info i {
    margin-right: 10px;
    color: var(--color-green);
}

/* Basic Responsiveness */
@media (max-width: 768px) {
    .ss-quote-modal__container {
        width: 95%;
        padding: 20px;
    }

    .ss-quote-modal__title {
        font-size: 1.5em;
    }

    .ss-quote-modal__close {
        font-size: 2em;
    }

    .ss-button {
        width: 100%;
        margin-bottom: 10px;
    }

    .ss-button--secondary {
        margin-right: 0;
    }
}



/* Hero Section */
.blog-hero {
    height: 430px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 40px;
    display: flex;
    align-items: center;
    margin-bottom: -100px;
    overflow: visible;
    width: 95%;
    margin: 0 auto;
    margin-top: -50px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-sparkles {
    margin-bottom: 10px;
}

.hero-title {
    color: var(--color-white);
    font-family: Intro;
    font-size: 64px;
    font-weight: 500;
    margin: 0;
    padding: 0 0 0 80px;
}

.mouse-scroll-indicator {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: var(--color-green);
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mouse-scroll-indicator img {
    width: 24px;
}

/* Highlights Grid */
.blog-highlights {
    position: relative;
    z-index: 5;
    padding-bottom: 60px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -200px;
}

.highlight-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-card .card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
    display: grid;
    align-items: stretch;
}

.card-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--color-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.post-title {
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 20px 0;
}

.post-title a {
    text-decoration: none;
    color: var(--color-dark);
}

.read-more {
    color: var(--color-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--color-dark);
}

/* Main Layout */
.post-category a {
    text-decoration: none;
    color: var(--color-green);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    padding-bottom: 100px;
}

.section-title {
    font-size: 24px;
    margin-bottom: 30px;
}

/* Horizontal Cards */
.post-horizontal-card {
    display: flex;
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.post-horizontal-card .card-image {
    width: 300px;
    flex-shrink: 0;
}

.post-horizontal-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sidebar */
.blog-sidebar {}

.sidebar-widget {
    margin-bottom: 40px;
}

.search-widget,
.categories-widget {
    background: var(--color-green);
    padding: 30px;
    border-radius: 25px;
    color: var(--color-dark);
}

.search-input-wrapper {
    background: var(--color-white);
    border-radius: 10px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-field {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
}

.widget-title {
    font-size: 22px;
    margin: 0 0 20px 0;
}

.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget li {
    margin-bottom: 12px;
}

.categories-widget li a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    transition: opacity 0.2s;
}

.categories-widget li a:hover {
    opacity: 0.7;
}

/* Most Clicked Widget */
.most-clicked-widget .widget-title {
    color: var(--color-dark);
}

.mini-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.mini-thumb {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
}

.mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.mini-title {
    font-size: 14px;
    margin: 0 0 5px 0;
}

.mini-title a {
    text-decoration: none;
    color: var(--color-dark);
}

.mini-date {
    font-size: 11px;
    color: #888;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .post-horizontal-card {
        flex-direction: column;
    }

    .post-horizontal-card .card-image {
        width: 100%;
        height: 200px;
    }

    .hero-title {
        font-size: 48px;
    }
}


.heroBlogOpen span {
    color: var(--color-green);
    background: var(--color-dark);
    border-radius: 50px;
    padding: 5px 10px;
    margin-bottom: 25px;
}

.heroBlogOpen h1 {
    color: #fff;
    font-size: 25px;
    width: 70%;
    margin-top: 25px;
}

.contentBlogOpen p {
    font-size: 17px;
    line-height: 170%;
    text-align: justify;
    color: #383838;
}

.contentBlogOpen h1,
.contentBlogOpen h2,
.contentBlogOpen h3 {
    color: var(--color-dark);
    font-family: Intro;
}

.contentBlogOpen .attachment-thumb-post-blog-open {
    width: 100%;
    height: auto;
    border-radius: 30px;
    margin: -90px 0 0 0;
    position: relative;
}





/* ============================================================
   Contact Page — page-contact.php — Prime Exteriors
   Fontes: 'Intro' (destaque) | 'Inter' (conteúdo)
   ============================================================ */

.contact-page {
    font-family: 'Inter', sans-serif;
    margin-top: -50px;
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.contact-hero {
    background: url(../images/bgContactHero.webp) no-repeat center center var(--color-dark);
    border-radius: 40px;
    width: 95%;
    margin: 0 auto;
}

.contact-hero__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 32px 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.contact-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 18px;
    border: 1px solid rgba(58, 221, 182, 0.45);
    border-radius: 100px;
    align-self: flex-start;
}

.contact-hero__breadcrumb a,
.contact-hero__breadcrumb span {
    font-size: 12px;
    color: var(--color-green);
    text-decoration: none;
    opacity: 0.9;
}

.contact-hero__breadcrumb a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Grid: texto + info ────────────────────────────────────── */
.contact-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

/* ── Coluna texto ───────────────────────────────────────────── */
.contact-hero__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-hero__title {
    font-family: 'Intro', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.contact-hero__title-line1 {
    font-size: clamp(28px, 4vw, 38px);
    color: var(--color-green);
}

.contact-hero__title-line2 {
    font-size: clamp(28px, 4vw, 38px);
    color: var(--color-white);
}

.contact-hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
}

/* ── Coluna info de contato ─────────────────────────────────── */
.contact-hero__info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-hero__info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-hero__info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-green);
    border-radius: 10px;
    color: var(--color-dark);
    flex-shrink: 0;
}

.contact-hero__info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-hero__info-text small {
    font-size: 12px;
    color: var(--color-green);
    opacity: 0.85;
}

.contact-hero__info-text a,
.contact-hero__info-text span {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    line-height: 1.4;
}

.contact-hero__info-text a:hover {
    color: var(--color-green);
}

/* ════════════════════════════════════════════════════════════
   ZONA DO FORMULÁRIO — Card flutuante + Mapa
════════════════════════════════════════════════════════════ */
.contact-form-zone {
    position: relative;
    padding-bottom: 0px;
}

/* ── Pin/losango decorativo ────────────────────────────────── */
.contact-form-zone__pin {
    position: absolute;
    left: 8%;
    top: 540px;
    width: 64px;
    height: 64px;
    z-index: 3;
    display: none;
}

.contact-form-zone__pin-diamond {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: var(--color-green);
}

.contact-form-zone__pin-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-dark);
}

/* ── Mapa de fundo ──────────────────────────────────────────── */
.contact-form-zone__map {
    position: relative;
    width: 100%;
    max-width: 1320px;
    margin: -80px auto 0;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
}

/* ── Card branco do formulário ─────────────────────────────── */
.contact-card {
    position: relative;
    z-index: 4;
    max-width: 700px;
    margin: -440px auto 0;
    background-color: var(--color-white);
    border-radius: 24px;
    padding: 40px 32px 44px;
    box-shadow: 0 20px 60px rgba(14, 66, 66, 0.18);
}

.contact-card__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Intro', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 28px;
}

.contact-card__title svg {
    color: var(--color-green);
    flex-shrink: 0;
}

/* ── Alertas de feedback ────────────────────────────────────── */
.contact-card__alert {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-card__alert--success {
    background-color: rgba(58, 221, 182, 0.18);
    color: var(--color-dark);
    border: 1.5px solid var(--color-green);
}

.contact-card__alert--error {
    background-color: rgba(220, 53, 69, 0.08);
    color: #B3261E;
    border: 1.5px solid rgba(220, 53, 69, 0.4);
}

.contact-card__alert--error ul {
    margin: 0;
    padding-left: 18px;
}

/* ── Formulário ─────────────────────────────────────────────── */
.contact-card__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-card__field {
    width: 100%;
}

.contact-card__field--full {
    grid-column: 1 / -1;
}

/* Honeypot — escondido visualmente mas acessível a bots */
.contact-card__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ── Inputs ─────────────────────────────────────────────────── */
.contact-card__input,
.contact-card__textarea {
    width: 100%;
    background-color: var(--body-collor);
    border: 1.5px solid transparent;
    border-radius: 12px;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--color-dark);
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-card__input::placeholder,
.contact-card__textarea::placeholder {
    color: rgba(14, 66, 66, 0.55);
}

.contact-card__input:focus,
.contact-card__textarea:focus {
    border-color: var(--color-green);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(58, 221, 182, 0.15);
}

.contact-card__textarea {
    resize: vertical;
    min-height: 130px;
    font-family: 'Inter', sans-serif;
}

/* ── reCAPTCHA wrapper ──────────────────────────────────────── */
.g-recaptcha {
    transform-origin: left top;
}

/* ── Privacy note ───────────────────────────────────────────── */
.contact-card__privacy {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--color-dark);
    opacity: 0.7;
    line-height: 1.5;
    margin: 4px 0 4px;
}

.contact-card__privacy svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-dark);
}

/* ── Submit ─────────────────────────────────────────────────── */
.contact-card__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 14px 40px;
    background-color: var(--color-green);
    color: var(--color-dark);
    font-family: 'Intro', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.contact-card__submit:hover,
.contact-card__submit:focus-visible {
    background-color: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    outline: 2px solid var(--color-green);
    outline-offset: 2px;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVO
════════════════════════════════════════════════════════════ */

@media (min-width: 768px) {
    .contact-hero__grid {
        grid-template-columns: 1.4fr 1fr;
        gap: 56px;
    }

    .contact-form-zone__pin {
        display: block;
    }
}

@media (min-width: 960px) {
    .contact-hero__inner {
        padding: 128px 58px 148px;
    }

    .contact-card {
        margin-top: -80px;
        padding: 48px 48px 52px;
    }

    .contact-form-zone__map {
        margin-top: -88px;
    }
}

@media (max-width: 767px) {

    .contact-hero {
        background: url(../images/bgContactHero.webp) no-repeat bottom right var(--color-dark);
    }

    .contact-hero__inner {
        padding: 62px 20px 48px;
    }

    .contact-hero__title-line1,
    .contact-hero__title-line2 {
        font-size: 30px;
    }

    .contact-form-zone__map {
        margin-top: -40px;
        height: 280px;
        border-radius: 16px;
        margin-left: 16px;
        margin-right: 16px;
        width: calc(100% - 32px);
    }

    .contact-card {
        margin-top: 20px;
        margin-left: 16px;
        margin-right: 16px;
        width: calc(100% - 32px);
        padding: 28px 20px 32px;
        border-radius: 16px;
    }

    .contact-card__row {
        grid-template-columns: 1fr;
    }

    .contact-card__submit {
        width: 100%;
    }

    .contact-form-zone__pin {
        display: none;
    }

    .contact-form-zone {
        padding-bottom: 48px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .contact-card__input,
    .contact-card__textarea,
    .contact-card__submit {
        transition: none;
    }
}

.contact-page a:focus-visible,
.contact-page button:focus-visible,
.contact-page input:focus-visible,
.contact-page textarea:focus-visible {
    outline: 2px solid var(--color-green);
    outline-offset: 3px;
    border-radius: 4px;
}






/******************** BANNER COOKIES ****************************/

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: var(--cinzaTextoMS);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-text p {
    color: var(--cinzaMedioMS);
    font-size: 14px;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--vermelhoMS);
    text-decoration: none;
    font-weight: 500;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-accept {
    background: var(--color-dark);
    color: white;
}

.btn-accept:hover {
    background: var(--color-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-settings {
    background-color: var(--bgCinzaSuaveMS);
    color: var(--cinzaTextoMS);
}

.btn-settings:hover {
    background-color: #e0e0e0;
}

.demo-container {
    text-align: center;
    margin-top: 100px;
}

.demo-container h1 {
    color: var(--cinzaTextoMS);
    margin-bottom: 16px;
}

.demo-container button {
    padding: 12px 24px;
    background-color: var(--vermelhoMS);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.demo-container button:hover {
    background-color: #c5000f;
    color: #FFF;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn {
        flex: 1;
        min-width: 120px;
    }
}


.mapGoogle {
    width: 100%;
    margin: -90px 0 50px 0;
}

.mapGoogle iframe {
    width: 100%;
    height: 590px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(14, 66, 66, 0.18);
}






/* ═══════════════ BANNER ═══════════════ */
.pe-banner-section {
    width: 100%;
    padding: 32px 16px;
    background-color: #E9FBF5;
    /* fundo mint claro em volta do card */
    display: flex;
    justify-content: center;
}

.pe-banner {
    position: relative;
    width: 100%;
    max-width: 1120px;
    aspect-ratio: 1120 / 276;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.pe-banner__content {
    position: relative;
    z-index: 2;
    max-width: 480px;
    padding: 0 0 0 48px;
}

.pe-banner__title {
    font-size: 2.5rem;
    line-height: 1.15;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px;
    font-family: Intro;
}

.pe-banner__highlight {
    color: #3ADDB6;
}

.pe-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3ADDB6;
    color: #0E3B36;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.pe-banner__cta:hover {
    background: #2fc9a4;
    transform: translateY(-2px);
    color: #0E3B36;
}

.pe-banner__cta i {
    font-size: 1rem;
}

/* ═══════════════ MOBILE ═══════════════ */
@media (max-width: 767px) {
    .pe-banner-section {
        padding: 20px 16px;
    }

    .pe-banner {
        aspect-ratio: auto;
        min-height: 380px;
        align-items: flex-start;
        border-radius: 16px;
    }

    .pe-banner__content {
        padding: 25px 24px 28px;
        max-width: 100%;
    }

    .pe-banner__title {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .pe-banner__cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pe-banner__title {
        font-size: 2.35rem;
        margin: 20px 0 40px 0;
    }
}




/************** LOOP PAGE ***************/
.the__title {
    font-family: 'Intro', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    display: flex;
    flex-direction: column;
    color: var(--color-green);
}

.heroLoopPages {
    margin-top: -50px;
}


.entry__content {
    background-color: var(--color-white);
    border-radius: 24px;
    padding: 40px 55px;
    box-shadow: 0 20px 60px rgba(14, 66, 66, 0.18);
    margin-top: -70px;
    margin-bottom: 50px;
    color: #383838;
}

@media (max-width: 767px) {
    .entry__content {
        margin-top: 20px;
    }
}

.entry__content p {
    line-height: 170%;
}

.entry__content h1,
.entry__content h2,
.entry__content h3 {
    color: var(--color-dark);
    font-family: Intro;
}