/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0A1F3D;
  --navy-light: #123058;
  --navy-dark: #061428;
  --orange: #FF6B00;
  --orange-light: #FF8A33;
  --white: #FFFFFF;
  --gray-light: #F4F6F9;
  --gray: #8A94A6;
  --text-dark: #10192B;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-soft: 0 10px 30px rgba(10, 31, 61, 0.08);
  --shadow-hover: 0 20px 40px rgba(10, 31, 61, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; color: var(--navy); line-height: 1.2; }

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; position: relative; }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 56px;
}

.text-gradient {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(255, 107, 0, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  font-size: 14px;
}
.btn-cta:hover { background: var(--orange-light); }

.btn-full { width: 100%; justify-content: center; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all .35s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 31, 61, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
}
.nav-logo img { border-radius: 8px; }
.nav-logo b { color: var(--orange); }

.nav-menu {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .3s;
}
.nav-link:hover { color: var(--orange-light); }
.nav-link:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: var(--white);
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 24px;
}

.hero-text h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 19px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-slogan {
  font-style: italic;
  color: rgba(255,255,255,0.55);
  font-size: 15px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.hero-location i { color: var(--orange-light); }

.hero-visual { position: relative; display: flex; justify-content: center; }

.hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  max-width: 380px;
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-card img { border-radius: 24px; }

.floating-chip {
  position: absolute;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-soft);
  animation: float 3.5s ease-in-out infinite;
}
.chip-1 { top: 10%; left: -12%; }
.chip-2 { bottom: 8%; right: -10%; animation-delay: 1.2s; }
.floating-chip i { color: var(--orange); }

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

/* ============ CARDS GENERIC ============ */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid rgba(10,31,61,0.05);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

/* ============ PROBLEMA ============ */
.problema { background: var(--gray-light); }

.problem-card i {
  font-size: 34px;
  color: var(--orange);
  margin-bottom: 18px;
}
.problem-card h3 { font-size: 19px; margin-bottom: 8px; }
.problem-card p { color: var(--gray); font-size: 15px; }

/* ============ SOLUÇÃO ============ */
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon i { color: var(--orange-light); font-size: 22px; }
.service-card h3 { font-size: 19px; margin-bottom: 8px; }
.service-card p { color: var(--gray); font-size: 15px; }

/* ============ COMO FUNCIONA ============ */
.como-funciona { background: var(--gray-light); }

.stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.stepper::before {
  content: '';
  position: absolute;
  top: 30px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(10,31,61,0.25);
  border: 4px solid var(--gray-light);
}

.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--gray); font-size: 14px; padding: 0 8px; }

/* ============ BENEFÍCIOS ============ */
.beneficios { background: var(--navy); }
.beneficios .section-title { color: var(--white); }

.benefits-grid { gap: 20px; }

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  transition: all .3s;
}
.benefit-item:hover {
  background: rgba(255,107,0,0.12);
  border-color: var(--orange);
  transform: translateY(-4px);
}
.benefit-item i { font-size: 24px; color: var(--orange-light); }
.benefit-item span { color: var(--white); font-weight: 600; font-size: 16px; }

/* ============ DIFERENCIAIS ============ */
.diff-card i { font-size: 30px; color: var(--orange); margin-bottom: 16px; }
.diff-card h3 { font-size: 18px; margin-bottom: 8px; }
.diff-card p { color: var(--gray); font-size: 15px; }

/* ============ INSTITUCIONAL / COMO TRABALHAMOS ============ */
.institucional { background: var(--gray-light); }

.institucional-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  margin-bottom: 50px;
}

.mvv-block { margin-bottom: 24px; }
.mvv-block h3 {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.mvv-block h3 i { color: var(--orange); font-size: 16px; }
.mvv-block p { color: var(--gray); font-size: 15px; line-height: 1.7; }

.institucional-quote {
  font-style: italic;
  color: var(--navy);
  font-weight: 600;
  font-size: 16px;
  border-left: 3px solid var(--orange);
  padding-left: 18px;
  line-height: 1.6;
}

.institucional-col > h3 {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.institucional-col > h3 i { color: var(--orange); font-size: 16px; }

.values-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(10,31,61,0.08);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow-soft);
}
.chip i { color: var(--orange); font-size: 11px; }

.institucional-honesty {
  background: rgba(10,31,61,0.05);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}
.institucional-honesty i { color: var(--orange); font-size: 18px; margin-top: 2px; }

.mini-stepper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}
.mini-step-number {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  margin: 0 auto 10px;
}
.mini-step span { font-size: 13px; font-weight: 600; color: var(--navy); }

.mini-stepper-note {
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  margin-top: 24px;
}
.mini-stepper-note strong { color: var(--orange); }

/* ============ PORTFÓLIO ============ */
.portfolio { background: var(--gray-light); }

.portfolio-card { padding: 0; overflow: hidden; }

.portfolio-media { position: relative; overflow: hidden; height: 240px; }
.portfolio-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.portfolio-card:hover .portfolio-media img { transform: scale(1.08); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,31,61,0) 40%, rgba(10,31,61,0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .35s ease;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-badge {
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}

.placeholder-box {
  height: 240px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
}
.placeholder-box i { font-size: 48px; color: rgba(255,255,255,0.35); }

.portfolio-info { padding: 22px 24px; }
.portfolio-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
}
.portfolio-info h3 { font-size: 18px; margin-bottom: 6px; }
.portfolio-info p { color: var(--gray); font-size: 14px; }

/* ============ DEPOIMENTOS ============ */
.testimonial-disclaimer {
  text-align: center;
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 40px;
  font-style: italic;
}

.stars { color: var(--orange); margin-bottom: 16px; font-size: 14px; }
.testimonial-card p { color: var(--text-dark); font-size: 15px; margin-bottom: 20px; }
.testimonial-author { display: flex; flex-direction: column; }
.testimonial-author strong { font-family: var(--font-heading); color: var(--navy); }
.testimonial-author span { color: var(--gray); font-size: 13px; }

/* ============ INVESTIMENTO ============ */
.investimento { background: var(--white); }

.pricing-grid { gap: 24px; }

.price-card {
  text-align: center;
  padding: 36px 24px;
}
.price-card i {
  font-size: 30px;
  color: var(--orange);
  margin-bottom: 16px;
}
.price-card h3 { font-size: 18px; margin-bottom: 14px; }
.price-card .price {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 10px;
}
.price-card .price strong {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--orange);
  display: inline-block;
}
.price-card .price span { font-size: 13px; color: var(--gray); }
.price-card .price-note {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}
.price-highlight {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border: none;
}
.price-highlight i { color: var(--orange-light); }
.price-highlight h3 { color: var(--white); }
.price-highlight .price { color: var(--white); }
.price-highlight .price strong { color: var(--orange-light); }
.price-highlight .price-note { color: rgba(255,255,255,0.7); }

/* ============ CTA FINAL ============ */
.cta-final {
  background: linear-gradient(135deg, var(--orange) 0%, #FF8A33 100%);
  color: var(--white);
  text-align: center;
}
.cta-final-content h2 { color: var(--white); font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.cta-final-content p { font-size: 18px; margin-bottom: 32px; opacity: .95; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-final .hero-actions { justify-content: center; margin-bottom: 20px; }
.cta-final .btn-primary { background: var(--navy); box-shadow: 0 8px 20px rgba(10,31,61,0.3); }
.cta-final .btn-primary:hover { background: var(--navy-light); }
.cta-final .btn-outline { border-color: var(--white); color: var(--white); }
.cta-final .btn-outline:hover { background: var(--white); color: var(--orange); }
.scarcity { font-size: 14px; font-weight: 600; opacity: .9; }

/* ============ FORMULÁRIO ============ */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(10,31,61,0.06);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { margin-bottom: 20px; display: flex; flex-direction: column; }
.form-group-full { margin-bottom: 24px; }

.form-group label { font-weight: 600; font-size: 14px; margin-bottom: 8px; color: var(--navy); }

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid #E2E6ED;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group input.invalid,
.form-group textarea.invalid { border-color: #E5484D; }

.error-msg { color: #E5484D; font-size: 13px; margin-top: 6px; min-height: 16px; }

.form-feedback {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: none;
}
.form-feedback.success { display: block; background: #E6F7EE; color: #1D8A4E; }
.form-feedback.error { display: block; background: #FDEDEE; color: #C0292F; }

/* ============ FAQ ============ */
.accordion { max-width: 780px; margin: 0 auto; }

.accordion-item {
  border-bottom: 1px solid #E2E6ED;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .2s;
}
.accordion-header:hover { color: var(--orange); }
.accordion-header i { transition: transform .3s; color: var(--orange); }
.accordion-item.active .accordion-header i { transform: rotate(180deg); }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.accordion-content p { padding: 0 4px 22px; color: var(--gray); font-size: 15px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand > span { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 18px; color: var(--white); font-weight: 600; }
.footer-brand img { border-radius: 8px; }
.footer-brand b { color: var(--orange); }
.footer-brand p { font-size: 14px; max-width: 280px; }

.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-links h4, .footer-contact h4 { color: var(--white); font-size: 15px; margin-bottom: 6px; }
.footer-links a, .footer-contact a {
  font-size: 14px;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--orange-light); }

.footer-mission {
  text-align: center;
  padding: 24px 0;
  max-width: 720px;
  margin: 0 auto;
}
.footer-mission p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}
.footer-mission strong { color: var(--orange-light); }

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 13px;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  z-index: 999;
  animation: pulse 2.5s infinite;
  transition: transform .3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stepper { grid-template-columns: repeat(2, 1fr); row-gap: 50px; }
  .stepper::before { display: none; }
  .institucional-grid { grid-template-columns: 1fr; gap: 36px; }
  .mini-stepper { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 78%;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 26px;
    transition: right .35s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }
  .nav-menu.open { right: 0; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; z-index: 1100; }

  .section { padding: 70px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .stepper { grid-template-columns: 1fr; }
  .mini-stepper { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-brand { grid-column: span 1; }
  .floating-chip { display: none; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 26px; bottom: 18px; right: 18px; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 30px; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; width: 100%; }
  .cta-final .hero-actions { flex-direction: column; }
}
