﻿
@media (max-width: 1345px) {

    .container,
    .container-fluid,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .nav-item:last-child .nav-link {
        padding-right: 0 !important;
    }
}




/* Importação de fontes locais */
@font-face {
    font-family: 'Outfit';
    src: url('../../fonts/Outfit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('../../fonts/Outfit-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('../../fonts/Outfit-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('../../fonts/Outfit-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('../../fonts/Outfit-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('../../fonts/Outfit-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('../../fonts/Outfit-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Outfit';
    src: url('../../fonts/Outfit-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}


/* Adicione outras fontes conforme necessário */

:root {
    /* Cores principais */
    --color-primary: #1d2a3a;
    --color-primary-green: #68b44f;
    --color-primary-green-rgba: 104, 180, 79;
    --color-secondary: #2e3d50;
    --color-secondary-green: #98c377;
    --color-secondary-green-rgba: 152, 196, 120;
    --white: #ffffff;
    --black: #000000;
    --color-dark: #212529;
    --color-light: #f8f9fa;
    /* Fonte base */
    --font-base: 'Outfit', Arial, sans-serif;
    /* Espaçamentos */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4.8rem;
    /* Tamanhos de títulos */
    --h1-size: 3.25rem;
    --h2-size: 2.5rem;
    --h3-size: 2rem;
    --h4-size: 1.75rem;
    --h5-size: 1.5rem;
    --h6-size: 1.125rem;
    --h7-size: 1rem;
    --h8-size: 0.875rem;
}

body {
    font-family: var(--font-base);
    background-color: var(--white);
    color: var(--color-dark);
}
p, .p {
    /*font-size: 1.25rem;*/
    line-height: 1.45;
    margin-bottom: 1rem;
}
h1,
.h1:not(.fa-solid):not(.fa) {
    /*font-size: var(--h1-size);*/
    font-weight: normal;
    overflow-wrap: anywhere;
}

h2,
.h2:not(.fa-solid):not(.fa) {
    /*font-size: var(--h2-size);*/
    font-weight: normal;
    overflow-wrap: anywhere;
}

h3,
.h3:not(.fa-solid):not(.fa) {
    /*font-size: var(--h3-size);*/
    font-weight: normal;
    overflow-wrap: anywhere;
}

.head-4 {
    font-size: var(--h4-size);
}

h4,
.h4:not(.fa-solid):not(.fa) {
    /*font-size: var(--h4-size);*/
    font-weight: normal;
    overflow-wrap: anywhere;
}

h5,
.h5:not(.fa-solid):not(.fa) {
    /*font-size: var(--h5-size);*/
    font-weight: normal;
    overflow-wrap: anywhere;
}

h6,
.h6:not(.fa-solid):not(.fa) {
    /*font-size: var(--h6-size);*/
    font-weight: normal;
    overflow-wrap: anywhere;
}

h7,
.h7:not(.fa-solid):not(.fa) {
    /*font-size: var(--h7-size);*/
    font-weight: normal;
    overflow-wrap: anywhere;
}

h8,
.h8:not(.fa-solid):not(.fa) {
    /*font-size: var(--h8-size);*/
    font-weight: normal;
    overflow-wrap: anywhere;
}


.text-primary {
    color: var(--color-primary) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.text-primary-green {
    color: var(--color-primary-green) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.bg-secondary {
    background-color: var(--color-secondary) !important;
}

.bg-primary-green {
    background-color: var(--color-primary-green) !important;
}

.bg-secondary-green {
    background-color: var(--color-secondary-green) !important;
}

.bg-dark {
    background-color: var(--color-dark) !important;
}

.bg-light-gray {
    background-color:#fafafa !important;
}
.bg-bed-gray {
    background-color: #EAEBED !important;
}


.text-white {
    color: #fff !important;
}

a.breadcrumb-link {
    color: inherit;
    /* inherit text color from parent */
    text-decoration: none;
    /* remove underline */
    transition: color 0.3s ease;
    /* smooth hover animation */
}
.data-artigo {
    color:gray;
}

a.breadcrumb-link:hover {
    color: var(--color-primary-green);
}

.fa-stack {
    display: inline-block;
    height: 1em;
    line-height: 1em;
    position: relative;
    vertical-align: middle;
    width: 1em;
}

/* Espaçamentos customizados */
.px-sm {
    padding-left: var(--space-sm) !important;
    padding-right: var(--space-sm) !important;
}

.px-md {
    padding-left: var(--space-md) !important;
    padding-right: var(--space-md) !important;
}

.px-lg {
    padding-left: var(--space-lg) !important;
    padding-right: var(--space-lg) !important;
}

/* Estilos do cabeçalho segmentados */
.header-main {
    background: transparent;
}

.header-top-menu {
    background: transparent;
}

.header-bottom-menu {
    background: transparent;
}

.header-logo {
    height: 48px;
    max-width: 180px;
}

.qe-badge {
    border-radius: 50%;
    width: 55px;
    height: 55px;
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 100;
}


/* ====== Menu  ====== */
.nav>li>a {
    font-weight: normal;
}

.nav>li>a:hover {
    color: var(--color-secondary-green) !important;
}

/* Dropdown customizado para menu principal */
.menu-drop {
    background-color: var(--color-light);
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    min-width: 220px;
    padding: 0;
    border-radius: 0px;
}

.menu-drop .dropdown-item {
    color: var(--color-secondary);
    font-weight: 400;
    padding: 0.5rem 1.5rem;
    transition: background 0.2s, color 0.2s;

}

@media (max-width: 791px) {
    .menu-drop .dropdown-item {

        word-wrap: break-word; /* old syntax, widely supported */
        overflow-wrap: anywhere; /* modern and best */
        white-space: normal; /* ensure normal wrapping behavior */
    }
}


.menu-drop .dropdown-item:hover,
.menu-drop .dropdown-item:focus {
    background-color: var(--color-primary-green);
    color: var(--white);
}

/* Ativa dropdown por hover em desktop */
@media (hover: hover) {
    #menuResidenciaisMain:hover .dropdown-menu {
        display: block;
        position: absolute;
        inset: 0px auto auto 0px;
        margin: 0px;
        transform: translate(-72px, 40px);
    }
    #menuEmpresariaisMain:hover .dropdown-menu {
        display: block;
        position: absolute;
        inset: 0px auto auto 0px;
        margin: 0px;
        transform: translate(-209px, 40px);
    }
}

/* ====== Fim Menu  ====== */

/* HOME */
.home-panel-1 {
    background-image: url('/images/ver3/homepage/ComoFuncionaH7.jpg');
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-panel-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30, 40, 30, 0.65);
    /* overlay escuro */
    z-index: 0;
}

.home-panel-1>* {
    position: relative;
    z-index: 1;
}

.home-panel-2 {
    background-image: url('/images/ver3/homepage/PoupancaImpactoRealH7.jpg');
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-panel-2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30, 40, 30, 0.45);
    /* overlay escuro */
    z-index: 0;
}

.home-panel-2>* {
    position: relative;
    z-index: 1;
}

/* Cards do passo a passo */
.step-card {
    background: rgba(var(--color-primary-green-rgba), 0.50);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 50px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    color: var(--white);
}

.step-card-nh {
    background: rgba(var(--color-primary-green-rgba), 0.50);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 50px;
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    color: var(--white);
}

@media (max-width: 791px) {
    .step-card-nh {

        padding: 1.6rem 1.6rem;

    }
}

.step-card-opaque {
    background: rgba(var(--color-primary-green-rgba), 1) !important;
}

.step-number {
    font-size: 3.7rem;
    font-weight: 700;
    color: var(--color-secondary-green) !important;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-align: left;
    height: 4.8rem;
    line-height: 1.2;
}

.step-text {
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 0;
    text-align: left;
}

@media (max-width: 791px) {
    .step-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        text-align: left;
        /*height: 2.9rem;*/
        line-height: 1.1;
    }

    .step-card {
        min-height: 220px;
        padding: 1.6rem 1.6rem;
    }


    .step-number {
        font-size: 2.2rem;
    }
}

.img-alert {
    height: 4.6rem;
    width: auto;
    max-width: 100%;
    display: inline-block;
}

.img-tele {
    max-height: 600px;
}

/* ====== Testemunhos HYPE7 ====== */
.testimonial-card {
    /*background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);*/
/*    padding: 2.5rem 2rem 2rem 2rem;
    margin-bottom: 2rem;*/
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 220px;
    position: relative;
}

.testimonial-quote {
    height: 3rem;
    width: auto;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    text-align: left;
}

.testimonial-client {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 0.2rem;
}

.testimonial-location {
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: 0;
}

@media (max-width: 800px) {
    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .testimonial-quote {
        height: 2.2rem;
    }
}



/* ====== Fim Testemunhos HYPE7 ====== */

/* ====== Carousel Dots ====== */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.carousel-dot {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 0px;
    background: transparent;
    border: 2px solid var(--color-dark);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.carousel-dot.active {
    background: var(--color-dark);
    border-color: var(--color-dark);
}

/* Carousel sliding */
#testimonial-carousel {
    overflow: hidden;
    width: 100%;
    min-height: 220px;
    position: relative;
}

#testimonial-carousel .testimonial-card {
    min-width: 50%;
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
}
@media (max-width: 800px) {
    #testimonial-carousel .testimonial-card {
        min-width: 100%;
    }
}

/* ====== Fim Carousel Dots ====== */

/* ====== Footer HYPE7 ====== */
.footer-save {
    background-color: transparent;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    padding-top: var(--space-xl);
    /* padding-left: var(--space-lg);
    padding-right: var(--space-lg);*/

}
@media (max-width: 800px) {
    .footer-save_dis {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

.footer-save-content {
    background-color: var(--color-primary-green);
    color: var(--white);
}


.footer-news {
    background-color: var(--color-secondary);
    color: var(--white);
    /*padding-top: var(--space-lg);*/
}

.footer-main {
    background-color: var(--color-primary);
    color: var(--white);
}

.footer-top {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-secondary);
}

.footer-logo {
    height: 50px;
    margin-right: 1.5rem;
}

.footer-logo-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.footer-middle {
    padding-bottom: var(--space-lg);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-primary-green);
}

.footer-contact li {
    margin-bottom: 0.8rem;
    color: var(--white);
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 0.8rem;
    margin-top: 4px;
    color: var(--color-primary-green);
}

.footer-newsletter-text {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-secondary);
    background-color: var(--color-secondary);
    color: var(--white);
    border-radius: 4px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background-color: var(--color-primary-green);
    color: var(--white);
    border: none;
    width: 40px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.newsletter-form button:hover {
    background-color: var(--color-secondary-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-secondary);
    font-size: 0.7rem !important;
    color: var(--white);
}

.social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-primary-green);
    background-color: var(--color-primary-green);
    color: var(--white);
    font-size: 1rem;
    margin-right: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
}

.social-icons .social-icon:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--color-primary-green);
}

/* ====== End Footer HYPE7 ====== */

/* ====== Footer Novidades HYPE7 ====== */
.news-form {
    position: relative;
}

.news-form input:not([type="checkbox"]):not([type="radio"]) {
    flex-grow: 1;
    width: 350px;
    padding: 0.5rem 0.5rem;
    border: 0px solid var(--color-secondary);
    border-bottom: 1px solid var(--white);
    background-color: var(--color-secondary);
    color: var(--white);
    border-radius: 0px;
}

.news-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* ====== End Footer Novidades HYPE7 ====== */


/* ==== Sobre ==== */
.img-round {
    border-radius: 50%;
    width: 140px;
    height: 140px;
    object-fit: cover;
    object-position: center;
}

.sobre-panel-1 {
    background-image: url('/images/ver3/sobre_hype7/PorqueNascemos.svg');
    background-repeat: no-repeat;
    /* não repetir */
    background-position: right center;
    /* alinhado à direita, centrado verticalmente */
    background-size: auto;

}
.como-funciona-panel-1 {
    background-image: url('/images/ver3/sobre_hype7/PorqueNascemos.svg');
    background-repeat: no-repeat;
    /* não repetir */
    background-position: right center;
    /* alinhado à direita, centrado verticalmente */
    background-size: auto;
    /* mantém o tamanho original da imagem */
    background-size: 26%;
}

.step-card-green {
    background: rgba(var(--color-primary-green-rgba), 0.50);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 50px;
    min-height: 208px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    color: var(--white);
}

@media (max-width: 791px) {
    .step-card-green {
        background: rgba(var(--color-primary-green-rgba), 0.50);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        padding: 1.6rem 1.6rem;
        min-height: 208px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        color: var(--white);
    }
}

.step-title-g {
    font-size: 1.8rem;
    margin-bottom: 0.1rem;
    text-align: left;
    height: 2.8rem;
    color: var(--color-secondary-green) !important;
}
.step-title-g2 {
    font-size: 1.8rem;
    margin-bottom: 0.1rem;
    text-align: left;
    height: 6.4rem;
    color: var(--color-secondary-green) !important;
}


.sobre-icons-p3 {
    height: 4.2rem;
    float: left;
}

.sobre-img-p6 {
    min-height: 400px;
    overflow: hidden;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.sobre-img-p6-1 {
    background-image: url('/images/ver3/sobre_hype7/impacto.jpg');
}
.sobre-img-p6-2 {
    background-image: url('/images/ver3/sobre_hype7/transparencia.jpg');
}

.simpoup-img-p6-1 {
    background-image: url('/images/ver3/sim_poup/sist.jpg');
}

.simpoup-img-p6-2 {
    background-image: url('/images/ver3/sim_poup/sim.jpg');
}

/* ==== Residencial ==== */



.res-img-1 {
    max-height: 515px;
    overflow: hidden;
    background: url('/images/ver3/residencial/porque_investir.jpg') center calc(50%)/cover no-repeat;
    min-height: 320px;
}

.emp-img-1 {
    max-height: 515px;
    overflow: hidden;
    background: url('/images/ver3/empresas/porqueEscolher.jpg') center calc(50%)/cover no-repeat;
    min-height: 320px;
}

.res-panel-1 {
    position: relative;
    background: url('/images/ver3/residencial/comoFunciona.jpg') center center/cover no-repeat;
    z-index: 0;
    /* ensure content can sit above */
}

.res-panel-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30, 40, 30, 0.65);
    /* dark overlay */
    z-index: 1;
    /* overlay layer */
}

.res-panel-1>* {
    position: relative;
    z-index: 2;
}

.res-card-1 {
    position: relative;
    background: url('/images/ver3/residencial/card1.jpg') center center/cover no-repeat;
    z-index: 0;
}

.res-card-2 {
    position: relative;
    background: url('/images/ver3/residencial/card2.jpg') center center/cover no-repeat;
    z-index: 0;
}

.res-card-3 {
    position: relative;
    background: url('/images/ver3/residencial/card3.jpg') center center/cover no-repeat;
    z-index: 0;
}

.res-card-4 {
    position: relative;
    background: url('/images/ver3/residencial/card4.jpg') center center/cover no-repeat;
    z-index: 0;
}

.res-card-1 h4,
.res-card-2 h4,
.res-card-3 h4,
.res-card-4 h4 {
    min-height: 5rem;
    /* adjust to fit 2 lines */
}

.res-card-1::before,
.res-card-2::before,
.res-card-3::before,
.res-card-4::before {
    content: "";
    position: absolute;
    inset: 0;
    
    background: rgba(0, 0, 18, 0.65); /*(30, 40, 30, 0.55);*/
    /* dark overlay */
    z-index: 1;
    /* overlay layer */
}

.res-card-1>*,
.res-card-2>*,
.res-card-3>*,
.res-card-4>* {
    position: relative;
    z-index: 2;
}


/* ==== Empresas ==== */


.emp-card-1 {
    position: relative;
    background: url('/images/ver3/empresas/card1.jpg') center center/cover no-repeat;
    z-index: 0;
}

.emp-card-2 {
    position: relative;
    background: url('/images/ver3/empresas/card2.jpg') center center/cover no-repeat;
    z-index: 0;
}

.emp-card-3 {
    position: relative;
    background: url('/images/ver3/empresas/card3.jpg') center center/cover no-repeat;
    z-index: 0;
}

.emp-card-4 {
    position: relative;
    background: url('/images/ver3/empresas/card4.jpg') center center/cover no-repeat;
    z-index: 0;
}

.emp-card-5 {
    position: relative;
    background: url('/images/ver3/empresas/card5.jpg') center center/cover no-repeat;
    z-index: 0;
}

.emp-card-1 h4,
.emp-card-2 h4,
.emp-card-3 h4,
.emp-card-4 h4,
.emp-card-5 h4 {
    min-height: 5rem;
    /* adjust to fit 2 lines */
}

.emp-card-1::before,
.emp-card-2::before,
.emp-card-3::before,
.emp-card-4::before,
.emp-card-5::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 18, 0.65);
    /* dark overlay */
    z-index: 1;
    /* overlay layer */
}

.emp-card-1>*,
.emp-card-2>*,
.emp-card-3>*,
.emp-card-4>*,
.emp-card-5>* {
    position: relative;
    z-index: 2;
}

.emp-deduzir {
    background: url('/images/ver3/empresas/deduzirInvest.jpg') center calc(10%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.10);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 320px;
}

.bg-light-green {
    background-color: rgba(var(--color-secondary-green-rgba), 0.10);
}



/* ========== BLOG ========== */

/* Remove Bootstrap's default background and shadow */
.accordion-button {
    background-color: transparent !important;
    box-shadow: none !important;
    color: inherit !important;
}

/* Add Font Awesome + by default */
.accordion-button::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\2b";
    /* Unicode PLUS SIGN */
    margin-left: auto;
    background-image: none !important;
    transform: rotate(0deg);
    transition: transform 0.25s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
}

/* Expanded: rotate + into an × */
.accordion-button:not(.collapsed)::after {
    transform: rotate(135deg);
    /* + rotated 45° looks like × */
    color: var(--color-primary-green);
}

/* Title color */
.accordion-button:not(.collapsed) {
    color: var(--color-primary-green) !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* ========== Residencial - Autoconsumo Solar ========== */

.res-solar-panel-1 {
    background: none;
}

@media(min-width: 1205px) {
    .res-solar-panel-1 {
        background: url('/images/ver3/residencial/acs/AutoconsumoSolar.jpg');
        position: relative;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}


.res-solar-panel-1b {
    background: url('/images/ver3/residencial/acs/AutoconsumoSolar.jpg') center calc(50%)/cover no-repeat;
    min-height: 350px;
}

.res-acs-1 {
    background: url('/images/ver3/residencial/acs/1Invest.jpg') center calc(10%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}

.res-acs-2 {
    background: url('/images/ver3/residencial/acs/2Ajudar.jpg') center calc(10%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}

.res-acs-3 {
    background: url('/images/ver3/residencial/acs/3Instalar.jpg') center calc(70%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}


.res-me-panel-1 {
    background: url('/images/ver3/residencial/acs/AutoconsumoSolar.jpg') center center/cover no-repeat;
}



/* ====== Form Contactos ====== */
.form-contacto input:not([type="checkbox"]):not([type="radio"]),
.form-contacto textarea,
.form-contacto select {
    border: 0px;
    border-bottom: 1px solid lightgray;
    border-radius: 0;
    font-size: var(--h6-size);
    background-color: transparent;
}

.text-placeholder {
    color: #ccc;
}
.form-contacto ::placeholder {
    color: #ccc;
    /* cinzento claro */
    opacity: 1;
    /* garante que não fica translúcido */
}

/* Make the disabled placeholder text gray */
select:invalid {
    color: #ccc; /* Bootstrap's default gray text */
}

/* Once a valid option is chosen, make it normal */
select option {
    color: var(--black); /* Bootstrap's normal text color */
}

.form-contacto label:not(.form-check-label) {
    padding-top: var(--space-lg);
    font-weight: bold;
    font-size: var(--h7-size);
}

.form-contacto select option[disabled] {
    color: lightgray;
}

.info-box {
    background-color: var(--color-primary-green); /* Adjust to your green */
    max-width: 550px;
    position: absolute;
    top: 50%;
    
    transform: translateY(-50%);
}
.info-box-img {
    width: 90%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-box {
        position: static;
        transform: none;
        margin-top: 0rem;
        max-width: 100%;
    }

    .info-box-img {
        width: 100%;
    }
}

.card-arrow-link {
    border: 1px solid transparent;
    padding: 8px;
    color: var(--white);
    transition: color 0.2s, border-color 0.2s;
}
.card-arrow-link:hover {
    border-color: var(--color-primary-green);
    color: var(--color-primary-green);
}


/* Reset Bootstrap default round style */
.form-check-input.custom-radio {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    border: 1px solid #fff !important;
    border-radius: 0px !important; 
    background: transparent !important;
    cursor: pointer;
    position: relative;
    margin-right: 6px;
    margin-top: -6px;
    vertical-align: middle;
}

    /* Checked state */
    .form-check-input.custom-radio:checked {
        background: transparent !important;
    }

        /* White square mark inside */
        .form-check-input.custom-radio:checked::after {
            content: "";
            position: absolute;
            top: 4px;
            left: 4px;
            width: 10px;
            height: 10px;
            background: #fff;
            border-radius: 0px;
        }


.form-select:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: inset 0 0 0 3px rgba(47, 61, 81, 0.1), inset 0 0 0 2px transparent !important;
    /*outline: none !important;
    outline-offset: 3px;*/
    border-radius: 0px !important;
}




/* Hamburger styles */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1051;
    padding: 0;
    margin-left: 1rem;
}
.hamburger-bar {
    width: 29px;
    height: 4px;
    background: var(--color-primary-green);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile nav styles */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--color-primary);
    z-index: 1050;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 0px;
    padding: 1rem 18px 1rem 18px;
    animation: slideDown 0.25s cubic-bezier(.77,0,.18,1);
}
.mobile-nav.show {
    display: block;
}
.mobile-nav .nav-link {
    color: var(--white) !important;
    font-size: 1.2rem;
    padding: 0.45rem 0;
    border-bottom: 0px solid rgba(255,255,255,0.08);
}
.mobile-nav .nav-link:last-child {
    border-bottom: none;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 1205px) {
    .mobile-nav { display: none !important; }
    .hamburger { display: none !important; }
}

#menuButton span {
  pointer-events: auto;
}

/* Fim Hamburger styles */

/* COMO FUNCIONA */

.cf-panel-1 {
    background-image: url('/images/ver3/como_funciona/mudar.jpg');
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cf-panel-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30, 40, 30, 0.65);
    /* overlay escuro */
    z-index: 0;
}

.cf-panel-1 > * {
    position: relative;
    z-index: 1;
}

.cf-2 {
    background: url('/images/ver3/como_funciona/como-ganha.jpg') calc(50%) center/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}

/* SIM POUP */

.simpoup-panel-1 {
    background-image: url('/images/ver3/sim_poup/porque.jpg');
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .simpoup-panel-1::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(30, 40, 30, 0.60);
        /* overlay escuro */
        z-index: 0;
    }

    .simpoup-panel-1 > * {
        position: relative;
        z-index: 1;
    }


.alertas-lr-1 {
    background: url('/images/ver3/alarmes/gratuito.jpg') center calc(35%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}

.alertas-lr-2 {
    background: url('/images/ver3/alarmes/dados.jpg') center calc(35%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}


.alarmes-panel-1 {
    background-image: url('/images/ver3/alarmes/como_funciona.jpg');
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .alarmes-panel-1::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(30, 40, 30, 0.60);
        /* overlay escuro */
        z-index: 0;
    }

    .alarmes-panel-1 > * {
        position: relative;
        z-index: 1;
    }



@media(min-width: 1205px) {
    .emp-arm-panel-1 {
        background: url('/images/ver3/empresas/armazenamento/energia_emp.jpg');
        position: relative;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}


.emp-arm-panel-1b {
    background: url('/images/ver3/empresas/armazenamento/energia_emp.jpg') center calc(50%)/cover no-repeat;
    min-height: 350px;
}



.emp-arm-1 {
    background: url('/images/ver3/empresas/armazenamento/1.jpg') center calc(20%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}
.emp-arm-2 {
    background: url('/images/ver3/empresas/armazenamento/2.jpg') calc(50%) calc(20%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}
.emp-arm-3 {
    background: url('/images/ver3/empresas/armazenamento/3.jpg') center calc(20%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}


@media(min-width: 1205px) {
    .res-arm-panel-1 {
        background: url('/images/ver3/residencial/armazenamento/residencial.jpg');
        position: relative;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}


.res-arm-panel-1b {
    background: url('/images/ver3/residencial/armazenamento/residencial.jpg') center calc(50%)/cover no-repeat;
    min-height: 350px;
}



.res-arm-1 {
    background: url('/images/ver3/residencial/armazenamento/investir.jpg') center calc(20%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}

.res-arm-2 {
    background: url('/images/ver3/residencial/armazenamento/ajudar.jpg') calc(50%) calc(20%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}

.res-arm-3 {
    background: url('/images/ver3/residencial/armazenamento/custa.jpg') calc(50%) calc(20%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}


@media(min-width: 1205px) {
    .emp-auto-panel-1 {
        background: url('/images/ver3/empresas/auto/auto.jpg');
        position: relative;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}


.emp-auto-panel-1b {
    background: url('/images/ver3/empresas/auto/auto.jpg') center calc(50%)/cover no-repeat; min-height: 350px;
}


.emp-auto-1 {
    background: url('/images/ver3/empresas/auto/1.jpg') center calc(10%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}

.emp-auto-2 {
    background: url('/images/ver3/empresas/auto/2.jpg') calc(50%) calc(10%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}

.emp-auto-3 {
    background: url('/images/ver3/empresas/auto/3.jpg') center calc(10%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}

.emp-clube-panel-1 {
    background-image: url('/images/ver3/empresas/clube/como_funciona.jpg');
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .emp-clube-panel-1::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(30, 40, 30, 0.65);
        /* overlay escuro */
        z-index: 0;
    }

    .emp-clube-panel-1 > * {
        position: relative;
        z-index: 1;
    }

.emp-clube-1 {
    background: url('/images/ver3/empresas/clube/beneficios.jpg') center calc(10%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}

.emp-clube-2 {
    background: url('/images/ver3/empresas/clube/aderir.jpg') center calc(10%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}


@media(min-width: 1205px) {
    .emp-flex-panel-1 {
        background: url('/images/ver3/empresas/flex/monit_en.jpg');
        position: relative;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

}

.emp-flex-panel-1b {
    background: url('/images/ver3/empresas/flex/monit_en.jpg') center calc(50%)/cover no-repeat;
    min-height: 350px;
}


.emp-flex-ti {
    background: url('/images/ver3/empresas/flex/tec_int.jpg') calc(50%) center/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}

.emp-flex-1 {
    background: url('/images/ver3/empresas/flex/result.jpg') center calc(10%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}

.emp-flex-2 {
    background: url('/images/ver3/empresas/flex/como_impl.jpg') calc(50%) calc(10%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}


@media(min-width: 1205px) {
    .emp-mob-panel-1 {
        background: url('/images/ver3/empresas/mobilidade/mobilidade.jpg');
        position: relative;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

.emp-mob-panel-1b {
    background: url('/images/ver3/empresas/mobilidade/mobilidade.jpg') center calc(50%)/cover no-repeat; 
    min-height: 350px;
}


.emp-mob-1 {
    background: url('/images/ver3/empresas/mobilidade/1.jpg') center center/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}
.emp-mob-2 {
    background: url('/images/ver3/empresas/mobilidade/2.jpg') calc(50%) calc(10%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}
.emp-mob-3 {
    background: url('/images/ver3/empresas/mobilidade/3.jpg') center center/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}


@media(min-width: 1205px) {
    .res-hypehome-panel-1 {
        background: url('/images/ver3/residencial/hype_home/domotica.jpg');
        position: relative;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}


.res-hypehome-panel-1b {
    background: url('/images/ver3/residencial/hype_home/domotica.jpg') center calc(50%)/cover no-repeat;
    min-height: 350px;
}




.res-hypehome-1 {
    background: url('/images/ver3/residencial/hype_home/dom_poup.jpg') center center/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}

.res-hypehome-2 {
    background: url('/images/ver3/residencial/hype_home/hype7.jpg') calc(50%) calc(10%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}

.res-mobi-panel-1 {
    background: url('/images/ver3/residencial/mobilidade/como_funciona.jpg');
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
    .res-mobi-panel-1::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(30, 40, 30, 0.65);
        /* overlay escuro */
        z-index: 0;
    }

    .res-mobi-panel-1 > * {
        position: relative;
        z-index: 1;
    }

.res-mobi-1 {
    background: url('/images/ver3/residencial/mobilidade/poupar.jpg') center center/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height:350px;
}

.res-mobi-2 {
    background: url('/images/ver3/residencial/mobilidade/como_ajuda.jpg') calc(50%) calc(10%)/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}

.res-mobi-3 {
    background: url('/images/ver3/residencial/mobilidade/instalar.jpg') center center/cover no-repeat;
    background-color: rgba(0, 0, 0, 0.03);
    /* overlay escuro */
    background-blend-mode: darken;
    /* ou multiply */
    min-height: 350px;
}

.img-link img {
    transition: filter 0.3s ease;
}

.img-link:hover img {
    filter: brightness(70%);
}



.dropdown-menu.mobile-submenu {
    border-radius: 0px;
    position: relative !important;
    text-align: right;
    transform: none !important;
}

.menu-drop-main-link {
    text-decoration: none;
    position: absolute;
    right: 22px;
}

@media (max-width: 1205px) {


    .img-fluid-mh {
        max-height: 250px;
    }
}

.col-icon {
    width: 108px;
}

.p-12-fix {
    padding-left: 12px !important;
    padding-right: 12px !important;
}





.mh-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.ph-0 {
        padding-left: 0 !important;
    padding-right: 0 !important;

}

.blog-sidebar-img {
    min-height: 195px;
    object-fit: cover;
}

.blog-main-img {
    min-height: 380px;
    object-fit: cover;
}


.land-img-1 {
    
    overflow: hidden;
    background: url('/images/ver3/homepage/TarIndexadoDestaqueH7.jpg') center calc(50%)/cover no-repeat;
    min-height: 312px;
}

.land-panel-1 {
    background-image: url('/images/ver3/homepage/ComoFuncionaH7.jpg');
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.land-panel-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30, 40, 30, 0.4);
    /* overlay escuro */
    z-index: 0;
}

.land-panel-1 > * {
    position: relative;
    z-index: 1;
}


.landing-logo {
    height: 80px;
}

.land-step-number {
    font-size: 3.9rem;
    font-weight: 700;
    /*color: var(--color-secondary-green) !important;*/
    color: #549246;
    margin-bottom: 0.5rem;
    line-height: 1;
}


@supports (-webkit-touch-callout: none) {
    .home-panel-1,
    .home-panel-2,
    .res-solar-panel-1,
    .simpoup-panel-1,
    .alarmes-panel-1,
    .emp-arm-panel-1,
    .res-arm-panel-1,
    .emp-auto-panel-1,
    .emp-clube-panel-1,
    .emp-flex-panel-1,
    .emp-mob-panel-1,
    .res-hypehome-panel-1,
    .res-mobi-panel-1,
    .cf-panel-1,
    .land-panel-1 {
        background-attachment: scroll;
    }
}
