﻿/* ================================================================
   Trier Solucoes – v2 (5-section layout matching Drogarias/CI)
   ================================================================ */

/* ── Custom Properties ──────────────────────────────────────── */
:root {
--sol-dark-blue: #003a5d;
--sol-dark-title: #101828;
--sol-text: #242424;
--sol-lime: #b1cc30;
--sol-font: 'DM Sans', sans-serif;
--sol-radius-card: 18px;
--sol-radius-icon: 14px;
--sol-radius-pill: 999px;
}

/* ── Base ────────────────────────────────────────────────────── */
.trier-solucoes-page {
font-family: var(--sol-font);
}

/* ================================================================
   Section 1 – HERO
   ================================================================ */
.trier-solucoes-hero {
position: relative;
overflow: hidden;
}

.trier-solucoes-hero h1,
.trier-solucoes-hero p {
margin: 0;
}

.trier-solucoes-hero-h1 {
font-size: 62px;
font-weight: 500;
line-height: 1.07;
letter-spacing: -1.2px;
color: #ffffff;
margin: 0;
}

.trier-solucoes-hero-h1 strong {
font-weight: 700;
}

/* Hero visual (right column) */
.trier-solucoes-hero-visual {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}

.trier-solucoes-hero-device {
max-width: 420px;
width: 100%;
height: auto;
filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
border-radius: 12px;
}

/* Hero CTAs */
.trier-solucoes-hero-ctas {
display: flex;
gap: 12px;
flex-wrap: wrap;
align-items: center;
}

.trier-solucoes-btn {
display: inline-flex;
align-items: center;
justify-content: center;
height: 48px;
padding: 0 24px;
border-radius: var(--sol-radius-pill);
font-size: 15px;
font-weight: 600;
text-decoration: none;
transition: all 0.2s ease;
gap: 8px;
}

.trier-solucoes-btn--lime {
color: var(--sol-dark-blue);
background: var(--sol-lime);
border: none;
box-shadow: 0 7px 16px rgba(128, 150, 36, 0.35);
}

.trier-solucoes-btn--lime:hover {
background: #c2dd41;
transform: translateY(-1px);
box-shadow: 0 10px 24px rgba(128, 150, 36, 0.45);
}

.trier-solucoes-btn--outline {
color: #ffffff;
border: 1px solid rgba(255, 255, 255, 0.55);
background: rgba(255, 255, 255, 0.08);
}

.trier-solucoes-btn--outline:hover {
background: rgba(255, 255, 255, 0.18);
transform: translateY(-1px);
}

.trier-solucoes-link {
font-size: 14px;
font-weight: 500;
color: #d3ecff;
text-decoration: underline;
}

.trier-solucoes-link:hover {
color: #ffffff;
}

/* ================================================================
   Section 2 – FEATURES
   ================================================================ */
.trier-solucoes-features .elementor-button {
box-shadow: 0 7px 16px rgba(128, 150, 36, 0.35);
}

.trier-solucoes-features-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 20px;
width: 100%;
margin-top: 12px;
margin-bottom: 12px;
}

.trier-solucoes-feature-card {
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: var(--sol-radius-card);
padding: 28px 22px;
display: flex;
flex-direction: column;
gap: 14px;
transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.trier-solucoes-feature-card:hover {
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
transform: translateY(-2px);
}

.trier-solucoes-feature-card h3 {
margin: 0;
font-size: 18px;
font-weight: 700;
line-height: 1.35;
color: var(--sol-dark-title);
}

.trier-solucoes-feature-card p {
margin: 0;
font-size: 15px;
line-height: 1.55;
color: #475467;
}

/* Feature icon badge */
.trier-solucoes-feature-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
border-radius: var(--sol-radius-icon);
font-size: 20px;
flex-shrink: 0;
}

/* ── 12 icon color classes ──────────────────────────────────── */
.trier-solucoes-feature-icon.is-blue,
.trier-solucoes-module-icon.is-blue    { background: rgba(0,58,93,0.1); color: #003a5d; }
.trier-solucoes-feature-icon.is-lime,
.trier-solucoes-module-icon.is-lime    { background: rgba(177,204,48,0.1); color: #7a9223; }
.trier-solucoes-feature-icon.is-indigo,
.trier-solucoes-module-icon.is-indigo  { background: rgba(74,107,191,0.1); color: #4a6bbe; }
.trier-solucoes-feature-icon.is-orange,
.trier-solucoes-module-icon.is-orange  { background: #ffedd4; color: #f08a00; }
.trier-solucoes-feature-icon.is-green,
.trier-solucoes-module-icon.is-green   { background: rgba(0,215,109,0.1); color: #00a757; }
.trier-solucoes-feature-icon.is-violet,
.trier-solucoes-module-icon.is-violet  { background: #e0e7ff; color: #5f66d7; }
.trier-solucoes-feature-icon.is-salmon,
.trier-solucoes-module-icon.is-salmon  { background: #ffede5; color: #ff6c37; }
.trier-solucoes-feature-icon.is-cyan,
.trier-solucoes-module-icon.is-cyan    { background: rgba(102,206,217,0.1); color: #24a8b6; }
.trier-solucoes-feature-icon.is-pink,
.trier-solucoes-module-icon.is-pink    { background: #fce7f3; color: #e24b95; }
.trier-solucoes-feature-icon.is-purple,
.trier-solucoes-module-icon.is-purple  { background: #ede9fe; color: #7a5de8; }
.trier-solucoes-feature-icon.is-yellow,
.trier-solucoes-module-icon.is-yellow  { background: rgba(255,197,0,0.1); color: #d69300; }
.trier-solucoes-feature-icon.is-slate,
.trier-solucoes-module-icon.is-slate   { background: #f1f5f9; color: #64748b; }

/* ================================================================
   Section 3 – CTA SPLIT (dark blue)
   ================================================================ */
.trier-solucoes-cta .elementor-button {
box-shadow: 0 7px 16px rgba(128, 150, 36, 0.35);
}

.trier-solucoes-screenshot img {
max-width: 100%;
border-radius: 12px;
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

/* ================================================================
   Section 4 – MODULES (optional, gradient bg)
   ================================================================ */
.trier-solucoes-modules .elementor-button {
box-shadow: 0 7px 16px rgba(128, 150, 36, 0.35);
}

.trier-solucoes-modules-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 20px;
width: 100%;
margin-top: 12px;
margin-bottom: 12px;
}

.trier-solucoes-module-card {
background: rgba(255, 255, 255, 0.85);
border: 1px solid rgba(255, 255, 255, 0.9);
border-radius: var(--sol-radius-card);
padding: 28px 22px;
display: flex;
flex-direction: column;
gap: 14px;
transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.trier-solucoes-module-card:hover {
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
transform: translateY(-2px);
}

.trier-solucoes-module-card h3 {
margin: 0;
font-size: 18px;
font-weight: 700;
line-height: 1.35;
color: var(--sol-dark-title);
}

.trier-solucoes-module-card p {
margin: 0;
font-size: 15px;
line-height: 1.55;
color: #475467;
}

.trier-solucoes-module-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
border-radius: var(--sol-radius-icon);
font-size: 20px;
flex-shrink: 0;
}

/* ================================================================
   Section 5 – FAQ
   ================================================================ */
.trier-solucoes-faq-list {
width: 100%;
max-width: 880px;
margin: 24px auto 0;
display: flex;
flex-direction: column;
gap: 12px;
}

.trier-solucoes-faq-item {
background: #f8f9fb;
border: 1px solid #e5e7eb;
border-radius: var(--sol-radius-card);
overflow: hidden;
transition: border-color 0.2s ease;
}

.trier-solucoes-faq-item.is-open {
border-color: var(--sol-lime);
}

.trier-solucoes-faq-question {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 22px 28px;
font-family: var(--sol-font);
font-size: 17px;
font-weight: 600;
color: var(--sol-dark-title);
background: transparent;
border: none;
cursor: pointer;
gap: 16px;
text-align: left;
}

.trier-solucoes-faq-question i {
transition: transform 0.25s ease;
flex-shrink: 0;
font-size: 14px;
color: #94a3b8;
}

.trier-solucoes-faq-item.is-open .trier-solucoes-faq-question i {
transform: rotate(180deg);
color: var(--sol-lime);
}

.trier-solucoes-faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.35s ease, padding 0.35s ease;
padding: 0 28px;
}

.trier-solucoes-faq-item.is-open .trier-solucoes-faq-answer {
max-height: 300px;
padding: 0 28px 22px;
}

.trier-solucoes-faq-answer p {
margin: 0;
font-size: 15px;
line-height: 1.65;
color: #475467;
}

/* ================================================================
   Buttons (Elementor)
   ================================================================ */
.trier-solucoes-page .elementor-button:hover {
transform: translateY(-1px);
box-shadow: 0 10px 24px rgba(128, 150, 36, 0.45);
}

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

/* ── Tablet landscape (≤1200px) ─────────────────────────────── */
@media (max-width: 1200px) {
.trier-solucoes-features-grid,
.trier-solucoes-modules-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

/* ── Tablet portrait (≤1024px) ──────────────────────────────── */
@media (max-width: 1024px) {
/* Hero stacks */
.trier-solucoes-hero .e-con-inner {
flex-direction: column !important;
}

.trier-solucoes-hero .e-con-inner > .e-con,
.trier-solucoes-hero .e-con-inner > .elementor-widget {
width: 100% !important;
}

.trier-solucoes-hero-h1 {
font-size: 48px;
}

.trier-solucoes-hero-device {
max-width: 340px;
}

/* CTA split stacks */
.trier-solucoes-cta .e-con-inner {
flex-direction: column !important;
}

.trier-solucoes-cta .e-con-inner > .e-con,
.trier-solucoes-cta .e-con-inner > .elementor-widget {
width: 100% !important;
}
}

/* ── Mobile (≤767px) ────────────────────────────────────────── */
@media (max-width: 767px) {
.trier-solucoes-hero-h1 {
font-size: 34px;
letter-spacing: -0.5px;
}

.trier-solucoes-hero-ctas {
flex-direction: column;
align-items: stretch;
}

.trier-solucoes-btn {
width: 100%;
height: 46px;
}

.trier-solucoes-link {
text-align: center;
display: block;
}

.trier-solucoes-features-grid,
.trier-solucoes-modules-grid {
grid-template-columns: 1fr;
}

.trier-solucoes-hero-device {
max-width: 280px;
}

.trier-solucoes-faq-question {
font-size: 15px;
padding: 18px 20px;
}

.trier-solucoes-faq-answer {
padding-left: 20px;
padding-right: 20px;
}

.trier-solucoes-faq-item.is-open .trier-solucoes-faq-answer {
padding: 0 20px 18px;
}
}
