:root {
  color-scheme: dark;
  font-family: 'Montserrat', sans-serif;
  background: #0D1017;
  color: #FDFDFB;

  --bg: #0D1017;
  --panel: rgba(13, 16, 23, 0.96);
  --panel-strong: #0D1017;
  --accent: #FF6A00; /*FF6A00*/
  --accent-soft: rgba(255, 103, 0, 0.16);
  --border: rgba(253, 253, 251, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  background:
  #0D1117;
    /* radial-gradient(circle at top, rgba(255, 102, 0, 0.250), transparent 34%),
    linear-gradient(180deg, #0D1017 0%, #0D1017 100%); */
  color: #FDFDFB;
  line-height: 1.6;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
}


.site-header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%; 
  background: rgba(15, 23, 42, 0.95);
  /* background: rgba(2, 6, 23, 0.92); */
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand-image {
  width: auto;
  display: flex;
}

.brand-R-image {
  height: 80px;
  padding: 0.5rem;
  width: auto;
  display: block;
}

.brand-R-image.footer {
  height: auto;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.main-nav a {
  color: #FDFDFB;
  text-decoration: none;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: start;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.7rem;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #FF6A00 0%, #ff8533 100%);
  color: #FDFDFB;
}

.button-secondary {
  border: 1px solid rgba(148, 163, 184, 0.24);
  color: #FDFDFB;
  background: transparent;
}

.button-secondary.consult {
  border: 1px solid rgba(148, 163, 184, 0.24);
  padding: 0.5rem 2rem;
  border-radius: 999px;
  color: #FDFDFB;
  background: #FF6A00;
}

.hero-section {
  padding: 8rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  max-width: 620px;
  justify-content: space-between;
  gap: 1rem;
  margin: auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #FF6A00;
  font-size: 0.8rem;
  font-weight: 500;
}

.eyebrow.logo {
  margin-top: -3rem;
  margin-left: 2.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #FF6A00;
  font-size: 0.8rem;
  font-weight: 500;
}

.logotext {
  padding-right: 3rem;
}

h1 {
  color: #FF6A00;
}

.hero-copy h1 {
  margin: 1rem 0 1.35rem;
  font-size: clamp(2.4rem, 3vw, 4rem);
  line-height: 1.05;
}

.hero-copy p {
  max-width: 42rem;
  color: rgba(253,253,251,0.75);
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 10rem;
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.hero-form-card {
  padding: 2rem;
  /* background: rgba(15, 23, 42, 0.98); */
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 1.75rem;
  display: grid;
  gap: 1rem;
}

.hero-form-card h3 {
  margin: 0;
}

.hero-form-card p {
  margin: 0;
  color: rgba(253,253,251,0.75);
}

.hero-consulta-form {
  display: grid;
  gap: 1rem;
}

.hero-consulta-form label {
  font-weight: 600;
  color: rgba(253,253,251,0.75);
}

.hero-consulta-form input,
.hero-consulta-form textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: #0D1017;
  /* background: rgba(15, 23, 42, 0.9); */
  color: #FDFDFB;
  border-radius: 0.95rem;
  padding: 1rem 1.25rem;
  transition: all 0.4s ease;
}

.hero-consulta-form input:focus,
.hero-consulta-form textarea:focus {
  outline: none;
  border-color: #FF6A00;
  background: #0D1017;
  box-shadow: 0 0 16px rgba(255, 103, 0, 0.3);
}

.hero-consulta-form textarea {
  min-height: 120px;
  resize: vertical;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: grid;
  gap: 0.5rem;
}

.hero-card strong {
  font-size: 2rem;
  color: #f8fafc;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 2.5vw, 3rem);
}

.solutions-section {
  padding: 4rem 0;
}

.features-grid,
.about-grid,
.process-grid,
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

.features-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.about-card,
.process-card,
.testimonial-card {
  padding: 2rem;
  background: #0D1017;
  /* background: rgba(15, 23, 42, 0.9); */
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1.75rem;
}

.about-section {
  padding: 4rem 0;
  text-align: center;
}

.about-section p {
  max-width: 720px;
  margin: 1rem auto;
  color: rgba(253,253,251,0.75);
  line-height: 1.7;
}

.about-wrapper {
  background: rgba(15, 23, 42, 0.95);
  /* background: rgba(15, 23, 42, 0.9); */
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 1.5rem;
  padding: 2.5rem;
}

.about-header {
  margin-bottom: 2rem;
  text-align: left;
}

.about-header h2 {
  position: relative;
  margin: 0;
  padding-left: 1rem; /* espaço para a barra */
}

.about-header h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%; /* cobre título e subtítulo */
  background-color: #FF6A00; /* barra laranja */
  border-radius: 2px;
}

.about-title {
  display: block;
  font-weight: 200;
  font-size: clamp(2.2rem, 3vw, 3rem); /* título maior */
  color: #FF6A00; /* branco */
  margin-bottom: 0;
  line-height: 1.1;
}

.about-subtitle {
  display: block;
  font-size: clamp(1rem, 2vw, 1.4rem); /* subtítulo menor */
  font-weight: 200;
  color: rgba(253,253,251,0.65); /* cinza */
  margin-top: 0;
  line-height: 1.2;
}

.about-content {
  text-align: left;
  max-width: 800px;
}

.about-content p {
  margin: 1rem 0;
  color: rgba(253,253,251,0.75);
  line-height: 1.7;
  text-align: left;
}

.about-footer {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.about-quote {
  flex: 2;
  font-size: 1.1rem;
  font-style: italic;
  color: #EFA979; /* cor do quote */
  border-left: 4px solid #FF6A00; /* linha laranja diferente do quote */
  padding-left: 1rem;
}

.about-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.about-text {
  flex: 2;
  text-align: left;
}

.about-founder {
  flex: 1;
  text-align: right;
  font-weight: 600;
  color: rgba(253,253,251,0.85);
}

.mission-section {
  padding: 4rem 0;
}

.mission-header h2 {
  position: relative;
  margin: 0 0 2rem;
  padding-left: 1rem;
}

.mission-header h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #FF6A00;
  border-radius: 2px;
}

.mission-title {
  display: block;
  font-weight: 200;
  font-size: clamp(2.2rem, 3vw, 3rem); /* título maior */
  color: #FF6A00; /* branco */
  margin-bottom: 0;
  line-height: 1.1;
}

.mission-subtitle {
  display: block;
  font-size: clamp(1rem, 2vw, 1.4rem); /* subtítulo menor */
  font-weight: 200;
  color: rgba(253,253,251,0.65); /* cinza */
  margin-top: 0;
  line-height: 1.2;
}

.mission-large-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.mission-small-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mission-card {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 0.6rem;
  padding: 1.5rem;
  display: flex;
  align-items: start;
  gap: 1rem;
}

.mission-card.large {
  flex-direction: column; /* ícone + título em cima, texto abaixo */
  text-align: left;
  align-items: flex-start; /* garante alinhamento à esquerda */
}

.card-header h3 {
  color: #FF6A00;
  font-size: 1.4rem;
  font-weight: 700;
}

.card-header.mission {
  display: flex;
  align-items: baseline; /* alinha pela linha de base do texto */
  gap: 0.6rem;
}

.icon.mission {
  font-size: 1.6rem;
  color: #FF6A00;
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}

.mission-pillars-title {
  font-size: 0.9rem;
  font-weight: 200;
  color: #FF6A00; /* laranja */
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: left;
  margin-top: 1rem;
}


.mission-card.small {
  flex-direction: row;
  justify-content: flex-start;
  border-bottom: 3px solid #FF6A00; /* borda inferior laranja */
  border-radius: 0.6rem;     /* arredonda só embaixo */
}

.mission-card h3, .mission-card h4 {
  color: #FDFDFB;
  margin: 0;
}

.mission-card p {
  color: rgba(253,253,251,0.75);
  line-height: 1.6;
}

.icon {
  font-size: 1.6rem;
  color: #FF6A00; /* deixa os ícones laranjas */
  flex-shrink: 0; /* impede que o ícone deforme */
}

.strategy-section {
  padding: 4rem 0;
}

.strategy-header h2 {
  position: relative;
  margin: 0 0 2rem;
  padding-left: 1rem;
}

.strategy-header h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #FF6A00;
  border-radius: 2px;
}

.strategy-title {
  display: block;
  font-weight: 200;
  font-size: clamp(2.2rem, 3vw, 3rem);
  color: #FF6A00;
  line-height: 1.1;
}

.strategy-subtitle {
  display: block;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 200;
  color: rgba(253,253,251,0.65);
  line-height: 1.2;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.strategy-card {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 0.6rem;
  padding: 1.5rem;
  text-align: left;
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.card-header h3 {
  color: #FDFDFB;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.strategy-card ul {
  list-style: none; /* remove bolinhas */
  padding: 0;
  margin: 0;
  color: rgba(253,253,251,0.75);
  line-height: 1.8; /* mais espaçamento */
}

.strategy-card ul li {
  margin-bottom: 0.8rem; /* espaçamento extra entre itens */
}

.strategy-card ul li strong {
  color: #FF6A00; /* primeira palavra em laranja */
}

.strategy-card h3 {
  color: #FDFDFB;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.strategy-card hr {
  border: none;
  border-top: 2px solid #FF6A00;
  margin: 0.8rem auto 1.2rem;
  width: 20%;
  margin-left: 0;  
}

.consulting-section {
  padding: 4rem 0;
}

.consulting-header h2 {
  position: relative;
  margin: 0 0 2rem;
  padding-left: 1rem;
}

.consulting-header h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #FF6A00;
  border-radius: 2px;
}

.consulting-title {
  display: block;
  font-weight: 200;
  font-size: clamp(2.2rem, 3vw, 3rem);
  color: #FF6A00;
  line-height: 1.1;
}

.consulting-subtitle {
  display: block;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 200;
  color: rgba(253,253,251,0.65);
  line-height: 1.2;
}

.card-header.consulting {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}


.consulting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.consulting-card {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 0.6rem;
  padding: 2rem;
  text-align: left;
}

.consulting-card .icon {
  font-size: 2.5rem;
  color: #FF6A00;
  margin-bottom: 0.8rem;
}

.consulting-card h3 {
  color: #FDFDFB;
  font-size: 1.4rem;
  margin: 0.5rem 0;
}

.consulting-card hr {
  border: none;
  border-top: 1px solid #8181815b;
  margin: 0.8rem 0 1.2rem;
  width: 100%;
  justify-self: center;
  
}

.consulting-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(253,253,251,0.75);
  line-height: 1.8;
}

.consulting-card ul li {
  margin-bottom: 0.8rem;
}

.consulting-card ul li strong {
  color: #FF6A00;
  font-weight: 700;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  padding-bottom: 0.8rem;
  color: rgba(253,253,251,0.85);
  line-height: 2;
  font-size: 1.1rem;
}

.check-list li::before {
  content: "\f00c"; /* ícone de check do Font Awesome */
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  color: #FF6A00;
  position: absolute;
  left: 0;
  top: 0.1rem;
}

.consulting-ideal {
  margin-top: 2rem;
}

.consulting-ideal h4 {
  color: #FF6A00;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.consulting-ideal h4 {
  color: #FF6A00;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.consulting-ideal ul li strong {
  color: #FF6A00;
}

.ideal-header h4 {
  color: #FF6A00;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
  flex-shrink: 0;
}

.ideal-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 0.8rem;
  padding: 1.5rem;
  display: flex;              /* coloca título e grid lado a lado */
  align-items: center;
  gap: 1.5rem;
}

.ideal-card h4 {
  color: #FF6A00;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.ideal-inner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  flex: 1;
}

.ideal-inner-grid.strategy {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  flex: 1;
}

.ideal-header.strategy h4 {
  color: #FDFDFB;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 200;
  margin: 0;
  flex-shrink: 0;
}

.ideal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ideal-inner-box {
  background: rgba(31, 41, 55, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 0.8rem;
  padding: 0.8rem 1rem;
  color: #FDFDFB;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.ideal-inner-box.strategy {
  width: 100%;
  background: rgba(31, 41, 55, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 0.8rem;
  color: #FDFDFB;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.dot {
  width: 0.6rem;
  height: 0.6rem;
  background-color: #FF6A00;
  border-radius: 50%;
  flex-shrink: 0;
}

.sales-section {
  padding: 4rem 0;
}

.sales-header h2 {
  position: relative;
  margin: 0 0 2rem;
  padding-left: 1rem;
}

.sales-header h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #FF6A00;
  border-radius: 2px;
}

.sales-title {
  display: block;
  font-weight: 200;
  font-size: clamp(2.2rem, 3vw, 3rem);
  color: #FF6A00;
  line-height: 1.1;
}

.sales-subtitle {
  display: block;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 200;
  color: rgba(253,253,251,0.65);
  line-height: 1.2;
}

.sales-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 1rem;
  align-items: stretch;
}

.sales-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sales-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 0.6rem;
  padding: 1rem;
  flex: 1;
}

.sales-card h3 {
  color: #FF6A00;
  font-size: 1.1rem;
  font-weight: 200;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
  color: rgba(253,253,251,0.85);
  line-height: 1.4;
}

.check-list li::before {
  content: "\f00c";
}

.check-list.sales {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list.sales li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
  color: rgba(253,253,251,0.85);
  line-height: 1.4;
}

.check-list.sales li::before {
  content: none;
}

.sales-column.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.objective-circle {
  background: linear-gradient(135deg, #FF6A00, #FF8C1A); /* gradiente laranja */
  color: #ffffff;
  border-radius: 50%;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.objective-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
}

.objective-text .line1 {
  font-size: 0.9rem;
  font-weight: 200;
  text-transform: uppercase;
}

.objective-text .line2 {
  font-size: 1.8rem;
  font-weight: 200;
  text-transform: uppercase;
  line-height: 1.1;
}

.card-header.sales {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0.5rem;
}

.icon.sales {
  font-size: 1rem;
  color: #FF6A00;
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  align-items: start;
  padding: 0.5rem 0.5rem 1rem 0.5rem;
}

.cycle-text {
  margin-top: 0.8rem;
  color: rgba(253,253,251,0.75);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.delivery-section {
  padding: 4rem 0;
}

.delivery-header h2 {
  position: relative;
  margin: 0 0 2rem;
  padding-left: 1rem;
}

.delivery-header h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #FF6A00;
  border-radius: 2px;
}

.delivery-title {
  display: block;
  font-weight: 200;
  font-size: clamp(2.2rem, 3vw, 3rem);
  color: #FF6A00;
  line-height: 1.1;
}

.delivery-subtitle {
  display: block;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 200;
  color: rgba(253,253,251,0.65);
  line-height: 1.2;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.delivery-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 0.8rem;
  padding: 1.2rem;
  text-align: left;
}

.delivery-card h3 {
  color: #FF6A00;
  font-size: 1.1rem;
  font-weight: 200;
  margin-bottom: 0.5rem;
}

.delivery-card p {
  color: rgba(253,253,251,0.85);
  font-size: 0.9rem;
  margin: 0.5rem 0;
  line-height: 1.4;
  padding-left: 0.5rem;
}

.delivery-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.delivery-card li {
  margin-bottom: 0.6rem;
  color: rgba(253,253,251,0.85);
  line-height: 1.4;
}

.icon.delivery {
  font-size: 1.6rem;
  color: #FF6A00;
}

.delivery-footer {
  background: rgba(15, 23, 42, 0.95);
  border: 2px dashed #FF6A00;
  border-radius: 0.8rem;
  text-align: start;
  padding-left: 1.6rem;
  padding-bottom: 0.5rem;
}

.delivery-footer h4 {
  font-size: 1.3rem;
  font-weight: 200;
  color: #FF6A00;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-decoration: underline;
  text-decoration-color: #FF6A00;
  text-decoration-thickness: 1px;
  margin-top: 1rem;
}

.delivery-footer p {
  color: rgba(253,253,251,0.85);
  font-size: 1rem;
  line-height: 0.5;
}

.delivery-footer strong {
  color: #FF6A00;
  font-weight: 200;
}

.delivery-footer .highlight {
  color: #FF6A00;
  font-weight: 200;
}

.process-section {
  padding: 4rem 0;
}

.testimonials-section {
  padding: 4rem 0;
}

.cta-section {
  padding: 4rem 0;
}

.feature-card h3,
.about-card h3,
.process-card h3 {
  margin-top: 0;
}

.feature-card ul,
.process-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.about-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
  position: relative;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(255, 103, 0, 0.14);
  color: #FF6A00;
  font-weight: 800;
  margin-bottom: 1rem;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card p {
  margin: 0 0 1.5rem;
  color: rgba(253,253,251,0.75);
}

.testimonial-card strong {
  display: block;
  margin-bottom: 0.25rem;
}

.cta-section {
  padding: 3rem 0 4rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer {
  padding: 3rem 0 2rem;
  background: rgba(2, 6, 23, 0.96);
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  color: rgba(253,253,251,0.55);
  margin-bottom: 0.65rem;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(253,253,251,0.55);
  font-size: 0.92rem;
}

.footer-simple {
  padding-top: 4rem;
}

.consulta-hero {
  padding: 4rem 0 1rem;
}

.consulta-section {
  padding: 2rem 0 4rem;
}

.consulta-form {
  display: grid;
  gap: 1rem;
  max-width: 620px;
  margin-bottom: 2rem;
}

.consulta-form label {
  font-weight: 600;
}

.consulta-form input {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.9);
  color: #FDFDFB;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
}

.consulta-result {
  padding: 1.75rem;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1.5rem;
  min-height: 12rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
}

.modal-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 720px;
  color: #FDFDFB;
  animation: zoomIn 0.4s ease;
  overflow-y: auto;
  max-height: 80vh;
}

.modal-card h1, .modal-card h2 {
  color: #FF6A00;
}

.modal-close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
  color: #FF6A00;
}

@keyframes blinkingAnimation {
  0%, 100% {
    border-color: rgba(253, 253, 251, 0.18);
    box-shadow: 0 0 0 rgba(255, 103, 0, 0);
  }
  50% {
    border-color: #FF6A00;
    box-shadow: 0 0 12px rgba(255, 103, 0, 0.6);
  }
}

.blinking {
  animation: blinkingAnimation 0.6s ease-in-out 3;
}

.popup {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  border-radius: 1rem;
}

.popup-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 0.8rem;
  padding: 1.5rem;
  max-width: 360px;
  color: #FDFDFB;
  animation: fadeInUp 0.4s ease;
}

.popup-card h2 {
  color: #FF6700;
  margin-top: 0;
}

.form-message {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #FF6700; /* laranja do site */
  opacity: 0;
  transition: opacity 0.4s ease;
}

.form-message.show {
  opacity: 1;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #FF6700;
  cursor: pointer;
}


@media (max-width: 900px) {
  .hero-grid,
  .cta-grid,
  .footer-grid,
  .about-grid,
  .process-grid,
  .testimonials-grid,
  .stats-grid,
  .delivery-grid,
  .sales-layout,
  .strategy-grid,
  .consulting-grid,
  .mission-large-grid,
  .mission-small-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .sales-layout {
    grid-template-columns: 1fr;
  }
  .sales-column.center {
    order: -1; /* opcional: coloca o objetivo central antes dos cards */
  }

  .sales-card {
    width: 100%;
  }

  .objective-circle { width: 160px; height: 160px; }

  .delivery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {

.hero-section {
  padding: 5rem 0 2.5rem;

}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-content {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between; /* garante espaçamento entre logo e botão */
  min-height: 84px;
}

  .main-nav {
    display: none; /* escondido por padrão */
    flex-direction: column;
    background: rgba(15, 23, 42, 0.95);
    position: absolute;
    top: 84px; /* altura do header */
    left: 0;
    width: 100%;
    padding: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
  }

  .main-nav.show {
    display: flex; /* aparece quando toggle ativo */
  }

 .menu-toggle {
  display: block;
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #FF6700;
  cursor: pointer;
}

  .eyebrow.logo {
    margin:0;
    padding:0;
  }

  .consult, .hero-actions {
    display: none; /* opcional: esconder botão no mobile */
  }

  .ideal-card {
    padding: 1.2rem;
  }

  .ideal-inner-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.8rem;
  }

  .ideal-inner-box {
    justify-content: flex-start;
    font-size: 0.9rem;
  }

  .ideal-card.strategy {
    padding: 1.2rem;
  }

  .ideal-inner-grid.strategy {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.8rem;
  }

  .ideal-inner-box.strategy {
    justify-content: center;
    font-size: 0.9rem;
  }

  .dot {
    margin-left: 0.5rem;
  }

    .delivery-footer {
    padding: 1rem;
    text-align: left;
    border-width: 1px;
    margin-top: 1rem;
  }

  .delivery-footer h4 {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    text-decoration-thickness: 0.5px;
  }

  .delivery-footer p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.6rem;
  }

  .delivery-footer strong,
  .delivery-footer .highlight {
    font-weight: 400;
  }
}


@media (max-width: 600px) {
  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-actions .button { 
    width: 100%; 
  }

  .hero-consulta-form input,
  .hero-consulta-form textarea {
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  .hero-actions .button { width: 100%; }
  .hero-consulta-form input,
  .hero-consulta-form textarea { width: 100%; margin-bottom: 1rem; }

  h1, h2 { font-size: clamp(1.6rem, 6vw, 2rem); }

  .delivery-card h3 { font-size: 1rem; }

  .button {
    width: 100%;
  }

  .container {
    width: calc(100% - 2rem);
  }
  section {
    padding: 2rem 1rem;
  }

  .objective-circle {
    width: 180px;
    height: 180px;
  }
  .objective-text .line2 {
    font-size: 1.4rem;
  }

  .sales-column {
    gap: 1.5rem;
  }

  .sales-layout { grid-template-columns: 1fr; }

    .about-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .about-quote {
    font-size: 1rem;
    line-height: 1.4;
  }
  .about-founder {
    text-align: left;
    margin-top: 0.5rem;
  }

  .ideal-grid {
    grid-template-columns: 1fr; /* uma coluna só */
    gap: 1rem;
  }
  .ideal-inner-box {
    font-size: 0.9rem;
    padding: 0.8rem;
    justify-content: flex-start;
  }

  .ideal-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .ideal-card h4 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
  }
  .ideal-inner-box {
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 0.6rem 0;
  }

  .dot {
    width: 0.5rem;
    height: 0.5rem;
    margin-right: 0.5rem;
  }
}

/* Fade suave */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Slide da esquerda */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Slide da direita */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Zoom */
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

@keyframes draw {
  from { opacity: 0; }
  to   { opacity: 1; }
}

section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Classes utilitárias */
.reveal { opacity: 0; }
.revealed.fade { animation: fadeInUp 0.8s ease forwards; }
.revealed.left { animation: slideInLeft 0.8s ease forwards; }
.revealed.right { animation: slideInRight 0.8s ease forwards; }
.revealed.zoom { animation: zoomIn 0.8s ease forwards; }
