/* ==========================================================
   UNIFORMA — HOME.CSS
   Estilos exclusivos da página inicial
   Compatível com style.css, header.css e footer.css
========================================================== */

/* ==========================================================
   BASE DA HOME
========================================================== */

#conteudo {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    background: #fff;
}

#conteudo,
#conteudo *,
#conteudo *::before,
#conteudo *::after {
    box-sizing: border-box;
}

#conteudo img,
#conteudo svg {
    display: block;
    max-width: 100%;
}

#conteudo .section {
    position: relative;
    width: 100%;
    padding: 120px 0;
}

#conteudo .section-heading {
    max-width: 860px;
    margin: 0 auto 70px;
    text-align: center;
}

#conteudo .section-heading .section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 9px 17px;
    border-radius: 999px;
    color: var(--primary);
    background: #feecec;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

#conteudo .section-heading h2 {
    margin: 0 0 22px;
    color: var(--dark);
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.5px;
}

#conteudo .section-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.85;
}

#conteudo .section-action {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* ==========================================================
   BOTÕES DA HOME
========================================================== */

#conteudo .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 14px 30px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background-color .25s ease,
        border-color .25s ease,
        color .25s ease;
}

#conteudo .btn-primary {
    border: 1px solid var(--primary);
    color: #fff;
    background: var(--primary);
    box-shadow: 0 15px 35px rgba(214, 40, 40, .22);
}

#conteudo .btn-primary:hover,
#conteudo .btn-primary:focus-visible {
    color: #fff;
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 22px 45px rgba(214, 40, 40, .28);
    transform: translateY(-3px);
}

#conteudo .btn-secondary {
    border: 1px solid #d9dde4;
    color: var(--dark);
    background: #fff;
    box-shadow: 0 10px 26px rgba(17, 24, 39, .05);
}

#conteudo .btn-secondary:hover,
#conteudo .btn-secondary:focus-visible {
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 18px 36px rgba(17, 24, 39, .08);
    transform: translateY(-3px);
}

/* ==========================================================
   HERO
========================================================== */

#conteudo .hero {
    position: relative;
    padding: 190px 0 100px;
    background:
        radial-gradient(circle at 88% 18%, rgba(214, 40, 40, .07), transparent 34%),
        linear-gradient(180deg, #f8f5f1 0%, #fff 100%);
    overflow: hidden;
    isolation: isolate;
}

#conteudo .hero::before {
    content: "";
    position: absolute;
    left: -140px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(214, 40, 40, .035);
    filter: blur(90px);
    pointer-events: none;
    z-index: -1;
}

#conteudo .hero-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
    align-items: center;
    gap: clamp(55px, 6vw, 95px);
}

#conteudo .hero-left {
    min-width: 0;
}

#conteudo .sector-tag {
    display: inline-flex;
    align-items: center;
    margin-bottom: 26px;
    padding: 10px 18px;
    border-radius: 999px;
    color: var(--primary);
    background: #feecec;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

#conteudo .hero h1 {
    max-width: 800px;
    margin: 0 0 28px;
    color: var(--dark);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: -2.5px;
}

#conteudo .hero-left > p {
    max-width: 720px;
    margin: 0;
    color: #667085;
    font-size: 19px;
    line-height: 1.9;
}

#conteudo .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 38px;
}

#conteudo .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

#conteudo .hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border: 1px solid #e9e3dc;
    border-radius: 999px;
    color: #4b5563;
    background: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(17, 24, 39, .04);
}

#conteudo .hero-features span::before {
    content: "✓";
    color: var(--primary);
    font-weight: 900;
}

#conteudo .hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    min-width: 0;
}

#conteudo .hero-right::before {
    content: "";
    position: absolute;
    inset: 8% -2% -4% 10%;
    border-radius: 34px;
    background: rgba(214, 40, 40, .09);
    transform: rotate(3deg);
    z-index: -1;
}

#conteudo .hero-right img {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(214, 40, 40, .12);
    border-radius: 32px;
    box-shadow: 0 32px 80px rgba(17, 24, 39, .16);
}

/* ==========================================================
   TRUST STRIP
========================================================== */

#conteudo .trust-strip {
    position: relative;
    padding: 0 0 60px;
    background: #fff;
}

#conteudo .trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: -34px;
    position: relative;
    z-index: 3;
}

#conteudo .trust-strip article {
    min-width: 0;
    padding: 24px;
    border: 1px solid #ececec;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(17, 24, 39, .07);
}

#conteudo .trust-strip strong {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 17px;
}

#conteudo .trust-strip span {
    display: block;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.65;
}

/* ==========================================================
   SOLUÇÕES
========================================================== */

#conteudo .solutions {
    background: #f8f5f1;
}

#conteudo .solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    max-width: 1120px;
    margin: 0 auto;
}

#conteudo .solution-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 42px;
    border: 1px solid #e8e5e1;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(17, 24, 39, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}

#conteudo .solution-card:hover {
    box-shadow: 0 28px 70px rgba(17, 24, 39, .10);
    transform: translateY(-8px);
}

#conteudo .solution-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 24px 65px rgba(214, 40, 40, .12);
}

#conteudo .solution-badge {
    position: absolute;
    top: -15px;
    right: 28px;
    padding: 9px 17px;
    border-radius: 999px;
    color: #fff;
    background: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

#conteudo .solution-card .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin-bottom: 26px;
    border-radius: 18px;
    color: var(--primary);
    background: #feecec;
}

#conteudo .solution-card .icon-box svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#conteudo .solution-card h3 {
    margin: 0 0 16px;
    color: var(--dark);
    font-size: 30px;
    line-height: 1.2;
}

#conteudo .solution-card > p {
    margin: 0 0 28px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

#conteudo .check-list {
    display: grid;
    gap: 13px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

#conteudo .check-list li {
    position: relative;
    padding-left: 28px;
    color: #374151;
    line-height: 1.6;
}

#conteudo .check-list li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

#conteudo .comparison-list {
    display: grid;
    gap: 10px;
    margin: 0 0 32px;
    padding: 20px;
    border-radius: 18px;
    background: #fafafa;
}

#conteudo .comparison-list span {
    position: relative;
    padding-left: 26px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.55;
}

#conteudo .comparison-list span::before {
    position: absolute;
    left: 0;
    font-weight: 900;
}

#conteudo .comparison-list .positive::before {
    content: "✓";
    color: #16a34a;
}

#conteudo .comparison-list .negative::before {
    content: "–";
    color: #9ca3af;
}

#conteudo .card-button {
    width: 100%;
    margin-top: auto;
}

/* ==========================================================
   ORÇAMENTO RÁPIDO
========================================================== */

#conteudo .quote-section {
    background: #fff;
}

#conteudo .quote-section .quote-box {
    max-width: 1180px;
    margin: 0 auto;
    padding: 58px;
    border: 1px solid rgba(214, 40, 40, .16);
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(214, 40, 40, .08), transparent 35%),
        #fff;
    box-shadow: 0 28px 75px rgba(17, 24, 39, .09);
}

#conteudo .quote-section .section-heading {
    margin-bottom: 44px;
}

#conteudo .quote-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: end;
}

#conteudo .form-field {
    min-width: 0;
}

#conteudo .form-field label {
    display: block;
    margin-bottom: 9px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
}

#conteudo .form-field input,
#conteudo .form-field select {
    width: 100%;
    height: 58px;
    padding: 0 17px;
    border: 1px solid #dce3ea;
    border-radius: 15px;
    color: var(--dark);
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color .25s ease, box-shadow .25s ease;
}

#conteudo .form-field input:focus,
#conteudo .form-field select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(214, 40, 40, .10);
}

#conteudo .form-field select {
    appearance: none;
    padding-right: 48px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

#conteudo .form-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

#conteudo .form-actions .btn {
    min-width: 240px;
    border: 0;
    cursor: pointer;
}

#conteudo .honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

#conteudo .form-privacy {
    margin: 22px 0 0;
    color: #8b93a1;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}

#conteudo .form-privacy a {
    color: var(--primary);
    font-weight: 600;
}

#conteudo .quote-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-top: 24px;
}

#conteudo .quote-benefits span {
    position: relative;
    padding-left: 22px;
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
}

#conteudo .quote-benefits span::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

/* ==========================================================
   IMPACTO
========================================================== */

#conteudo .about-impact {
    background: #f8f5f1;
}

#conteudo .impact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px minmax(0, 1fr);
    align-items: center;
    gap: 42px;
}

#conteudo .impact-column {
    display: grid;
    gap: 24px;
}

#conteudo .impact-card {
    padding: 34px;
    border: 1px solid #ece8e3;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(17, 24, 39, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}

#conteudo .impact-card:hover {
    box-shadow: 0 26px 60px rgba(17, 24, 39, .10);
    transform: translateY(-7px);
}

#conteudo .impact-number {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: clamp(46px, 5vw, 66px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

#conteudo .impact-card h3 {
    margin: 0 0 11px;
    color: var(--dark);
    font-size: 23px;
}

#conteudo .impact-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.75;
}

#conteudo .impact-map {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

#conteudo .impact-map img {
    width: 100%;
    max-width: 250px;
    opacity: .22;
    filter: grayscale(100%);
}

#conteudo .map-point {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 0 rgba(214, 40, 40, .35);
    animation: homePulse 2s infinite;
}

#conteudo .map-point::after {
    content: attr(data-city);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 11px);
    padding: 6px 10px;
    border-radius: 8px;
    color: #fff;
    background: #111827;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 5px);
    transition: opacity .2s ease, transform .2s ease;
}

#conteudo .map-point:hover::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

#conteudo .map-point.porto {
    top: 21%;
    left: 49%;
}

#conteudo .map-point.coimbra {
    top: 39%;
    left: 52%;
}

#conteudo .map-point.lisboa {
    top: 58%;
    left: 43%;
}

#conteudo .map-point.faro {
    top: 86%;
    left: 56%;
}

@keyframes homePulse {
    70% {
        box-shadow: 0 0 0 18px rgba(214, 40, 40, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(214, 40, 40, 0);
    }
}

/* ==========================================================
   VANTAGENS
========================================================== */

#conteudo .advantages {
    background: #fff;
}

#conteudo .advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

#conteudo .advantage-card {
    position: relative;
    min-width: 0;
    padding: 36px;
    overflow: hidden;
    border: 1px solid #ececec;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(17, 24, 39, .05);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

#conteudo .advantage-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

#conteudo .advantage-card:hover {
    border-color: rgba(214, 40, 40, .22);
    box-shadow: 0 24px 56px rgba(17, 24, 39, .09);
    transform: translateY(-8px);
}

#conteudo .advantage-card:hover::before {
    transform: scaleX(1);
}

#conteudo .advantage-number {
    display: inline-flex;
    margin-bottom: 26px;
    color: #e7e7e7;
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
}

#conteudo .advantage-card h3 {
    margin: 0 0 13px;
    color: var(--dark);
    font-size: 23px;
}

#conteudo .advantage-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* ==========================================================
   SETORES
========================================================== */

#conteudo .sectors {
    background: #f8f5f1;
}

#conteudo .sector-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

#conteudo .sector-card {
    position: relative;
    display: block;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e8e5e1;
    border-radius: 24px;
    color: inherit;
    background: #fff;
    box-shadow: 0 14px 38px rgba(17, 24, 39, .06);
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

#conteudo .sector-card:hover {
    border-color: rgba(214, 40, 40, .28);
    box-shadow: 0 25px 60px rgba(17, 24, 39, .11);
    transform: translateY(-8px);
}

#conteudo .sector-card img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    transition: transform .4s ease;
}

#conteudo .sector-card:hover img {
    transform: scale(1.045);
}

#conteudo .sector-content {
    padding: 25px;
}

#conteudo .sector-content h3 {
    margin: 0 0 10px;
    color: var(--dark);
    font-size: 22px;
}

#conteudo .sector-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

#conteudo .featured-sector {
    border: 2px solid var(--primary);
}

#conteudo .sector-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    padding: 8px 13px;
    border-radius: 999px;
    color: #fff;
    background: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(214, 40, 40, .25);
}

/* ==========================================================
   PROCESSO
========================================================== */

#conteudo .process {
    background: #fff;
}

#conteudo .process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

#conteudo .step {
    position: relative;
    min-width: 0;
    padding: 36px 30px;
    border: 1px solid #ececec;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(17, 24, 39, .05);
    transition: transform .3s ease, box-shadow .3s ease;
}

#conteudo .step:hover {
    box-shadow: 0 24px 56px rgba(17, 24, 39, .09);
    transform: translateY(-8px);
}

#conteudo .step > span {
    display: block;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

#conteudo .step h3 {
    margin: 0 0 14px;
    color: var(--dark);
    font-size: 22px;
    line-height: 1.3;
}

#conteudo .step p {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* ==========================================================
   PROJETOS
========================================================== */

#conteudo .case-studies {
    background: #f8f5f1;
}

#conteudo .case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

#conteudo .case-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e8e5e1;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(17, 24, 39, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}

#conteudo .case-card:hover {
    box-shadow: 0 25px 60px rgba(17, 24, 39, .11);
    transform: translateY(-8px);
}

#conteudo .case-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 245px;
    padding: 30px;
    color: #8b93a1;
    background:
        linear-gradient(135deg, #f2f3f5 25%, transparent 25%) -18px 0 / 36px 36px,
        linear-gradient(225deg, #f2f3f5 25%, transparent 25%) -18px 0 / 36px 36px,
        linear-gradient(315deg, #f2f3f5 25%, transparent 25%) 0 0 / 36px 36px,
        linear-gradient(45deg, #f2f3f5 25%, #fafafa 25%) 0 0 / 36px 36px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

#conteudo .case-content {
    padding: 28px;
}

#conteudo .case-content > span {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

#conteudo .case-content h3 {
    margin: 0 0 13px;
    color: var(--dark);
    font-size: 23px;
    line-height: 1.3;
}

#conteudo .case-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.75;
}

/* ==========================================================
   FAQ
========================================================== */

#conteudo .faq {
    background: #fff;
}

#conteudo .faq-wrapper {
    max-width: 980px;
}

#conteudo .faq-list {
    display: grid;
    gap: 16px;
}

#conteudo .faq details {
    overflow: hidden;
    border: 1px solid #ececec;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(17, 24, 39, .04);
}

#conteudo .faq summary {
    position: relative;
    padding: 23px 66px 23px 26px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
}

#conteudo .faq summary::-webkit-details-marker {
    display: none;
}

#conteudo .faq summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--primary);
    background: #feecec;
    font-size: 22px;
    transform: translateY(-50%);
}

#conteudo .faq details[open] summary::after {
    content: "−";
}

#conteudo .faq details p {
    margin: 0;
    padding: 0 26px 25px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.85;
}

/* ==========================================================
   RESPONSIVIDADE
========================================================== */

@media (max-width: 1200px) {
    #conteudo .hero {
        padding-top: 180px;
    }

    #conteudo .hero-wrapper {
        grid-template-columns: 1fr 420px;
        gap: 48px;
    }

    #conteudo .hero h1 {
        font-size: clamp(46px, 5vw, 62px);
    }

    #conteudo .trust-strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #conteudo .quote-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #conteudo .impact-layout {
        grid-template-columns: 1fr 250px 1fr;
        gap: 30px;
    }

    #conteudo .advantages-grid,
    #conteudo .sector-grid,
    #conteudo .case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #conteudo .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    #conteudo .hero {
        padding: 165px 0 90px;
    }

    #conteudo .hero-wrapper {
        grid-template-columns: 1fr;
    }

    #conteudo .hero-left {
        text-align: center;
    }

    #conteudo .hero h1,
    #conteudo .hero-left > p {
        margin-left: auto;
        margin-right: auto;
    }

    #conteudo .hero-buttons,
    #conteudo .hero-features {
        justify-content: center;
    }

    #conteudo .hero-right img {
        max-width: 520px;
    }

    #conteudo .solutions-grid {
        grid-template-columns: 1fr;
    }

    #conteudo .impact-layout {
        grid-template-columns: 1fr;
        max-width: 820px;
        margin: 0 auto;
    }

    #conteudo .impact-map {
        order: -1;
        min-height: 420px;
    }

    #conteudo .impact-map img {
        max-width: 210px;
    }

    #conteudo .impact-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    #conteudo .section {
        padding: 88px 0;
    }

    #conteudo .section-heading {
        margin-bottom: 48px;
    }

    #conteudo .section-heading h2 {
        font-size: clamp(34px, 9vw, 44px);
    }

    #conteudo .section-heading p {
        font-size: 16px;
    }

    #conteudo .hero {
        padding: 145px 0 78px;
    }

    #conteudo .sector-tag {
        font-size: 11px;
    }

    #conteudo .hero h1 {
        font-size: clamp(38px, 11vw, 50px);
        letter-spacing: -1.5px;
    }

    #conteudo .hero-left > p {
        font-size: 17px;
    }

    #conteudo .hero-buttons {
        flex-direction: column;
    }

    #conteudo .hero-buttons .btn {
        width: 100%;
    }

    #conteudo .hero-features {
        flex-direction: column;
        align-items: stretch;
    }

    #conteudo .hero-features span {
        justify-content: center;
    }

    #conteudo .trust-strip {
        padding-bottom: 35px;
    }

    #conteudo .trust-strip-grid {
        grid-template-columns: 1fr;
        margin-top: -22px;
    }

    #conteudo .solution-card {
        padding: 30px;
    }

    #conteudo .quote-section .quote-box {
        padding: 36px 24px;
        border-radius: 24px;
    }

    #conteudo .quote-form {
        grid-template-columns: 1fr;
    }

    #conteudo .form-actions .btn {
        width: 100%;
        min-width: 0;
    }

    #conteudo .quote-benefits {
        flex-direction: column;
        align-items: center;
    }

    #conteudo .impact-column {
        grid-template-columns: 1fr;
    }

    #conteudo .advantages-grid,
    #conteudo .sector-grid,
    #conteudo .process-grid,
    #conteudo .case-grid {
        grid-template-columns: 1fr;
    }

    #conteudo .advantage-card,
    #conteudo .step {
        padding: 30px;
    }

    #conteudo .sector-card img {
        height: 220px;
    }

    #conteudo .faq summary {
        padding: 20px 58px 20px 20px;
        font-size: 16px;
    }

    #conteudo .faq summary::after {
        right: 16px;
    }

    #conteudo .faq details p {
        padding: 0 20px 22px;
    }
}

@media (max-width: 480px) {
    #conteudo .hero {
        padding-top: 130px;
    }

    #conteudo .hero h1 {
        font-size: 37px;
    }

    #conteudo .hero-right img {
        border-radius: 24px;
    }

    #conteudo .trust-strip article,
    #conteudo .solution-card,
    #conteudo .impact-card,
    #conteudo .advantage-card,
    #conteudo .step,
    #conteudo .case-content {
        padding: 24px;
    }

    #conteudo .quote-section .quote-box {
        padding: 30px 18px;
    }

    #conteudo .solution-card h3 {
        font-size: 27px;
    }

    #conteudo .impact-map {
        min-height: 360px;
    }

    #conteudo .sector-card img {
        height: 205px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #conteudo *,
    #conteudo *::before,
    #conteudo *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
/* ==========================================================
   HERO HOME — COMPACTO, HORIZONTAL E MAIS FORTE
========================================================== */

@media (min-width: 993px) {

    #conteudo .hero {
        display: flex;
        align-items: center;

        min-height: calc(100svh - 46px);
        padding: 170px 0 45px;

        background:
            radial-gradient(
                circle at 88% 20%,
                rgba(214, 40, 40, 0.07),
                transparent 32%
            ),
            #f8f5f1;
    }

    #conteudo .hero-wrapper {
        width: min(calc(100% - 60px), 1500px);

        display: grid;
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(520px, 1.1fr);

        align-items: center;
        gap: clamp(45px, 5vw, 80px);
    }

    /* COLUNA ESQUERDA */

    #conteudo .hero-left {
        max-width: 680px;
    }

    #conteudo .sector-tag {
        margin-bottom: 18px;
        padding: 8px 15px;

        font-size: 11px;
        letter-spacing: 1.3px;
    }

    #conteudo .hero h1 {
        max-width: 680px;
        margin: 0 0 20px;

        font-size: clamp(46px, 4.1vw, 66px);
        font-weight: 900;
        line-height: 1.02;
        letter-spacing: -2.4px;
    }

    #conteudo .hero-left > p {
        max-width: 650px;
        margin: 0;

        font-size: 17px;
        line-height: 1.7;
    }

    #conteudo .hero-buttons {
        gap: 14px;
        margin-top: 28px;
    }

    #conteudo .hero-buttons .btn {
        min-height: 52px;
        padding: 12px 26px;
    }

    #conteudo .hero-features {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 10px;
        margin-top: 25px;
    }

    #conteudo .hero-features span {
        justify-content: center;

        min-height: 52px;
        padding: 9px 10px;

        border-radius: 14px;
        font-size: 11px;
        line-height: 1.35;
        text-align: center;
        white-space: normal;
    }

    /* IMAGEM HORIZONTAL */

    #conteudo .hero-right {
        width: 100%;
        min-width: 0;
    }

    #conteudo .hero-right::before {
        inset: 8% -2% -6% 8%;
        border-radius: 28px;
    }

    #conteudo .hero-right img {
        width: 100%;
        max-width: none;
        height: clamp(360px, 43vw, 500px);

        aspect-ratio: 16 / 10;
        object-fit: cover;
        object-position: center 35%;

        border-radius: 28px;

        box-shadow:
            0 28px 65px rgba(17, 24, 39, 0.15);
    }
}

/* ==========================================================
   PORTÁTEIS COM MENOS ALTURA
========================================================== */

@media (min-width: 993px) and (max-height: 850px) {

    #conteudo .hero {
        min-height: auto;
        padding-top: 160px;
        padding-bottom: 38px;
    }

    #conteudo .hero h1 {
        font-size: clamp(43px, 3.8vw, 58px);
    }

    #conteudo .hero-right img {
        height: 390px;
    }

    #conteudo .hero-features {
        margin-top: 20px;
    }
}

/* ==========================================================
   TABLET
========================================================== */

@media (min-width: 769px) and (max-width: 992px) {

    #conteudo .hero {
        padding: 160px 0 70px;
    }

    #conteudo .hero-wrapper {
        gap: 42px;
    }

    #conteudo .hero-left {
        max-width: 760px;
        margin: auto;
    }

    #conteudo .hero-right img {
        width: 100%;
        max-width: 760px;
        height: 420px;

        aspect-ratio: 16 / 9;
        object-fit: cover;
        object-position: center 35%;
    }
}

/* ==========================================================
   TELEMÓVEL
========================================================== */

@media (max-width: 768px) {

    #conteudo .hero {
        padding: 140px 0 65px;
    }

    #conteudo .hero-wrapper {
        gap: 35px;
    }

    #conteudo .sector-tag {
        margin-bottom: 16px;
    }

    #conteudo .hero h1 {
        margin-bottom: 18px;

        font-size: clamp(36px, 10vw, 46px);
        line-height: 1.04;
    }

    #conteudo .hero-left > p {
        font-size: 16px;
        line-height: 1.65;
    }

    #conteudo .hero-buttons {
        margin-top: 24px;
    }

    #conteudo .hero-features {
        margin-top: 22px;
    }

    #conteudo .hero-right img {
        width: 100%;
        height: 270px;

        aspect-ratio: 16 / 9;
        object-fit: cover;
        object-position: center 30%;

        border-radius: 22px;
    }
}
/* ==========================================================
   HERO HOME — AJUSTE FINAL RESPONSIVO
   Não interfere com o header
========================================================== */

/* ==========================================================
   DESKTOP E MONITORES GRANDES
========================================================== */

@media (min-width: 993px) {

    #conteudo .hero {
        display: flex;
        align-items: center;

        min-height: auto;
        padding: 160px 0 42px;

        background:
            radial-gradient(
                circle at 88% 18%,
                rgba(214, 40, 40, 0.075),
                transparent 32%
            ),
            linear-gradient(
                180deg,
                #f8f5f1 0%,
                #fff 100%
            );
    }

    #conteudo .hero-wrapper {
        width: min(calc(100% - 64px), 1500px);

        display: grid;
        grid-template-columns:
            minmax(480px, 0.88fr)
            minmax(560px, 1.12fr);

        align-items: center;
        gap: clamp(45px, 5vw, 85px);
    }

    /* ======================================================
       COLUNA ESQUERDA
    ====================================================== */

    #conteudo .hero-left {
        width: 100%;
        max-width: 690px;
        min-width: 0;
    }

    #conteudo .sector-tag {
        margin-bottom: 18px;
        padding: 8px 15px;

        font-size: 11px;
        line-height: 1.3;
        letter-spacing: 1.35px;
    }

    #conteudo .hero h1 {
        max-width: 690px;
        margin: 0 0 19px;

        color: #111827;

        font-size: clamp(46px, 3.75vw, 64px);
        font-weight: 900;
        line-height: 1.025;
        letter-spacing: -2.2px;
    }

    #conteudo .hero-left > p {
        max-width: 660px;
        margin: 0;

        color: #667085;

        font-size: 17px;
        line-height: 1.68;
    }

    /* ======================================================
       BOTÕES
    ====================================================== */

    #conteudo .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 13px;

        margin-top: 27px;
    }

    #conteudo .hero-buttons .btn {
        min-height: 51px;
        padding: 11px 25px;

        font-size: 15px;

        transition:
            transform 260ms cubic-bezier(.22, 1, .36, 1),
            box-shadow 260ms cubic-bezier(.22, 1, .36, 1),
            background-color 260ms ease,
            border-color 260ms ease,
            color 260ms ease;
    }

    #conteudo .hero-buttons .btn:hover {
        transform: translateY(-2px);
    }

    /* ======================================================
       INDICADORES
    ====================================================== */

    #conteudo .hero-features {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));

        width: 100%;
        gap: 10px;

        margin-top: 22px;
    }

    #conteudo .hero-features span {
        display: grid;
        grid-template-columns: 17px minmax(0, 1fr);
        align-items: center;
        justify-content: initial;
        gap: 8px;

        width: 100%;
        min-width: 0;
        min-height: 52px;

        padding: 9px 11px;

        border: 1px solid #e7e1da;
        border-radius: 13px;

        color: #374151;
        background: rgba(255, 255, 255, 0.95);

        font-size: 12px;
        font-weight: 650;
        line-height: 1.25;
        text-align: center;
        white-space: normal;

        box-shadow:
            0 8px 22px rgba(17, 24, 39, 0.045);

        transition:
            transform 260ms cubic-bezier(.22, 1, .36, 1),
            box-shadow 260ms cubic-bezier(.22, 1, .36, 1),
            border-color 260ms ease;
    }

    #conteudo .hero-features span::before {
        content: "✓";

        display: flex;
        align-items: center;
        justify-content: center;

        width: 17px;
        height: 17px;

        border-radius: 50%;

        color: #fff;
        background: var(--primary);

        font-size: 9px;
        font-weight: 900;
        line-height: 1;
    }

    #conteudo .hero-features span:hover {
        border-color: rgba(214, 40, 40, 0.25);

        box-shadow:
            0 13px 28px rgba(17, 24, 39, 0.07);

        transform: translateY(-2px);
    }

    /* ======================================================
       IMAGEM HORIZONTAL
    ====================================================== */

    #conteudo .hero-right {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;
        min-width: 0;
    }

    #conteudo .hero-right::before {
        inset: 10% -2% -5% 8%;

        border-radius: 28px;

        background: rgba(214, 40, 40, 0.085);

        transform: rotate(2.2deg);
    }

    #conteudo .hero-right img {
        width: 100%;
        max-width: none;
        height: clamp(350px, 35vw, 470px);

        aspect-ratio: 16 / 9;

        object-fit: cover;
        object-position: center 34%;

        border-radius: 27px;

        box-shadow:
            0 26px 62px rgba(17, 24, 39, 0.15);
    }
}

/* ==========================================================
   MONITORES MUITO GRANDES
========================================================== */

@media (min-width: 1700px) {

    #conteudo .hero {
        padding-top: 165px;
        padding-bottom: 48px;
    }

    #conteudo .hero-wrapper {
        width: min(calc(100% - 90px), 1540px);

        grid-template-columns:
            minmax(520px, 0.9fr)
            minmax(650px, 1.1fr);

        gap: 90px;
    }

    #conteudo .hero-left {
        max-width: 720px;
    }

    #conteudo .hero h1 {
        max-width: 720px;
        font-size: 66px;
    }

    #conteudo .hero-left > p {
        max-width: 680px;
        font-size: 18px;
    }

    #conteudo .hero-right img {
        height: 490px;
    }

    #conteudo .hero-features span {
        min-height: 56px;
        font-size: 12.5px;
    }
}

/* ==========================================================
   PORTÁTEIS
========================================================== */

@media (min-width: 993px) and (max-width: 1450px) {

    #conteudo .hero {
        padding: 155px 0 38px;
    }

    #conteudo .hero-wrapper {
        width: min(calc(100% - 48px), 1320px);

        grid-template-columns:
            minmax(430px, 0.9fr)
            minmax(500px, 1.1fr);

        gap: 48px;
    }

    #conteudo .hero h1 {
        font-size: clamp(43px, 3.7vw, 56px);
        letter-spacing: -1.8px;
    }

    #conteudo .hero-left > p {
        font-size: 16px;
    }

    #conteudo .hero-buttons {
        margin-top: 23px;
    }

    #conteudo .hero-features {
        margin-top: 19px;
        gap: 8px;
    }

    #conteudo .hero-features span {
        min-height: 51px;
        padding: 8px 9px;

        font-size: 11px;
        line-height: 1.2;
    }

    #conteudo .hero-right img {
        height: clamp(330px, 32vw, 410px);
    }
}

/* Portáteis com pouca altura */

@media (min-width: 993px) and (max-height: 800px) {

    #conteudo .hero {
        padding-top: 150px;
        padding-bottom: 32px;
    }

    #conteudo .sector-tag {
        margin-bottom: 14px;
    }

    #conteudo .hero h1 {
        margin-bottom: 15px;
        font-size: clamp(41px, 3.45vw, 53px);
    }

    #conteudo .hero-left > p {
        font-size: 15.5px;
        line-height: 1.58;
    }

    #conteudo .hero-buttons {
        margin-top: 20px;
    }

    #conteudo .hero-features {
        margin-top: 17px;
    }

    #conteudo .hero-features span {
        min-height: 47px;
        font-size: 10.5px;
    }

    #conteudo .hero-right img {
        height: 370px;
    }
}

/* ==========================================================
   TABLETS
========================================================== */

@media (min-width: 769px) and (max-width: 992px) {

    #conteudo .hero {
        padding: 160px 0 72px;
    }

    #conteudo .hero-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 42px;
    }

    #conteudo .hero-left {
        max-width: 760px;
        margin: 0 auto;

        text-align: center;
    }

    #conteudo .hero h1 {
        max-width: 760px;
        margin-right: auto;
        margin-left: auto;

        font-size: clamp(45px, 7vw, 58px);
    }

    #conteudo .hero-left > p {
        max-width: 700px;
        margin: 0 auto;

        font-size: 17px;
    }

    #conteudo .hero-buttons {
        justify-content: center;
    }

    #conteudo .hero-features {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));

        max-width: 740px;
        margin: 24px auto 0;
        gap: 10px;
    }

    #conteudo .hero-features span {
        display: grid;
        grid-template-columns: 18px minmax(0, 1fr);
        align-items: center;
        gap: 8px;

        min-height: 58px;
        padding: 10px 12px;

        border: 1px solid #e7e1da;
        border-radius: 14px;

        color: #374151;
        background: #fff;

        font-size: 12px;
        font-weight: 650;
        line-height: 1.25;
        text-align: center;
    }

    #conteudo .hero-features span::before {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 18px;
        height: 18px;

        border-radius: 50%;

        color: #fff;
        background: var(--primary);

        font-size: 9px;
    }

    #conteudo .hero-right img {
        width: 100%;
        max-width: 780px;
        height: 420px;

        aspect-ratio: 16 / 9;

        object-fit: cover;
        object-position: center 34%;

        border-radius: 25px;
    }
}

/* ==========================================================
   TELEMÓVEIS
========================================================== */

@media (max-width: 768px) {

    #conteudo .hero {
        padding: 140px 0 60px;
    }

    #conteudo .hero-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    #conteudo .hero-left {
        width: 100%;
        max-width: none;

        text-align: center;
    }

    #conteudo .sector-tag {
        margin-bottom: 15px;
        padding: 8px 13px;

        font-size: 10px;
        line-height: 1.3;
    }

    #conteudo .hero h1 {
        max-width: 600px;
        margin: 0 auto 17px;

        font-size: clamp(36px, 10vw, 47px);
        line-height: 1.04;
        letter-spacing: -1.4px;
    }

    #conteudo .hero-left > p {
        max-width: 590px;
        margin: 0 auto;

        font-size: 16px;
        line-height: 1.65;
    }

    #conteudo .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 11px;

        margin-top: 23px;
    }

    #conteudo .hero-buttons .btn {
        width: 100%;
        min-height: 52px;
    }

    #conteudo .hero-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;

        margin-top: 20px;
    }

    #conteudo .hero-features span {
        display: grid;
        grid-template-columns: 20px minmax(0, 1fr);
        align-items: center;
        justify-content: initial;
        gap: 10px;

        width: 100%;
        min-height: 48px;

        padding: 10px 14px;

        border: 1px solid #e7e1da;
        border-radius: 13px;

        color: #374151;
        background: #fff;

        font-size: 12.5px;
        font-weight: 650;
        line-height: 1.3;
        text-align: left;

        box-shadow:
            0 8px 20px rgba(17, 24, 39, 0.045);
    }

    #conteudo .hero-features span::before {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 20px;
        height: 20px;

        border-radius: 50%;

        color: #fff;
        background: var(--primary);

        font-size: 10px;
    }

    #conteudo .hero-right img {
        width: 100%;
        height: clamp(230px, 62vw, 340px);

        aspect-ratio: 16 / 9;

        object-fit: cover;
        object-position: center 32%;

        border-radius: 21px;

        box-shadow:
            0 20px 45px rgba(17, 24, 39, 0.14);
    }
}

/* ==========================================================
   TELEMÓVEIS PEQUENOS
========================================================== */

@media (max-width: 480px) {

    #conteudo .hero {
        padding-top: 128px;
        padding-bottom: 52px;
    }

    #conteudo .sector-tag {
        max-width: 100%;

        font-size: 9px;
        letter-spacing: 1px;
        text-align: center;
    }

    #conteudo .hero h1 {
        font-size: clamp(33px, 10.5vw, 40px);
    }

    #conteudo .hero-left > p {
        font-size: 15px;
    }

    #conteudo .hero-features span {
        font-size: 12px;
    }

    #conteudo .hero-right img {
        height: 235px;
    }
}
/* ==========================================================
   TRUST STRIP — MAIS BONITO, CENTRADO E COM REVEAL NO SCROLL
   Não interfere com o header
========================================================== */

#conteudo .trust-strip {
    position: relative;
    padding: 80px 0 90px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfaf8 100%
        );
    overflow: hidden;
}

#conteudo .trust-strip::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;

    width: 780px;
    height: 260px;

    border-radius: 50%;
    background: rgba(214, 40, 40, 0.035);

    filter: blur(80px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

#conteudo .trust-strip-grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    width: min(calc(100% - 48px), 1240px);
    margin: 0 auto;

    gap: 22px;
}

/* CARTÕES */

#conteudo .trust-strip article {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;
    min-height: 170px;

    padding: 30px 28px;

    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 14px 35px rgba(17, 24, 39, 0.055);

    overflow: hidden;

    opacity: 0;
    transform: translateY(34px);

    transition:
        opacity 700ms ease,
        transform 700ms cubic-bezier(.22, 1, .36, 1),
        box-shadow 300ms ease,
        border-color 300ms ease;
}

/* Linha decorativa */

#conteudo .trust-strip article::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        var(--primary),
        #ef4444
    );

    transform: scaleX(0);
    transform-origin: left;

    transition:
        transform 500ms cubic-bezier(.22, 1, .36, 1);
}

/* Ícone decorativo */

#conteudo .trust-strip article::after {
    content: "✓";

    position: absolute;
    top: 22px;
    right: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    color: var(--primary);
    background: #feecec;

    font-size: 14px;
    font-weight: 900;

    opacity: 0;
    transform: scale(.7);

    transition:
        opacity 450ms ease,
        transform 450ms cubic-bezier(.22, 1, .36, 1);
}

#conteudo .trust-strip strong {
    display: block;

    max-width: 80%;
    margin-bottom: 12px;

    color: var(--dark);

    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
}

#conteudo .trust-strip span {
    display: block;

    color: var(--text-light);

    font-size: 15px;
    line-height: 1.7;
}

/* Reveal quando entra no ecrã */

#conteudo .trust-strip.is-visible article {
    opacity: 1;
    transform: translateY(0);
}

#conteudo .trust-strip.is-visible article::before {
    transform: scaleX(1);
}

#conteudo .trust-strip.is-visible article::after {
    opacity: 1;
    transform: scale(1);
}

/* Entrada faseada */

#conteudo .trust-strip.is-visible article:nth-child(1) {
    transition-delay: 0ms;
}

#conteudo .trust-strip.is-visible article:nth-child(2) {
    transition-delay: 90ms;
}

#conteudo .trust-strip.is-visible article:nth-child(3) {
    transition-delay: 180ms;
}

#conteudo .trust-strip.is-visible article:nth-child(4) {
    transition-delay: 270ms;
}

/* Hover suave */

#conteudo .trust-strip article:hover {
    border-color: rgba(214, 40, 40, 0.22);

    box-shadow:
        0 22px 50px rgba(17, 24, 39, 0.09);

    transform: translateY(-5px);
}

/* ==========================================================
   TABLETS
========================================================== */

@media (max-width: 1100px) {

    #conteudo .trust-strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 900px;
    }
}

/* ==========================================================
   TELEMÓVEIS
========================================================== */

@media (max-width: 700px) {

    #conteudo .trust-strip {
        padding: 65px 0 75px;
    }

    #conteudo .trust-strip-grid {
        grid-template-columns: 1fr;
        width: min(calc(100% - 30px), 560px);
        gap: 16px;
    }

    #conteudo .trust-strip article {
        min-height: auto;
        padding: 26px 24px;
        border-radius: 20px;
    }

    #conteudo .trust-strip strong {
        max-width: calc(100% - 52px);
        font-size: 18px;
    }

    #conteudo .trust-strip span {
        font-size: 14px;
    }
}

/* ==========================================================
   REDUZIR MOVIMENTO
========================================================== */

@media (prefers-reduced-motion: reduce) {

    #conteudo .trust-strip article,
    #conteudo .trust-strip article::before,
    #conteudo .trust-strip article::after {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
/* ==========================================================
   AJUSTE DE ALINHAMENTO DO HERO
========================================================== */

@media (min-width: 993px){

    #conteudo .hero-wrapper{
        align-items:center;
    }

    #conteudo .hero-left{
        position:relative;
        top:35px;   /* aumenta ou diminui este valor */
    }

}
/* ==========================================================
   HERO - TÍTULO MAIS COMPACTO
========================================================== */

@media (min-width: 993px){

    #conteudo .hero-wrapper{
        grid-template-columns: 1.05fr 0.95fr;
        gap: 60px;
    }

    #conteudo .hero-left{
        max-width: 760px;
    }

    #conteudo .hero h1{
        max-width: 760px;

        font-size: clamp(52px,4vw,68px);

        line-height: .98;
        letter-spacing: -2.8px;

        text-wrap: balance;
    }

    #conteudo .hero-left p{
        max-width: 700px;
    }

}
/* ==========================================================
   HERO - BAIXAR LIGEIRAMENTE A IMAGEM
========================================================== */

@media (min-width: 993px){

    #conteudo .hero-right{
        position: relative;
        top: 35px;   /* Ajusta entre 10px e 30px conforme preferires */
    }

}
/* ==========================================================
   HERO HOME — MAIS ALTO + CARTÕES MAIORES
   Adicionar no final do home.css
========================================================== */

@media (min-width: 993px){

    /* O hero ocupa todo o espaço visível abaixo da barra superior */
    #conteudo .hero{
        min-height: calc(100svh - 46px) !important;

        padding-top: 175px !important;
        padding-bottom: 80px !important;

        display: flex !important;
        align-items: center !important;
    }

    /* Garante que o conteúdo fica centrado verticalmente */
    #conteudo .hero-wrapper{
        align-items: center !important;
    }

    /* Mantém texto e imagem alinhados */
    #conteudo .hero-left,
    #conteudo .hero-right{
        top: 20px !important;
    }

    /* Mais espaço antes dos cartões */
    #conteudo .hero-features{
        margin-top: 30px !important;
        gap: 14px !important;
    }

    /* Cartões maiores */
    #conteudo .hero-features span{
        min-height: 72px !important;

        padding: 14px 16px !important;

        border-radius: 16px !important;

        font-size: 13px !important;
        line-height: 1.3 !important;

        box-shadow:
            0 12px 28px rgba(17, 24, 39, 0.065) !important;
    }

    /* Círculo vermelho dos cartões ligeiramente maior */
    #conteudo .hero-features span::before{
        width: 21px !important;
        height: 21px !important;

        font-size: 11px !important;
    }

}
/* ==========================================================
   HOME — VITRINE COMERCIAL POR SETOR
   Adicionar no final de /assets/css/home.css
========================================================== */

#conteudo .sales-showcase{
    position:relative;
    padding:105px 0;
    overflow:hidden;
    background:
        radial-gradient(circle at 8% 10%, rgba(214,40,40,.07), transparent 25%),
        radial-gradient(circle at 92% 88%, rgba(214,40,40,.05), transparent 26%),
        #f8f5f1;
}

#conteudo .sales-showcase::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background-image:
        linear-gradient(rgba(17,24,39,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17,24,39,.025) 1px, transparent 1px);
    background-size:54px 54px;
    mask-image:linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

#conteudo .sales-showcase > .container{
    position:relative;
    z-index:1;
}

#conteudo .sales-showcase-heading{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:40px;
    margin-bottom:50px;
}

#conteudo .sales-showcase-heading .section-heading{
    max-width:820px;
    margin:0;
    text-align:left;
}

#conteudo .sales-showcase-heading .section-heading h2{
    max-width:780px;
    margin-inline:0;
}

#conteudo .sales-showcase-heading .section-heading p{
    max-width:760px;
    margin-inline:0;
}

#conteudo .sales-showcase-link{
    display:inline-flex;
    flex:0 0 auto;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-height:52px;
    padding:0 22px;
    border:1px solid rgba(214,40,40,.22);
    border-radius:999px;
    color:#b71c1c;
    background:rgba(255,255,255,.82);
    font-size:14px;
    font-weight:800;
    text-decoration:none;
    box-shadow:0 12px 30px rgba(17,24,39,.05);
    transition:transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

#conteudo .sales-showcase-link:hover{
    color:#fff;
    background:#d62828;
    transform:translateY(-3px);
    box-shadow:0 18px 38px rgba(214,40,40,.2);
}

#conteudo .sales-showcase-link span{
    font-size:19px;
}

#conteudo .sales-offers-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}

#conteudo .sales-offer-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-width:0;
    min-height:530px;
    padding:30px;
    overflow:hidden;
    border:1px solid rgba(17,24,39,.08);
    border-radius:24px;
    background:rgba(255,255,255,.96);
    box-shadow:0 18px 48px rgba(17,24,39,.065);
    transition:transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease, border-color .28s ease;
}

#conteudo .sales-offer-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#d62828,#ef5350);
    transform:scaleX(.22);
    transform-origin:left;
    transition:transform .3s ease;
}

#conteudo .sales-offer-card::after{
    content:"";
    position:absolute;
    top:-80px;
    right:-80px;
    width:190px;
    height:190px;
    border-radius:50%;
    background:rgba(214,40,40,.045);
    pointer-events:none;
}

#conteudo .sales-offer-card:hover{
    border-color:rgba(214,40,40,.2);
    transform:translateY(-7px);
    box-shadow:0 28px 68px rgba(17,24,39,.11);
}

#conteudo .sales-offer-card:hover::before{
    transform:scaleX(1);
}

#conteudo .sales-offer-card.featured{
    border:2px solid rgba(214,40,40,.38);
    background:
        radial-gradient(circle at top right,rgba(214,40,40,.08),transparent 34%),
        #fff;
}

#conteudo .sales-offer-badge{
    position:absolute;
    top:18px;
    right:18px;
    z-index:2;
    padding:7px 11px;
    border-radius:999px;
    color:#fff;
    background:#d62828;
    font-size:10px;
    font-weight:850;
    letter-spacing:.08em;
    text-transform:uppercase;
}

#conteudo .sales-offer-topline{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:22px;
}

#conteudo .sales-offer-topline span{
    color:#d62828;
    font-size:11px;
    font-weight:850;
    letter-spacing:.11em;
    text-transform:uppercase;
}

#conteudo .sales-offer-topline strong{
    color:#d9dce2;
    font-size:26px;
    font-weight:900;
    line-height:1;
}

#conteudo .sales-offer-card h3{
    margin:0 0 8px;
    color:#172033;
    font-size:26px;
    line-height:1.16;
    letter-spacing:-.035em;
}

#conteudo .sales-offer-product{
    margin:0 0 21px;
    color:#667085;
    font-size:15px;
    font-weight:650;
}

#conteudo .sales-offer-price{
    display:grid;
    grid-template-columns:auto 1fr;
    align-items:end;
    width:100%;
    margin-bottom:9px;
    padding:18px 19px;
    border:1px solid rgba(214,40,40,.13);
    border-radius:17px;
    color:#172033;
    background:#fff5f5;
    text-decoration:none;
    transition:background-color .25s ease, transform .25s ease, border-color .25s ease;
}

#conteudo .sales-offer-price:hover{
    border-color:rgba(214,40,40,.3);
    color:#172033;
    background:#feeaea;
    transform:translateY(-2px);
}

#conteudo .sales-offer-price > span{
    grid-column:1/-1;
    margin-bottom:3px;
    color:#9a2b2b;
    font-size:11px;
    font-weight:850;
    letter-spacing:.08em;
    text-transform:uppercase;
}

#conteudo .sales-offer-price strong{
    color:#d62828;
    font-size:38px;
    font-weight:900;
    line-height:1;
    letter-spacing:-.045em;
}

#conteudo .sales-offer-price small{
    padding:0 0 4px 8px;
    color:#667085;
    font-size:12px;
    font-weight:700;
}

#conteudo .sales-offer-condition{
    margin:0 0 18px;
    color:#8a94a5;
    font-size:11px;
    line-height:1.45;
}

#conteudo .sales-offer-description{
    margin:0 0 18px;
    color:#667085;
    font-size:14px;
    line-height:1.7;
}

#conteudo .sales-offer-items{
    display:grid;
    gap:9px;
    margin:0 0 25px;
    padding:0;
    list-style:none;
}

#conteudo .sales-offer-items li{
    position:relative;
    padding-left:25px;
    color:#3f4858;
    font-size:13px;
    font-weight:650;
    line-height:1.45;
}

#conteudo .sales-offer-items li::before{
    content:"✓";
    position:absolute;
    top:0;
    left:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:18px;
    height:18px;
    border-radius:50%;
    color:#d62828;
    background:#feecec;
    font-size:10px;
    font-weight:900;
}

#conteudo .sales-offer-actions{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-top:auto;
    padding-top:21px;
    border-top:1px solid #eceff2;
}

#conteudo .sales-offer-sector-link,
#conteudo .sales-offer-quote-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:43px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
    text-decoration:none;
    transition:transform .22s ease, color .22s ease, background-color .22s ease;
}

#conteudo .sales-offer-sector-link{
    padding:0 4px;
    color:#172033;
}

#conteudo .sales-offer-sector-link:hover{
    color:#d62828;
    transform:translateX(3px);
}

#conteudo .sales-offer-quote-link{
    padding:0 16px;
    color:#fff;
    background:#d62828;
}

#conteudo .sales-offer-quote-link:hover{
    color:#fff;
    background:#b71c1c;
    transform:translateY(-2px);
}

#conteudo .sales-price-note{
    margin-top:24px;
    padding:17px 20px;
    border:1px solid rgba(17,24,39,.08);
    border-radius:15px;
    color:#667085;
    background:rgba(255,255,255,.68);
    font-size:12px;
    line-height:1.65;
    text-align:center;
}

#conteudo .sales-price-note strong{
    color:#172033;
}

@media (max-width:1100px){
    #conteudo .sales-offers-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    #conteudo .sales-showcase-heading{
        align-items:flex-start;
        flex-direction:column;
    }
}

@media (max-width:700px){
    #conteudo .sales-showcase{
        padding:72px 0;
    }

    #conteudo .sales-showcase-heading{
        gap:24px;
        margin-bottom:34px;
    }

    #conteudo .sales-showcase-heading .section-heading{
        text-align:center;
    }

    #conteudo .sales-showcase-heading .section-heading h2,
    #conteudo .sales-showcase-heading .section-heading p{
        margin-inline:auto;
    }

    #conteudo .sales-showcase-link{
        width:100%;
    }

    #conteudo .sales-offers-grid{
        grid-template-columns:1fr;
        gap:14px;
    }

    #conteudo .sales-offer-card{
        min-height:0;
        padding:24px;
        border-radius:19px;
    }

    #conteudo .sales-offer-card h3{
        font-size:23px;
    }

    #conteudo .sales-offer-price strong{
        font-size:34px;
    }

    #conteudo .sales-offer-actions{
        align-items:stretch;
        flex-direction:column;
    }

    #conteudo .sales-offer-sector-link,
    #conteudo .sales-offer-quote-link{
        width:100%;
    }
}

@media (prefers-reduced-motion:reduce){
    #conteudo .sales-offer-card,
    #conteudo .sales-offer-card::before,
    #conteudo .sales-offer-price,
    #conteudo .sales-showcase-link,
    #conteudo .sales-offer-sector-link,
    #conteudo .sales-offer-quote-link{
        transition:none;
    }
}
/* ==========================================================
   HOME — IMPACTO E COBERTURA NACIONAL
========================================================== */

.home-impact{
    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(214,40,40,.045),
            transparent 34%
        ),
        #f8f5f1;
}

.home-impact .container{
    width:min(calc(100% - 48px),1350px);
    max-width:1350px;
    margin-inline:auto;
}

/* ==========================================================
   CABEÇALHO
========================================================== */

.home-impact-heading{
    max-width:850px;

    margin:0 auto 78px;

    text-align:center;
}

.home-impact-heading .section-label{
    display:inline-block;

    margin-bottom:18px;

    color:var(--primary,#d62828);

    font-size:12px;
    font-weight:800;
    line-height:1.3;
    letter-spacing:2px;

    text-transform:uppercase;
}

.home-impact-heading h2{
    max-width:850px;

    margin:0 auto 22px;

    color:#111827;

    font-size:clamp(38px,4.3vw,58px);
    font-weight:800;
    line-height:1.08;
    letter-spacing:-.045em;
}

.home-impact-heading p{
    max-width:760px;

    margin:0 auto;

    color:#667085;

    font-size:17px;
    line-height:1.85;
}

/* ==========================================================
   LAYOUT
========================================================== */

.home-impact-layout{
    display:grid;
    grid-template-columns:330px minmax(280px,1fr) 330px;

    align-items:center;

    gap:55px;
}

.home-impact-column{
    display:flex;
    flex-direction:column;

    gap:26px;
}

/* ==========================================================
   CARTÕES
========================================================== */

.home-impact-card{
    position:relative;

    min-height:255px;

    padding:34px;

    overflow:hidden;

    border:1px solid #ebe6df;
    border-radius:24px;

    background:#fff;

    box-shadow:
        0 16px 42px rgba(17,24,39,.06);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.home-impact-card::before{
    content:"";

    position:absolute;
    top:0;
    left:0;

    width:58px;
    height:4px;

    border-radius:0 999px 999px 0;

    background:var(--primary,#d62828);

    transition:width .3s ease;
}

.home-impact-card:hover{
    border-color:rgba(214,40,40,.25);

    box-shadow:
        0 27px 65px rgba(17,24,39,.11);

    transform:translateY(-7px);
}

.home-impact-card:hover::before{
    width:100%;
}

/* ==========================================================
   NÚMEROS
========================================================== */

.home-impact-number{
    display:flex;
    align-items:flex-end;

    margin-bottom:18px;

    color:var(--primary,#d62828);

    font-size:clamp(48px,4.5vw,68px);
    font-weight:850;
    line-height:.95;
    letter-spacing:-.065em;

    transition:transform .3s ease;
}

.home-impact-number::after{
    content:attr(data-suffix);

    margin-bottom:6px;
    margin-left:5px;

    color:var(--primary,#d62828);

    font-size:.45em;
    font-weight:800;
    line-height:1;
    letter-spacing:0;
}

.home-impact-card:hover .home-impact-number{
    transform:scale(1.035);
    transform-origin:left bottom;
}

.home-impact-card h3{
    margin:0 0 12px;

    color:#172033;

    font-size:23px;
    font-weight:800;
    line-height:1.25;
    letter-spacing:-.02em;
}

.home-impact-card p{
    margin:0;

    color:#667085;

    font-size:15px;
    line-height:1.75;
}

/* ==========================================================
   MAPA
========================================================== */

.home-impact-map{
    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    min-height:530px;
}

.home-impact-map img{
    display:block;

    width:100%;
    max-width:360px;
    height:auto;

    opacity:.2;

    filter:grayscale(100%);

    user-select:none;
}

/* ==========================================================
   PONTOS DO MAPA
========================================================== */

.home-map-point{
    position:absolute;

    width:17px;
    height:17px;

    border:4px solid #fff;
    border-radius:50%;

    background:var(--primary,#d62828);

    box-shadow:
        0 0 0 8px rgba(214,40,40,.15);

    cursor:default;

    animation:homeMapPulse 2.5s infinite;
}

.home-map-point::after{
    content:attr(data-city);

    position:absolute;
    left:50%;
    bottom:29px;

    display:flex;
    align-items:center;
    justify-content:center;

    min-width:82px;
    height:34px;

    padding:0 13px;

    border-radius:999px;

    color:#111827;
    background:#fff;

    box-shadow:
        0 9px 25px rgba(17,24,39,.14);

    font-size:12px;
    font-weight:700;
    white-space:nowrap;

    opacity:0;
    visibility:hidden;

    pointer-events:none;

    transform:translate(-50%,6px);

    transition:
        opacity .22s ease,
        visibility .22s ease,
        transform .22s ease;
}

.home-map-point::before{
    content:"";

    position:absolute;
    left:50%;
    bottom:22px;

    border-top:7px solid #fff;
    border-right:6px solid transparent;
    border-left:6px solid transparent;

    opacity:0;
    visibility:hidden;

    transform:translateX(-50%);

    transition:
        opacity .22s ease,
        visibility .22s ease;
}

.home-map-point:hover::after{
    opacity:1;
    visibility:visible;

    transform:translate(-50%,0);
}

.home-map-point:hover::before{
    opacity:1;
    visibility:visible;
}

.home-map-porto{
    top:21%;
    left:46%;
}

.home-map-coimbra{
    top:40%;
    left:43%;
}

.home-map-lisboa{
    top:62%;
    left:29%;
}

.home-map-faro{
    top:91%;
    left:50%;
}

@keyframes homeMapPulse{
    0%{
        box-shadow:
            0 0 0 0 rgba(214,40,40,.35);
    }

    70%{
        box-shadow:
            0 0 0 18px rgba(214,40,40,0);
    }

    100%{
        box-shadow:
            0 0 0 0 rgba(214,40,40,0);
    }
}

/* ==========================================================
   FRASE FINAL
========================================================== */

.home-impact-footer{
    max-width:920px;

    margin:72px auto 0;
    padding:30px 36px;

    border:1px solid rgba(214,40,40,.11);
    border-radius:20px;

    background:rgba(255,255,255,.72);

    text-align:center;

    box-shadow:
        0 14px 38px rgba(17,24,39,.045);
}

.home-impact-footer p{
    margin:0;

    color:#4b5563;

    font-size:18px;
    font-weight:500;
    line-height:1.8;
}

/* ==========================================================
   ECRÃS MÉDIOS
========================================================== */

@media (max-width:1150px){

    .home-impact-layout{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:24px;
    }

    .home-impact-map{
        grid-column:1 / -1;
        grid-row:1;

        min-height:410px;
    }

    .home-impact-map img{
        max-width:275px;
    }

    .home-impact-column{
        display:grid;
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .home-impact-column{
        grid-column:1 / -1;
    }

    .home-impact-card{
        min-height:235px;
    }

}

/* ==========================================================
   TABLETS
========================================================== */

@media (max-width:800px){

    .home-impact{
        padding:88px 0;
    }

    .home-impact .container{
        width:min(calc(100% - 30px),1350px);
    }

    .home-impact-heading{
        margin-bottom:52px;
    }

    .home-impact-heading h2{
        font-size:clamp(34px,7vw,45px);
    }

    .home-impact-layout{
        grid-template-columns:1fr;
    }

    .home-impact-map{
        grid-column:1;

        min-height:350px;
    }

    .home-impact-column{
        grid-column:1;
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .home-impact-card{
        min-height:250px;
        padding:28px;
    }

}

/* ==========================================================
   TELEFONES
========================================================== */

@media (max-width:600px){

    .home-impact{
        padding:72px 0;
    }

    .home-impact .container{
        width:calc(100% - 24px);
    }

    .home-impact-heading{
        margin-bottom:38px;
    }

    .home-impact-heading .section-label{
        font-size:10px;
        letter-spacing:1.5px;
    }

    .home-impact-heading h2{
        margin-bottom:16px;

        font-size:clamp(30px,9vw,38px);
    }

    .home-impact-heading p{
        font-size:15px;
        line-height:1.7;
    }

    .home-impact-map{
        min-height:310px;
    }

    .home-impact-map img{
        max-width:210px;
    }

    .home-map-point{
        width:14px;
        height:14px;

        border-width:3px;
    }

    .home-impact-column{
        grid-template-columns:1fr;
        gap:14px;
    }

    .home-impact-card{
        min-height:0;

        padding:25px;

        border-radius:19px;
    }

    .home-impact-number{
        font-size:48px;
    }

    .home-impact-card h3{
        font-size:20px;
    }

    .home-impact-card p{
        font-size:14px;
    }

    .home-impact-footer{
        margin-top:42px;
        padding:23px 20px;

        border-radius:17px;
    }

    .home-impact-footer p{
        font-size:15px;
        line-height:1.7;
    }

}

/* ==========================================================
   REDUZIR MOVIMENTO
========================================================== */

@media (prefers-reduced-motion:reduce){

    .home-map-point{
        animation:none;
    }

    .home-impact-card,
    .home-impact-number,
    .home-map-point::after{
        transition:none;
    }

}
/* ==========================================================
   HOME — CORRIGIR TAMANHO DO MAPA
========================================================== */

.home-impact-map{
    position:relative !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    width:100% !important;
    min-width:0 !important;
    min-height:520px !important;

    overflow:visible !important;
}

.home-impact-map img{
    display:block !important;

    width:340px !important;
    max-width:340px !important;
    height:auto !important;
    max-height:580px !important;

    margin:0 auto !important;

    object-fit:contain !important;

    opacity:.18 !important;
    filter:grayscale(100%) !important;
}

.home-impact-map{
    max-width:470px !important;
    min-height:580px !important;
    margin:0 auto !important;
}

/* As posições passam a ser calculadas sobre uma área fixa */

.home-impact-map{
    max-width:420px !important;
    margin:0 auto !important;
}

.home-map-porto{
    top:21% !important;
    left:46% !important;
}

.home-map-coimbra{
    top:40% !important;
    left:43% !important;
}

.home-map-lisboa{
    top:62% !important;
    left:29% !important;
}

.home-map-faro{
    top:90% !important;
    left:50% !important;
}

/* TABLET */

@media (max-width:1150px){

    .home-impact-map{
        min-height:430px !important;
    }

    .home-impact-map img{
        width:250px !important;
        max-width:250px !important;
        max-height:410px !important;
    }

}

/* TELEFONE */

@media (max-width:600px){

    .home-impact-map{
        min-height:340px !important;
        max-width:290px !important;
    }

    .home-impact-map img{
        width:205px !important;
        max-width:205px !important;
        max-height:320px !important;
    }

}
/* ==========================================================
   MAPA — MOSTRAR CIDADE POR TOQUE NO TELEFONE
========================================================== */

.home-map-point{
    touch-action:manipulation;
    -webkit-tap-highlight-color:transparent;
}

.home-map-point.is-active::after,
.home-map-point.is-active::before{
    opacity:1 !important;
    visibility:visible !important;
}

.home-map-point.is-active::after{
    transform:translate(-50%,0) !important;
}

@media (max-width:600px){

    .home-map-point::after{
        bottom:27px;
        min-width:76px;
        height:32px;
        padding:0 11px;
        font-size:11px;
        z-index:20;
    }

    .home-map-point::before{
        bottom:20px;
        z-index:19;
    }

}
/* Apenas PC */
@media (min-width: 1151px){

    .home-map-lisboa{
        left:20% !important;
    }

}
/* ==========================================================
   HOME — MESMO EFEITO DO BOTÃO "PEDIR ORÇAMENTO" DO HEADER
   Não afeta o header nem o footer
========================================================== */

/* Estado normal de todos os botões da Home */

#conteudo .btn,
#conteudo button[type="submit"],
#conteudo .sales-showcase-link,
#conteudo .sales-offer-price,
#conteudo .sales-offer-sector-link,
#conteudo .sales-offer-quote-link{
    transform:translateY(0) !important;

    transition:
        transform .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease,
        box-shadow .2s ease !important;
}

/* Hover igual ao botão vermelho do header */

#conteudo .btn:hover,
#conteudo .btn:focus-visible,
#conteudo button[type="submit"]:hover,
#conteudo button[type="submit"]:focus-visible,
#conteudo .sales-showcase-link:hover,
#conteudo .sales-showcase-link:focus-visible,
#conteudo .sales-offer-price:hover,
#conteudo .sales-offer-price:focus-visible,
#conteudo .sales-offer-sector-link:hover,
#conteudo .sales-offer-sector-link:focus-visible,
#conteudo .sales-offer-quote-link:hover,
#conteudo .sales-offer-quote-link:focus-visible{
    transform:translateY(-2px) !important;
}

/* Botões vermelhos */

#conteudo .btn-primary:hover,
#conteudo .btn-primary:focus-visible,
#conteudo button.btn-primary:hover,
#conteudo button.btn-primary:focus-visible,
#conteudo .sales-offer-quote-link:hover,
#conteudo .sales-offer-quote-link:focus-visible{
    color:#fff !important;
    background:var(--primary-dark) !important;
    border-color:var(--primary-dark) !important;

    box-shadow:
        0 14px 30px rgba(214,40,40,.26) !important;
}

/* Botões brancos */

#conteudo .btn-secondary:hover,
#conteudo .btn-secondary:focus-visible,
#conteudo .sales-showcase-link:hover,
#conteudo .sales-showcase-link:focus-visible{
    color:var(--primary) !important;
    background:#fff !important;
    border-color:var(--primary) !important;

    box-shadow:
        0 14px 30px rgba(17,24,39,.09) !important;
}

/* Links simples que funcionam como botão */

#conteudo .sales-offer-sector-link:hover,
#conteudo .sales-offer-sector-link:focus-visible{
    color:var(--primary) !important;
}

/* Clique */

#conteudo .btn:active,
#conteudo button[type="submit"]:active,
#conteudo .sales-showcase-link:active,
#conteudo .sales-offer-price:active,
#conteudo .sales-offer-sector-link:active,
#conteudo .sales-offer-quote-link:active{
    transform:translateY(0) !important;
}
/* ==========================================================
   HOME — ANIMAÇÃO SUAVE DAS CAIXAS
========================================================== */

#conteudo .solution-card,
#conteudo .sales-offer-card,
#conteudo .trust-strip article,
#conteudo .home-impact-card,
#conteudo .advantage-card,
#conteudo .sector-card,
#conteudo .step,
#conteudo .case-card{
    transform:translateY(0) !important;

    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        box-shadow .45s cubic-bezier(.22,1,.36,1),
        border-color .35s ease,
        background-color .35s ease !important;

    will-change:transform;
}

/* Hover suave */

#conteudo .solution-card:hover,
#conteudo .sales-offer-card:hover,
#conteudo .trust-strip article:hover,
#conteudo .home-impact-card:hover,
#conteudo .advantage-card:hover,
#conteudo .sector-card:hover,
#conteudo .step:hover,
#conteudo .case-card:hover{
    transform:translateY(-5px) !important;
}

/* Clique */

#conteudo .solution-card:active,
#conteudo .sales-offer-card:active,
#conteudo .trust-strip article:active,
#conteudo .home-impact-card:active,
#conteudo .advantage-card:active,
#conteudo .sector-card:active,
#conteudo .step:active,
#conteudo .case-card:active{
    transform:translateY(-2px) !important;

    transition-duration:.14s !important;
}
/* ==========================================================
   CARTÕES DE PREÇOS — LINHA VERMELHA ANIMADA
========================================================== */

#conteudo .sales-offer-card::before{
    transform:scaleX(.22) !important;
    transform-origin:left center !important;

    transition:
        transform .65s cubic-bezier(.22,1,.36,1) !important;
}

#conteudo .sales-offer-card:hover::before,
#conteudo .sales-offer-card:focus-within::before{
    transform:scaleX(1) !important;
}
/* ==========================================================
   HOME — AJUSTE FINAL DE ESPAÇAMENTO ENTRE SECÇÕES
   Reduz espaços em branco sem alterar o Hero/Header/Footer
========================================================== */

/* Ritmo vertical geral da página */
#conteudo .section {
    padding-top: 88px !important;
    padding-bottom: 88px !important;
}

/* Menos distância entre o título introdutório e o conteúdo */
#conteudo .section-heading {
    margin-bottom: 46px !important;
}

#conteudo .section-heading .section-label {
    margin-bottom: 14px !important;
}

#conteudo .section-heading h2 {
    margin-bottom: 16px !important;
}

#conteudo .section-heading p {
    line-height: 1.7 !important;
}

#conteudo .section-action {
    margin-top: 36px !important;
}

/* Faixa imediatamente após o Hero */
#conteudo .trust-strip {
    padding-top: 52px !important;
    padding-bottom: 58px !important;
}

/* Secção “Um parceiro para a sua equipa” */
#conteudo .home-impact,
#conteudo .about-impact {
    padding-top: 82px !important;
    padding-bottom: 82px !important;
}

#conteudo .home-impact-heading {
    margin-bottom: 44px !important;
}

#conteudo .home-impact-heading .section-label {
    margin-bottom: 14px !important;
}

#conteudo .home-impact-heading h2 {
    margin-bottom: 16px !important;
}

#conteudo .home-impact-layout,
#conteudo .impact-layout {
    gap: 30px !important;
}

#conteudo .home-impact-column,
#conteudo .impact-column {
    gap: 18px !important;
}

#conteudo .home-impact-footer {
    margin-top: 38px !important;
}

/* Secção “Preços de entrada” */
#conteudo .sales-showcase {
    padding-top: 78px !important;
    padding-bottom: 82px !important;
}

#conteudo .sales-showcase-heading {
    margin-bottom: 38px !important;
}

/* Restantes secções com espaçamento próprio */
#conteudo .quote-section,
#conteudo .solutions,
#conteudo .advantages,
#conteudo .sectors,
#conteudo .process,
#conteudo .case-studies,
#conteudo .faq {
    padding-top: 84px !important;
    padding-bottom: 84px !important;
}

#conteudo .quote-section .quote-box {
    padding: 46px !important;
}

#conteudo .quote-section .section-heading {
    margin-bottom: 34px !important;
}

/* Compactação ligeira no interior dos cartões */
#conteudo .solution-card {
    padding: 36px !important;
}

#conteudo .impact-card,
#conteudo .home-impact-card,
#conteudo .advantage-card,
#conteudo .step {
    padding: 30px !important;
}

#conteudo .sales-offer-card {
    padding: 26px !important;
}

/* Tablet */
@media (max-width: 992px) {
    #conteudo .section,
    #conteudo .home-impact,
    #conteudo .about-impact,
    #conteudo .sales-showcase,
    #conteudo .quote-section,
    #conteudo .solutions,
    #conteudo .advantages,
    #conteudo .sectors,
    #conteudo .process,
    #conteudo .case-studies,
    #conteudo .faq {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    #conteudo .section-heading,
    #conteudo .home-impact-heading,
    #conteudo .sales-showcase-heading {
        margin-bottom: 38px !important;
    }
}

/* Telemóvel */
@media (max-width: 768px) {
    #conteudo .section,
    #conteudo .home-impact,
    #conteudo .about-impact,
    #conteudo .sales-showcase,
    #conteudo .quote-section,
    #conteudo .solutions,
    #conteudo .advantages,
    #conteudo .sectors,
    #conteudo .process,
    #conteudo .case-studies,
    #conteudo .faq {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    #conteudo .trust-strip {
        padding-top: 42px !important;
        padding-bottom: 46px !important;
    }

    #conteudo .section-heading,
    #conteudo .home-impact-heading,
    #conteudo .sales-showcase-heading {
        margin-bottom: 30px !important;
    }

    #conteudo .section-heading h2,
    #conteudo .home-impact-heading h2 {
        margin-bottom: 13px !important;
    }

    #conteudo .home-impact-layout,
    #conteudo .impact-layout {
        gap: 22px !important;
    }

    #conteudo .quote-section .quote-box {
        padding: 30px 22px !important;
    }

    #conteudo .solution-card,
    #conteudo .impact-card,
    #conteudo .home-impact-card,
    #conteudo .advantage-card,
    #conteudo .step,
    #conteudo .sales-offer-card {
        padding: 25px !important;
    }
}

@media (max-width: 480px) {
    #conteudo .section,
    #conteudo .home-impact,
    #conteudo .about-impact,
    #conteudo .sales-showcase,
    #conteudo .quote-section,
    #conteudo .solutions,
    #conteudo .advantages,
    #conteudo .sectors,
    #conteudo .process,
    #conteudo .case-studies,
    #conteudo .faq {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    #conteudo .section-heading,
    #conteudo .home-impact-heading,
    #conteudo .sales-showcase-heading {
        margin-bottom: 26px !important;
    }
}
/* ==========================================================
   HOME - REDUZIR ESPAÇO ENTRE SECÇÕES
========================================================== */

/* Todas as secções */
#conteudo .section{
    padding:70px 0 !important;
}

/* Cabeçalhos */
#conteudo .section-heading{
    margin:0 auto 35px !important;
}

#conteudo .section-heading h2{
    margin-bottom:16px !important;
}

#conteudo .section-heading p{
    margin-bottom:0 !important;
}

/* ESTA É A SECÇÃO DO "UM PARCEIRO..." */
#conteudo .advantages{
    padding-top:60px !important;
    padding-bottom:45px !important;
}

/* Caso essa secção tenha um wrapper */
#conteudo .advantages .container{
    padding-bottom:0 !important;
}

/* Remove qualquer altura mínima */
#conteudo .advantages,
#conteudo .sales-showcase{
    min-height:auto !important;
    height:auto !important;
}

/* Reduz muito o espaço antes da secção seguinte */
#conteudo .sales-showcase{
    padding-top:45px !important;
    padding-bottom:70px !important;
}

/* Se existir margem entre secções */
#conteudo .advantages + section{
    margin-top:0 !important;
}
/* ==========================================================
   AJUSTE FINAL — SECÇÃO "UM PARCEIRO PARA A SUA EQUIPA"
========================================================== */

#conteudo .advantages{
    min-height: 0 !important;
    height: auto !important;

    padding-top: 42px !important;
    padding-bottom: 28px !important;

    display: block !important;
    align-items: initial !important;
    justify-content: initial !important;
}

/* Contentor interno */
#conteudo .advantages > .container{
    min-height: 0 !important;
    height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Cabeçalho da secção */
#conteudo .advantages .section-heading{
    margin-top: 0 !important;
    margin-bottom: 28px !important;
}

/* Distâncias internas do título */
#conteudo .advantages .section-label{
    margin-bottom: 14px !important;
}

#conteudo .advantages .section-heading h2{
    margin-bottom: 14px !important;
}

#conteudo .advantages .section-heading p{
    margin-bottom: 0 !important;
}

/* Grelha/cartões, caso existam abaixo do título */
#conteudo .advantages-grid{
    margin-top: 0 !important;
}

/* Secção seguinte: "PREÇOS DE ENTRADA" */
#conteudo .advantages + .sales-showcase{
    margin-top: 0 !important;
    padding-top: 35px !important;
}

/* Caso existam elementos vazios a criar altura */
#conteudo .advantages .spacer,
#conteudo .advantages .section-spacer,
#conteudo .advantages .empty-space{
    display: none !important;
}

/* TABLET */
@media (max-width: 992px){
    #conteudo .advantages{
        padding-top: 38px !important;
        padding-bottom: 24px !important;
    }

    #conteudo .advantages + .sales-showcase{
        padding-top: 32px !important;
    }
}

/* TELEMÓVEL */
@media (max-width: 768px){
    #conteudo .advantages{
        padding-top: 32px !important;
        padding-bottom: 20px !important;
    }

    #conteudo .advantages .section-heading{
        margin-bottom: 24px !important;
    }

    #conteudo .advantages + .sales-showcase{
        padding-top: 28px !important;
    }
}
/* =====================================================
   COMPACTAR TRUST STRIP + PREÇOS DE ENTRADA
   Colocar no final do home.css
===================================================== */

#conteudo .trust-strip {
    min-height: 0 !important;
    height: auto !important;
    padding: 28px 0 12px !important;
}

/* Cabeçalho "Um parceiro para a sua equipa" */
#conteudo .trust-strip .section-heading {
    margin: 0 auto 22px !important;
}

#conteudo .trust-strip .section-label {
    margin-bottom: 10px !important;
}

#conteudo .trust-strip .section-heading h2 {
    margin-bottom: 10px !important;
}

#conteudo .trust-strip .section-heading p {
    margin-bottom: 0 !important;
    line-height: 1.6 !important;
}

/* Remove qualquer altura ou espaço artificial do contentor */
#conteudo .trust-strip > .container {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Cartões da trust strip */
#conteudo .trust-strip-grid {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Secção "Preços de entrada" */
#conteudo .sales-showcase.section {
    min-height: 0 !important;
    height: auto !important;
    margin-top: 0 !important;
    padding-top: 18px !important;
    padding-bottom: 60px !important;
}

#conteudo .sales-showcase > .container {
    padding-top: 0 !important;
}

#conteudo .sales-showcase-heading {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
}

#conteudo .sales-showcase .section-heading {
    margin: 0 !important;
}

/* Telemóvel */
@media (max-width: 768px) {
    #conteudo .trust-strip {
        padding: 24px 0 10px !important;
    }

    #conteudo .trust-strip .section-heading {
        margin-bottom: 18px !important;
    }

    #conteudo .sales-showcase.section {
        padding-top: 14px !important;
        padding-bottom: 45px !important;
    }
}
/* ==========================================================
   TRUST STRIP — VERSÃO COMERCIAL PARA FARDAMENTO
========================================================== */

#conteudo .trust-strip {
    min-height: 0 !important;
    height: auto !important;
    padding: 55px 0 45px !important;
}

#conteudo .trust-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 35px;
}

#conteudo .trust-intro-content {
    max-width: 880px;
}

#conteudo .trust-intro .section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 9px 17px;
    border-radius: 999px;
    color: var(--primary);
    background: #feecec;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

#conteudo .trust-intro h2 {
    max-width: 900px;
    margin: 0 0 15px;
    color: var(--dark);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -1.6px;
}

#conteudo .trust-intro p {
    max-width: 820px;
    margin: 0;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
}

#conteudo .trust-intro .btn {
    flex: 0 0 auto;
}

#conteudo .trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0 !important;
}

#conteudo .trust-strip article {
    min-height: 175px;
    padding: 26px;
}

@media (max-width: 1100px) {
    #conteudo .trust-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    #conteudo .trust-strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    #conteudo .trust-strip {
        padding: 40px 0 30px !important;
    }

    #conteudo .trust-intro {
        margin-bottom: 25px;
    }

    #conteudo .trust-intro h2 {
        font-size: clamp(32px, 9vw, 42px);
    }

    #conteudo .trust-intro p {
        font-size: 16px;
    }

    #conteudo .trust-intro .btn {
        width: 100%;
    }

    #conteudo .trust-strip-grid {
        grid-template-columns: 1fr;
    }

    #conteudo .trust-strip article {
        min-height: 0;
    }
}
/* ==========================================================
   TRUST STRIP — UX MELHORADA
========================================================== */

#conteudo .trust-strip {
    position: relative;
    min-height: 0 !important;
    height: auto !important;
    padding: 72px 0 !important;
    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(214, 40, 40, 0.06),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbf9f7 100%
        );
}

#conteudo .trust-strip > .container {
    min-height: 0 !important;
    height: auto !important;
}

#conteudo .trust-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);
    align-items: center;
    gap: clamp(55px, 7vw, 110px);
}

/* ==========================================================
   CONTEÚDO PRINCIPAL
========================================================== */

#conteudo .trust-content {
    max-width: 800px;
}

#conteudo .trust-content .section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 9px 17px;
    border-radius: 999px;
    color: var(--primary);
    background: #feecec;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

#conteudo .trust-content h2 {
    max-width: 820px;
    margin: 0 0 22px;
    color: var(--dark);
    font-size: clamp(42px, 4.4vw, 64px);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -2px;
    text-wrap: balance;
}

#conteudo .trust-lead {
    max-width: 720px;
    margin: 0;
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.72;
}

/* ==========================================================
   AÇÕES
========================================================== */

#conteudo .trust-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    margin-top: 30px;
}

#conteudo .trust-actions .btn {
    min-height: 56px;
    padding-inline: 28px;
}

#conteudo .trust-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--dark);
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

#conteudo .trust-secondary-link span {
    color: var(--primary);
    font-size: 20px;
    transition: transform 0.25s ease;
}

#conteudo .trust-secondary-link:hover {
    color: var(--primary);
}

#conteudo .trust-secondary-link:hover span {
    transform: translateX(4px);
}

/* ==========================================================
   BENEFÍCIOS
========================================================== */

#conteudo .trust-benefits {
    display: grid;
    gap: 14px;
}

#conteudo .trust-benefit {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 36px rgba(17, 24, 39, 0.055);
    transition:
        transform 0.28s cubic-bezier(.22, 1, .36, 1),
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

#conteudo .trust-benefit:hover {
    border-color: rgba(214, 40, 40, 0.22);
    box-shadow: 0 22px 48px rgba(17, 24, 39, 0.09);
    transform: translateY(-4px);
}

#conteudo .trust-benefit-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    color: var(--primary);
    background: #feecec;
    font-size: 14px;
    font-weight: 900;
}

#conteudo .trust-benefit strong {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 18px;
    line-height: 1.3;
}

#conteudo .trust-benefit p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.65;
}

/* ==========================================================
   SECÇÃO SEGUINTE
========================================================== */

#conteudo .trust-strip + .sales-showcase {
    margin-top: 0 !important;
    padding-top: 55px !important;
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

    #conteudo .trust-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    #conteudo .trust-content {
        max-width: 850px;
    }

    #conteudo .trust-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    #conteudo .trust-benefit {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   TELEMÓVEL
========================================================== */

@media (max-width: 768px) {

    #conteudo .trust-strip {
        padding: 48px 0 !important;
    }

    #conteudo .trust-layout {
        gap: 32px;
    }

    #conteudo .trust-content h2 {
        font-size: clamp(34px, 9vw, 46px);
        letter-spacing: -1.2px;
    }

    #conteudo .trust-lead {
        font-size: 16px;
        line-height: 1.65;
    }

    #conteudo .trust-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }

    #conteudo .trust-actions .btn {
        width: 100%;
    }

    #conteudo .trust-secondary-link {
        justify-content: center;
    }

    #conteudo .trust-benefits {
        grid-template-columns: 1fr;
    }

    #conteudo .trust-benefit {
        grid-template-columns: 48px minmax(0, 1fr);
        padding: 20px;
    }

    #conteudo .trust-benefit-number {
        width: 48px;
        height: 48px;
    }

    #conteudo .trust-strip + .sales-showcase {
        padding-top: 38px !important;
    }
}
/* ==========================================================
   TRUST STRIP - LAYOUT EM COLUNA (SUBSTITUI A VERSÃO ANTIGA)
========================================================== */

#conteudo .trust-strip{
    padding:55px 0 45px !important;
    background:#fff !important;
}

#conteudo .trust-layout{
    display:block !important;
    max-width:900px;
    margin:0 auto;
}

#conteudo .trust-content{
    width:100%;
    max-width:900px;
}

#conteudo .trust-content h2{
    max-width:900px;
    margin:0 0 18px;
    font-size:clamp(42px,4vw,62px);
    line-height:1.05;
    letter-spacing:-2px;
    text-wrap:balance;
}

#conteudo .trust-lead{
    max-width:760px;
    margin:0;
    font-size:18px;
    line-height:1.75;
}

/* Botões */

#conteudo .trust-actions{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:28px;
}

#conteudo .trust-actions .btn{
    min-height:54px;
    padding:0 28px;
}

#conteudo .trust-secondary-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:700;
    text-decoration:none;
}

/* APAGA COMPLETAMENTE A COLUNA DA DIREITA */

#conteudo .trust-benefits{
    display:none !important;
}

/* Garante que nenhuma grelha antiga fica ativa */

#conteudo .trust-layout,
#conteudo .trust-layout > *{
    grid-template-columns:none !important;
    grid-template-areas:none !important;
}

/* Tablet */

@media(max-width:992px){

    #conteudo .trust-strip{
        padding:45px 0 35px !important;
    }

    #conteudo .trust-content h2{
        font-size:clamp(36px,7vw,48px);
    }

}

/* Mobile */

@media(max-width:768px){

    #conteudo .trust-actions{
        display:grid;
        grid-template-columns:1fr;
    }

    #conteudo .trust-actions .btn{
        width:100%;
    }

    #conteudo .trust-secondary-link{
        justify-content:center;
    }

}
/* ==========================================================
   PORTFÓLIO - IMAGENS NOS CARDS
========================================================== */

/* Remove o placeholder */
#conteudo .case-placeholder{
    display:none;
}

/* Topo do cartão para a imagem */
#conteudo .case-image{
    width:100%;
    aspect-ratio:16 / 10;
    overflow:hidden;
    border-radius:24px 24px 0 0;
    background:#f5f5f5;
}

/* A imagem adapta-se ao espaço disponível */
#conteudo .case-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    transition:transform .45s ease;
}

/* Hover */
#conteudo .case-card:hover .case-image img{
    transform:scale(1.05);
}

/* Mantém o conteúdo exatamente como estava */
#conteudo .case-content{
    padding:28px;
}