/* =====================================================
   CloudCare Financeiro - Visual Reference Matching Styles
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --fin-blue: #2486EF;
    --fin-accent: #2AC6FF;
    --fin-dark: #081B38;
    --fin-deep: #05101F;
    --fin-gray-bg: #F5F7FA;
    --fin-text-primary: #FFFFFF;
    --fin-text-secondary: #AAB4C8;
    --fin-green: #22C55E;
    --fin-teal: #0D9488;
    
    /* Layout Constants */
    --fin-container-max: 1440px;
    --fin-content-width: 1280px;
}

/* Base Body Styles */
.financeiro-main {
    background-color: #ffffff;
    color: #334155;
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.financeiro-main * {
    box-sizing: border-box;
}

/* Base Layout Container */
.fin-container {
    width: 100%;
    max-width: var(--fin-content-width);
    margin: 0 auto;
    padding: 0 80px;
}

@media (max-width: 1024px) {
    .fin-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .fin-container {
        padding: 0 24px;
    }
}

/* Typography Helpers */
.gradient-text {
    background: linear-gradient(135deg, var(--fin-accent) 0%, var(--fin-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

/* Badges & Tags */
.fin-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(36, 134, 239, 0.1);
    color: var(--fin-blue);
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border: 1px solid rgba(36, 134, 239, 0.2);
}

.fin-badge--dark {
    background: rgba(42, 198, 255, 0.15);
    color: var(--fin-accent);
    border-color: rgba(42, 198, 255, 0.25);
}

/* Header Adjustments for Fixed Premium Look */
.header {
    background-color: rgba(5, 16, 31, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0 !important;
}

/* Force white text on dark header (overrides .header.scrolled styles from style.css) */
.header.scrolled .header__nav-link {
    color: var(--white, #ffffff) !important;
}

.header.scrolled .header__nav-link:hover,
.header.scrolled .header__nav-link.active {
    color: var(--fin-accent, #2AC6FF) !important;
}

.header.scrolled .header__dropdown-item {
    color: var(--blue-dark, #0D1B2A);
}

.header.scrolled .header__menu-toggle span {
    background: #ffffff !important;
}

.header.scrolled .lang-selector__toggle {
    color: #ffffff !important;
}

.header.scrolled .header__cta {
    background-color: var(--fin-blue, #2486EF) !important;
    color: #ffffff !important;
    border-color: var(--fin-blue, #2486EF) !important;
}

.header__container {
    max-width: var(--fin-content-width) !important;
    padding: 0 80px !important;
}

@media (max-width: 1024px) {
    .header__container {
        padding: 0 40px !important;
    }
}
@media (max-width: 768px) {
    .header__container {
        padding: 0 24px !important;
    }
}

/* =====================================================
   1. Hero Section (Height: 920px, Dark Background)
   ===================================================== */
.fin-hero {
    position: relative;
    min-height: 920px;
    padding: 160px 0 100px;
    background: radial-gradient(circle at 75% 30%, rgba(36, 134, 239, 0.18) 0%, rgba(42, 198, 255, 0.08) 40%, var(--fin-deep) 70%), var(--fin-deep);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.fin-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.3;
    pointer-events: none;
}

.fin-hero__grid {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.fin-hero__content {
    position: relative;
    z-index: 10;
}

.fin-hero__title {
    font-size: 72px;
    font-weight: 800;
    line-height: 80px;
    color: var(--fin-text-primary);
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.fin-hero__title .highlight {
    color: var(--blue-primary, #2486ef) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--blue-primary, #2486ef) !important;
    background-clip: unset !important;
    display: inline !important;
}

.fin-hero__text {
    font-size: 18px;
    line-height: 28px;
    color: var(--fin-text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.fin-hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

/* Hero Action Buttons */
.fin-hero__actions .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--fin-blue);
    color: var(--fin-text-primary);
    padding: 0 32px;
    height: 56px;
    border-radius: 99px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(36, 134, 239, 0.3);
    transition: all 0.3s ease;
}

.fin-hero__actions .btn-primary:hover {
    background-color: #1c75d4;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(36, 134, 239, 0.4);
}

.fin-hero__actions .btn-primary .arrow {
    margin-left: 8px;
    font-size: 18px;
    transition: transform 0.2s ease;
}

.fin-hero__actions .btn-primary:hover .arrow {
    transform: translateX(4px);
}

.fin-hero__actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--fin-text-primary);
    padding: 0 32px;
    height: 56px;
    border-radius: 99px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.fin-hero__actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.fin-hero__actions .btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill: currentColor;
}

/* Horizontal Metrics Row */
.fin-hero__metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    margin-top: 20px;
}

.fin-hero__metric {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fin-hero__metric-icon {
    width: 32px;
    height: 32px;
    color: var(--fin-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fin-hero__metric-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.fin-hero__metric-text {
    display: flex;
    flex-direction: column;
}

.fin-hero__metric-number {
    font-size: 15px;
    font-weight: 700;
    color: var(--fin-text-primary);
}

.fin-hero__metric-label {
    font-size: 12px;
    color: var(--fin-text-secondary);
    line-height: 1.2;
}

/* Mockup Container (Float Suave, Blur, Sombra) */
.fin-hero__image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.fin-hero__image {
    width: 760px;
    max-width: none;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: floatSuave 8s ease-in-out infinite;
    transform-origin: center;
}

@keyframes floatSuave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* =====================================================
   2. Pain Points Section (Height: ~260px, White Background)
   ===================================================== */
.hero-footer-bar {
  background-color: #ffffff;
  padding: 40px 0;
  border-bottom: 1px solid var(--fin-gray-bg, #f1f5f9);
  width: 100%;
}

/* Força o container principal a ficar lado a lado */
.hero-footer-bar .container-flex {
  max-width: var(--fin-content-width, 1200px);
  margin: 0 auto;
  padding: 0 80px;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 40px;
}

/* Força o ícone e o texto da esquerda a ficarem lado a lado */
.problem-statement-flex {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 20px;
  flex: 1;
}

.icon-wrapper {
  background-color: #eaf2ff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-inner {
  background-color: var(--fin-blue, #2486EF);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.text-content h2 {
  color: var(--fin-dark, #0b1c3c);
  font-size: 22px;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.text-content p {
  color: #6b7a99;
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

/* Força os 4 itens da direita a ficarem em linha horizontal */
.pain-points-flex {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 40px !important;
}

.point {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center;
  gap: 12px;
}

/* Caixinha dos ícones da direita */
.icon-box {
  background-color: #f0f4f8;
  color: #4a5c7c;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.point .label {
  font-size: 13px;
  color: #4a5c7c;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-footer-bar .container-flex {
    flex-direction: column !important;
    gap: 32px !important;
    padding: 0 40px;
  }
  .problem-statement-flex {
    flex-direction: column !important;
    text-align: center !important;
  }
}
@media (max-width: 768px) {
  .hero-footer-bar .container-flex {
    padding: 0 24px;
  }
  .pain-points-flex {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 24px !important;
  }
  .point {
    flex: 1 1 40%;
  }
}
@media (max-width: 480px) {
  .point {
    flex: 1 1 100%;
  }
}

/* =====================================================
   3. Fiscal & Agrupamento Sections (3-Column Layouts)
   ===================================================== */
.fin-section-split {
    padding: 120px 0;
}

.fin-section-split--light {
    background-color: #ffffff;
}

.fin-section-split--gray {
    background-color: var(--fin-gray-bg);
}

.fin-split-grid {
    display: grid;
    grid-template-columns: 44% 31% 25%;
    gap: 40px;
    align-items: center;
}

.fin-split-left {
    padding-right: 20px;
}

.fin-split-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 46px;
    color: var(--fin-dark);
    margin-bottom: 16px;
}

.fin-split-desc {
    font-size: 16px;
    line-height: 26px;
    color: #64748b;
    margin-bottom: 32px;
}

/* Checklist Items */
.fin-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fin-checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #475569;
    font-weight: 500;
}

.fin-checklist__check {
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.fin-checklist__check--blue {
    color: var(--fin-blue);
}

.fin-checklist__check--green {
    color: var(--fin-green);
}

/* Diagrams Columns */
.fin-split-middle {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Fiscal Diagram Layout (Horizontal Flow) */
.fin-fiscal-flow {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.01);
}

.fin-flow-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.fin-flow-card--active {
    background: var(--fin-blue);
    border-color: var(--fin-blue);
    color: var(--fin-text-primary);
    box-shadow: 0 6px 15px rgba(36, 134, 239, 0.25);
}

.fin-flow-card__info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fin-flow-card__icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(36, 134, 239, 0.08);
    color: var(--fin-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.fin-flow-card--active .fin-flow-card__icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--fin-text-primary);
}

.fin-flow-card__name {
    font-size: 13px;
    font-weight: 600;
}

.fin-flow-card__badge {
    font-size: 10px;
    padding: 2px 6px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 4px;
    font-weight: 600;
}

.fin-flow-card--active .fin-flow-card__badge {
    background: rgba(255, 255, 255, 0.25);
    color: var(--fin-text-primary);
}

.fin-flow-line {
    width: 2px;
    height: 16px;
    background: #cbd5e1;
    margin: -4px auto;
    position: relative;
}

.fin-flow-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--fin-blue);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: flowLinePulse 2s infinite linear;
}

@keyframes flowLinePulse {
    0% { top: 0%; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Agrupador Diagram Layout (Many-to-One converging) */
.fin-agrupador-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.fin-laudos-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
    margin-bottom: 20px;
}

.fin-laudo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 4px;
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    position: relative;
}

.fin-laudo-box svg {
    width: 18px;
    height: 18px;
    margin-bottom: 4px;
    color: #94a3b8;
}

.fin-laudo-box__check {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--fin-green);
    color: white;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fin-agrupador-lines {
    width: 100%;
    height: 40px;
    position: relative;
    margin-bottom: 12px;
}

.fin-agrupador-lines svg {
    width: 100%;
    height: 100%;
}

.fin-consolidado-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff5f5;
    border: 1px dashed #f87171;
    border-radius: 10px;
    padding: 12px 20px;
    width: 100%;
    max-width: 200px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(239, 68, 68, 0.05);
}

.fin-consolidado-box svg {
    width: 24px;
    height: 24px;
    color: #ef4444;
    margin-bottom: 4px;
}

.fin-consolidado-box span {
    font-size: 11px;
    font-weight: 700;
    color: #ef4444;
}

/* Pricing Column (Sticky Card) */
.fin-split-right {
    display: flex;
    justify-content: center;
    position: relative;
}

.fin-sticky-pricing {
    position: sticky;
    top: 100px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 28px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    z-index: 10;
    border-top: 4px solid var(--fin-blue);
    transition: transform 0.3s ease;
}

.fin-sticky-pricing--green {
    border-top-color: var(--fin-green);
}

.fin-sticky-pricing:hover {
    transform: translateY(-4px);
}

.fin-pricing-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--fin-dark);
    margin-bottom: 4px;
    line-height: 1.2;
}

.fin-pricing-value span {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

.fin-pricing-limit {
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 8px;
}

.fin-pricing-sub {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 24px;
}

.fin-pricing-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.fin-pricing-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #475569;
    margin-bottom: 8px;
    font-weight: 500;
}

.fin-pricing-bullets li span {
    font-size: 14px;
    font-weight: bold;
}

.fin-pricing-bullets--blue li span {
    color: var(--fin-blue);
}

.fin-pricing-bullets--green li span {
    color: var(--fin-green);
}

.fin-pricing-btn {
    width: 100%;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fin-pricing-btn--blue {
    background-color: var(--fin-blue);
    color: var(--fin-text-primary);
    box-shadow: 0 4px 12px rgba(36, 134, 239, 0.2);
}

.fin-pricing-btn--blue:hover {
    background-color: #1a6fd4;
    transform: translateY(-2px);
}

.fin-pricing-btn--green {
    background-color: var(--fin-green);
    color: var(--fin-text-primary);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.fin-pricing-btn--green:hover {
    background-color: #1b9c4b;
    transform: translateY(-2px);
}

/* =====================================================
   4. Business Intelligence Section (Height: 900px, Dark Background)
   ===================================================== */
.fin-bi {
    background: radial-gradient(circle at 20% 50%, rgba(36, 134, 239, 0.12) 0%, transparent 60%), var(--fin-deep);
    padding: 100px 0;
    min-height: 900px;
    display: flex;
    align-items: center;
    position: relative;
}

.fin-bi__grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.fin-bi-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: var(--fin-text-primary);
    margin-bottom: 16px;
}

.fin-bi-desc {
    font-size: 16px;
    line-height: 26px;
    color: var(--fin-text-secondary);
    margin-bottom: 36px;
}

.fin-bi-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fin-bi-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.fin-bi-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(42, 198, 255, 0.15);
    color: var(--fin-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.fin-bi-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--fin-text-primary);
    margin-bottom: 4px;
}

.fin-bi-content p {
    font-size: 14px;
    color: var(--fin-text-secondary);
    line-height: 1.5;
}

.fin-bi-mockup-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.fin-bi-mockup {
    width: 100%;
    max-width: 720px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* =====================================================
   5. Integrações Section (Colored SVG Logos Grid)
   ===================================================== */
.fin-integracoes {
    background-color: #ffffff;
    padding: 60px 0;
    border-bottom: 1px solid var(--fin-gray-bg);
}

.fin-integracoes__title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--fin-blue);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

.fin-logos-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 48px;
    width: 100%;
}

.fin-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fin-logo-wrap:hover {
    transform: translateY(-2px);
}

.fin-logo-wrap svg {
    display: block;
    height: 28px;
}

.fin-logo-text {
    font-size: 15px;
    font-weight: 500;
    color: #94a3b8;
}

/* =====================================================
   6. Segurança Section (Single Wide Card)
   ===================================================== */
.fin-sec-section {
    background-color: #ffffff;
    padding: 40px 0 80px;
}

.fin-sec-wide-card {
    background-color: #071933; /* Dark blue background matching the reference */
    border-radius: 16px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(7, 25, 51, 0.15);
}

.fin-sec-left {
    flex: 0 0 32%;
    max-width: 320px;
}

.fin-sec-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 12px;
}

.fin-sec-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #94a3b8; /* Muted light gray */
}

.fin-sec-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.fin-sec-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.fin-sec-item__icon-wrapper {
    flex-shrink: 0;
}

.fin-sec-item__icon {
    width: 36px;
    height: 36px;
    background-color: rgba(36, 134, 239, 0.15); /* Light blue circle background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fin-sec-item__icon svg {
    width: 18px;
    height: 18px;
}

.fin-sec-item__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fin-sec-item__title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.fin-sec-item__desc {
    font-size: 12px;
    line-height: 1.4;
    color: #94a3b8;
}

.fin-sec-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* =====================================================
   7. Planos Section (3 Premium Cards)
   ===================================================== */
.fin-plans-section {
    background-color: var(--fin-gray-bg);
    padding: 100px 0;
}

.fin-plans-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.fin-plans-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: var(--fin-dark);
    margin-bottom: 12px;
}

.fin-plans-desc {
    font-size: 15px;
    color: #64748b;
}

.fin-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.fin-plan-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 48px 36px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    box-sizing: border-box;
}

.fin-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.fin-plan-card--active {
    border-color: var(--fin-blue);
    box-shadow: 0 20px 40px rgba(36, 134, 239, 0.08);
}

.fin-plan-card--active::before {
    content: 'MÓDULO MAIS ADQUIRIDO';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fin-blue);
    color: var(--fin-text-primary);
    padding: 4px 16px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.fin-plan-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    min-height: 54px;
    display: flex;
    align-items: center;
}

.fin-plan-card--blue .fin-plan-card__title {
    color: var(--fin-blue);
}

.fin-plan-card--green .fin-plan-card__title {
    color: var(--fin-green);
}

.fin-plan-card--teal .fin-plan-card__title {
    color: var(--fin-teal);
}

.fin-plan-card__price {
    font-size: 38px;
    font-weight: 800;
    color: var(--fin-dark);
    margin-bottom: 8px;
    line-height: 1.1;
    min-height: 42px;
    display: flex;
    align-items: baseline;
}

.fin-plan-card__period {
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
    margin-left: 4px;
}

.fin-plan-card__limit {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
    min-height: 20px;
    display: flex;
    align-items: center;
}

.fin-plan-card__sublimit {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 24px;
    min-height: 20px;
    display: flex;
    align-items: center;
}

.fin-plan-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    border-top: 1px solid #f1f5f9;
    padding-top: 24px;
    flex-grow: 1;
}

.fin-plan-card__item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

.fin-plan-card__item span {
    font-weight: bold;
    font-size: 16px;
}

.fin-plan-card--blue .fin-plan-card__item span { color: var(--fin-blue); }
.fin-plan-card--green .fin-plan-card__item span { color: var(--fin-green); }
.fin-plan-card--teal .fin-plan-card__item span { color: var(--fin-teal); }

.fin-plan-card__btn {
    width: 100%;
    height: 52px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.fin-plan-card--blue .fin-plan-card__btn {
    background-color: var(--fin-blue);
    color: var(--fin-text-primary);
    box-shadow: 0 4px 14px rgba(36, 134, 239, 0.2);
}
.fin-plan-card--blue .fin-plan-card__btn:hover {
    background-color: #1a6fd4;
    transform: translateY(-2px);
}

.fin-plan-card--green .fin-plan-card__btn {
    background-color: var(--fin-green);
    color: var(--fin-text-primary);
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.2);
}
.fin-plan-card--green .fin-plan-card__btn:hover {
    background-color: #1b9c4b;
    transform: translateY(-2px);
}

.fin-plan-card--teal .fin-plan-card__btn {
    background-color: var(--fin-teal);
    color: var(--fin-text-primary);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.2);
}
.fin-plan-card--teal .fin-plan-card__btn:hover {
    background-color: #0f766e;
    transform: translateY(-2px);
}

/* =====================================================
   8. Final CTA (Gradiente CloudCare Background)
   ===================================================== */
/* --- Container Principal do Banner --- */
.cta-animated-banner {
  position: relative;
  background: linear-gradient(135deg, #030a16 0%, #0a1b3f 100%); /* Azul bem escuro */
  padding: 80px 0; /* More vertical breathing room */
  overflow: hidden; /* Importante para as estrelas não vazarem */
  width: 100%;
}

/* Força o layout em Flexbox (Texto Esquerda / Botões Direita) */
.cta-animated-banner .cta-container {
  position: relative;
  z-index: 2; /* Mantém o texto acima das estrelas */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 40px;
}

/* --- Textos (Esquerda) --- */
.cta-text-group {
  flex: 1;
}

.cta-text-group h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 14px 0;
  letter-spacing: -0.5px;
}

.cta-text-group p {
  color: #a3b8cc; /* Azul claro acinzentado */
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* --- Botões (Direita) --- */
.cta-actions-group {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 16px;
  flex-shrink: 0; /* Impede que os botões sejam esmagados pelo texto */
}

.btn-solid {
  background-color: var(--fin-blue, #2486eb); /* Azul primário */
  color: #ffffff;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 99px; /* Rounded pill matching main actions */
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(36, 134, 239, 0.25);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-solid:hover {
  background-color: #1a75d4;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(36, 134, 239, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px; /* Rounded pill */
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* =========================================
   ANIMAÇÃO DAS ESTRELAS CADENTES
========================================= */
.stars-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; /* Para não atrapalhar o clique nos botões */
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: transparent;
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: shootingStar linear infinite;
}

/* A "cauda" da estrela */
.star::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
}

/* Posições e atrasos diferentes para cada estrela */
.star:nth-child(1) { top: 20%; left: 10%; animation-duration: 4s; animation-delay: 0s; }
.star:nth-child(2) { top: 60%; left: 30%; animation-duration: 5s; animation-delay: 1.5s; }
.star:nth-child(3) { top: 15%; left: 60%; animation-duration: 3s; animation-delay: 2s; }
.star:nth-child(4) { top: 80%; left: 80%; animation-duration: 6s; animation-delay: 0.5s; }
.star:nth-child(5) { top: 40%; left: 90%; animation-duration: 4.5s; animation-delay: 3s; }

/* Keyframes da animação (movimento diagonal) */
@keyframes shootingStar {
  0% {
    transform: translateX(0) translateY(0) rotate(-45deg) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateX(-150px) translateY(150px) rotate(-45deg) scale(1);
  }
  20% {
    opacity: 0;
    transform: translateX(-300px) translateY(300px) rotate(-45deg) scale(0);
  }
  100% {
    opacity: 0; /* Fica invisível o resto do tempo para não ficar muito poluído */
  }
}

/* =====================================================
   9. Responsividade (Tablet and Mobile optimization)
   ===================================================== */
@media (max-width: 1024px) {
    .fin-hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .fin-hero__grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .fin-hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .fin-hero__text {
        margin-left: auto;
        margin-right: auto;
    }

    .fin-hero__actions {
        justify-content: center;
    }

    .fin-hero__metrics {
        max-width: 600px;
        justify-content: center;
    }

    .fin-hero__image-wrapper {
        justify-content: center;
    }

    .fin-hero__image {
        width: 100%;
        max-width: 600px;
    }



    .fin-split-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .fin-split-left {
        padding-right: 0;
        text-align: center;
    }

    .fin-checklist {
        display: inline-block;
        text-align: left;
    }

    .fin-split-middle {
        order: 2;
    }

    .fin-split-right {
        order: 3;
        justify-content: center;
    }

    .fin-sticky-pricing {
        position: static;
        max-width: 450px;
    }

    .fin-bi__grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .fin-bi-checklist {
        display: inline-block;
        text-align: left;
    }

    .fin-bi-mockup-wrapper {
        justify-content: center;
    }

    .fin-bi-mockup {
        max-width: 600px;
    }

    .fin-sec-wide-card {
        flex-direction: column;
        align-items: stretch;
        padding: 32px;
        gap: 32px;
    }

    .fin-sec-left {
        max-width: 100%;
        text-align: center;
    }

    .fin-sec-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }

    .fin-sec-divider {
        display: none;
    }

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

@media (max-width: 768px) {
    .fin-hero__title {
        font-size: 46px;
        line-height: 52px;
    }

    .fin-hero__actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .fin-hero__actions .btn-primary,
    .fin-hero__actions .btn-secondary {
        width: 100%;
    }

    .fin-hero__metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }



    .fin-split-title {
        font-size: 30px;
        line-height: 38px;
    }

    .fin-sec-title,
    .fin-plans-title {
        font-size: 28px;
        line-height: 36px;
    }

    .fin-sec-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .fin-sec-item {
        width: 100%;
    }

    .fin-plans-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fin-plan-card {
        padding: 32px 20px;
    }

    .cta-animated-banner .cta-container {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }

    .cta-actions-group {
        flex-direction: column !important;
        width: 100%;
        gap: 12px;
        align-items: center !important;
    }

    .btn-solid, .btn-outline {
        width: 100% !important;
        justify-content: center;
        max-width: 320px;
    }
}

/* =====================================================
   Módulo Fiscal Lock-in Layout (3-Column Locked Flex)
   ===================================================== */
.fiscal-module {
  background-color: #ffffff;
  padding: 80px 0;
  border-bottom: 1px solid var(--fin-gray-bg, #f1f5f9);
  width: 100%;
}

.module-container {
  max-width: var(--fin-content-width, 1200px);
  margin: 0 auto;
  padding: 0 80px;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 40px;
}

/* --- Coluna 1: Conteúdo --- */
.content-col {
  flex: 0 1 360px;
}

.content-col .label {
  color: var(--fin-blue, #2486EF);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.content-col h2 {
  color: var(--fin-dark, #0b1c3c);
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  margin: 12px 0;
}

.content-col p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  color: #475569;
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check {
  color: var(--fin-blue, #2486EF);
  font-weight: bold;
}

/* --- Coluna 2: Fluxo Horizontal --- */
.flow-col {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 90px;
}

.flow-step .icon-box {
  width: 70px;
  height: 70px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background-color: #ffffff;
  color: #64748b;
  transition: all 0.3s ease;
}

.flow-step .icon-box svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

.flow-step span {
  font-size: 12px;
  color: #475569;
  line-height: 1.3;
}

/* Destaque para o passo central */
.flow-step.active .icon-box {
  background-color: var(--fin-blue, #2486EF);
  border-color: var(--fin-blue, #2486EF);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(36, 134, 239, 0.25);
}
.flow-step.active span {
  color: var(--fin-blue, #2486EF);
  font-weight: bold;
}

.arrow {
  color: #cbd5e1;
  font-size: 20px;
  margin-bottom: 30px; /* Alinha a seta com o meio das caixas, ignorando o texto */
  font-weight: 700;
}

/* --- Coluna 3: Card de Preço --- */
.pricing-col {
  flex: 0 0 300px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.price-block h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--fin-dark, #0D1B2A);
  margin: 0 0 6px 0;
}

.price-block .period {
  font-size: 15px;
  color: #64748b;
  font-weight: normal;
}

.price-block p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.pricing-card .divider {
  height: 1px;
  background-color: #f1f5f9;
  margin: 24px 0;
}

.pricing-card .btn-primary {
  display: block;
  width: 100%;
  background-color: var(--fin-blue, #2486EF);
  color: #ffffff;
  text-align: center;
  padding: 12px 0;
  border-radius: 8px;
  border: 1px solid var(--fin-blue, #2486EF);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  margin-top: 25px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.pricing-card .btn-primary:hover {
  background-color: var(--fin-blue-hover, #1d6ec5);
  border-color: var(--fin-blue-hover, #1d6ec5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(36, 134, 239, 0.2);
}

/* Ajustes responsivos para o Módulo Fiscal */
@media (max-width: 1200px) {
  .module-container {
    padding: 0 40px;
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .module-container {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 48px;
  }
  .content-col {
    flex: 1;
    text-align: center;
  }
  .benefits-list {
    display: inline-block;
    text-align: left;
  }
  .flow-col {
    justify-content: space-around;
  }
  .pricing-col {
    align-self: center;
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 768px) {
  .module-container {
    padding: 0 24px;
  }
  .flow-col {
    flex-wrap: wrap !important;
    gap: 20px !important;
  }
  .arrow {
    display: none !important; /* Esconde setas em telas pequenas onde o fluxo quebra a linha */
  }
  .flow-step {
    flex: 1 1 25%;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .flow-step {
    flex: 1 1 45%;
  }
}

/* =====================================================
   Partners & Security Module
   ===================================================== */
.partners-security-module {
  background-color: #ffffff;
  padding: 60px 0 80px 0;
  width: 100%;
}

/* --- Seção dos Logos --- */
.partners-container {
  max-width: var(--fin-content-width, 1200px);
  margin: 0 auto 60px auto;
  padding: 0 80px;
  text-align: center;
}

.partners-title {
  color: var(--fin-blue, #2486EF);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.logos-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  background: transparent;
  display: flex;
}

/* Gradient masks for smooth fading at the edges */
.logos-marquee::before,
.logos-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 180px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

.logos-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, #ffffff 0%, transparent 100%);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

/* Hover stops the animation for interaction */
.logos-marquee:hover .logos-track {
  animation-play-state: paused;
}

.logos-track .logo-item,
.logos-track .logo-item-light {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.logos-track .logo-item svg {
  height: 48px;
  width: auto;
  opacity: 0.65;
  transition: all 0.3s ease;
}

.logos-track .logo-item:hover svg {
  opacity: 1;
  transform: scale(1.1);
}

.logos-track .logo-item-light {
  font-family: var(--fin-font, sans-serif);
  font-size: 18px;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- Banner de Segurança --- */
.security-banner-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.security-banner {
  background-color: #07152e; /* Azul marinho bem escuro */
  border-radius: 20px;
  padding: 48px;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(7, 21, 46, 0.12);
}

.security-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(36, 134, 239, 0.12) 0%, rgba(36, 134, 239, 0) 70%);
  pointer-events: none;
}

/* Lado Esquerdo */
.sec-intro {
  flex: 0 0 320px; /* Trava a largura da coluna de texto */
}

.sec-intro h2 {
  color: #ffffff;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.sec-intro p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Lado Direito (Features) */
.sec-features-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex: 1; /* Ocupa o resto do espaço do banner */
}

.sec-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.sec-icon {
  background-color: rgba(255, 255, 255, 0.05);
  color: #3b82f6;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.sec-icon svg {
  width: 20px;
  height: 20px;
  color: #3b82f6;
}

.sec-feature:hover .sec-icon {
  background-color: #3b82f6;
  color: #ffffff;
  transform: translateY(-2px);
}

.sec-feature:hover .sec-icon svg {
  color: #ffffff;
}

.sec-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sec-text strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.sec-text span {
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.4;
}

/* Linhas verticais separadoras */
.sec-divider {
  width: 1px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.1);
  align-self: center;
  margin: 0 20px;
  flex-shrink: 0;
}

/* Ajustes responsivos para Partners & Security */
@media (max-width: 1200px) {
  .partners-container,
  .security-banner-wrapper {
    padding: 0 40px;
  }
  .sec-features-row {
    gap: 16px;
  }
  .sec-divider {
    margin: 0 10px;
  }
}

@media (max-width: 1024px) {
  .security-banner {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 40px;
    gap: 32px;
  }
  .sec-intro {
    flex: none;
    width: 100%;
  }
  .sec-features-row {
    width: 100%;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 32px 20px !important;
  }
  .sec-feature {
    flex: 1 1 45%;
  }
  .sec-divider {
    display: none !important; /* Esconde divisores no layout quebrado */
  }
}

@media (max-width: 640px) {
  .partners-container,
  .security-banner-wrapper {
    padding: 0 24px;
  }
  .sec-features-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 24px !important;
  }
  .sec-feature {
    width: 100%;
  }
}
