/* =========================================================
   Flor de Nina — base, tokens e tipografia
   ========================================================= */
:root {
  --color-primary: #57233f;
  --color-primary-deep: #42162f;
  --color-secondary: #8a5f72;
  --color-accent: #c8a59b;
  --color-dark: #30272b;
  --color-text: #554b4f;
  --color-muted: #685e62;
  --color-light: #fffdf9;
  --color-cream: #f8f3ee;
  --color-blush: #f1e9e6;
  --color-border: rgba(87, 35, 63, 0.13);
  --shadow-soft: 0 20px 55px rgba(67, 29, 47, 0.10);
  --shadow-card: 0 12px 34px rgba(64, 38, 47, 0.08);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 7px;
  --container: 1280px;
  --header-height: 92px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--color-primary);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #bb809b;
  outline-offset: 4px;
}

.eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--color-primary);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--center {
  text-align: center;
}

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

.section-title--script {
  margin-top: -8px;
  font-size: clamp(2.5rem, 5vw, 3.7rem);
  font-style: italic;
}

.section-intro {
  max-width: 670px;
  margin: 0 auto 42px;
  color: var(--color-muted);
  text-align: center;
}

/* Compatibilidade de nomes Font Awesome 6 com os arquivos locais Free 5. */
.fa-solid,
.fa-regular,
.fa-brands {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-solid {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.fa-regular {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa-brands {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

/* =========================================================
   Botões
   ========================================================= */
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary,
.btn--header {
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 10px 26px rgba(87, 35, 63, 0.18);
}

.btn--primary:hover,
.btn--header:hover {
  background: var(--color-primary-deep);
  box-shadow: 0 13px 32px rgba(87, 35, 63, 0.28);
}

.btn--outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.72);
}

.btn--outline:hover {
  color: #fff;
  background: var(--color-primary);
}

.btn--light {
  color: var(--color-primary);
  background: #fff;
}

.btn--light:hover {
  background: var(--color-cream);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.btn--ghost:hover {
  color: var(--color-primary);
  background: #fff;
}

/* =========================================================
   Barra superior e cabeçalho
   ========================================================= */
.topbar {
  color: #fff;
  background: linear-gradient(90deg, var(--color-primary-deep), #6b2c4c 55%, var(--color-primary));
  font-size: 0.73rem;
}

.topbar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar p {
  margin: 0;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.site-header {
  position: relative;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgba(87, 35, 63, 0.07);
  background: rgba(255, 253, 249, 0.97);
}

.header__inner {
  display: grid;
  height: 100%;
  grid-template-columns: 155px 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: block;
  width: 170px;
}

.brand img {
  width: 100%;
  height: 76px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.5vw, 24px);
}

.main-nav a {
  position: relative;
  padding: 9px 0;
  color: var(--color-dark);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--color-primary);
  content: "";
  transform: scaleX(0);
  transition: transform var(--transition);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.btn--header {
  min-height: 44px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-primary);
  background: #fff;
  cursor: pointer;
  font-size: 1.25rem;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #f4eadf;
}

.hero__image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 253, 249, 0.99) 0%, rgba(255, 253, 249, 0.95) 31%, rgba(255, 253, 249, 0.5) 52%, rgba(255, 253, 249, 0.02) 73%), url("../img/hero-flor-de-nina-com-logo.webp");
  background-position: center;
  background-size: cover;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 610px;
  align-items: center;
}

.hero__content {
  width: min(100%, 600px);
  padding: 48px 0 64px;
}

.hero h1 {
  margin-bottom: 26px;
  color: var(--color-primary);
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: -0.045em;
}

.hero__content > p {
  max-width: 510px;
  margin-bottom: 12px;
  color: #51474a;
  font-size: 1rem;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-benefits {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-light);
}

.benefit-list {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #685a60;
  font-size: 0.76rem;
}

.benefit-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.benefit-list i {
  color: var(--color-secondary);
  font-size: 1rem;
}

/* =========================================================
   Faixa de categorias
   ========================================================= */
.category-ribbon {
  position: relative;
  z-index: 3;
  margin: -1px 0 0;
  padding: 18px 0;
  color: #fff;
  background: linear-gradient(125deg, #4a1a35, #6c3351 55%, #51203b);
  box-shadow: 0 18px 45px rgba(69, 26, 48, 0.18);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.category-grid a {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}

.category-grid a:last-child {
  border-right: 0;
}

.category-grid a:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.category-grid i {
  margin-bottom: 10px;
  color: #ead7dd;
  font-size: 1.65rem;
}

.category-grid strong {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.category-grid small {
  color: #decbd2;
  font-size: 0.69rem;
}

/* =========================================================
   Sobre
   ========================================================= */
.about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    var(--color-light) 0%,
    var(--color-light) 38%,
    #fbf7f2 56%,
    var(--color-cream) 100%
  );
}

.about::after {
  position: absolute;
  z-index: 0;
  right: -120px;
  bottom: -160px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(87, 35, 63, 0.07);
  border-radius: 50%;
  content: "";
}

.about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.about h2 {
  margin-bottom: 25px;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
}

.about__content > p {
  max-width: 555px;
  color: var(--color-muted);
}

.about__values {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.about__values article {
  min-width: 0;
  text-align: center;
}

.about__values i {
  display: block;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.about__values strong,
.about__values span {
  display: block;
}

.about__values strong {
  color: var(--color-primary);
  font-size: 0.72rem;
}

.about__values span {
  color: var(--color-muted);
  font-size: 0.61rem;
  line-height: 1.3;
}

.about__visual {
  position: relative;
  min-height: 560px;
}

.about__visual > img {
  width: 100%;
  height: 560px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

/* =========================================================
   Projetos e soluções
   ========================================================= */
.projects {
  background: #fcfaf7;
}

.project-grid,
.solution-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.project-card,
.solution-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 24px rgba(71, 38, 52, 0.04);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-card:hover,
.solution-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
}

.project-card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin: -24px auto 15px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 7px 16px rgba(87, 35, 63, 0.22);
  font-size: 1rem;
}

.project-card h3,
.solution-card h3 {
  margin: 0 12px 8px;
  font-size: 1rem;
}

.project-card p {
  min-height: 58px;
  margin: 0;
  padding: 0 14px 20px;
  color: var(--color-muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.section-action {
  margin-top: 30px;
  text-align: center;
}

.solutions {
  padding-top: 68px;
  background: #faf7f3;
}

.solutions .section-title {
  margin-bottom: 38px;
}

.solution-card > img {
  width: 100%;
  height: 225px;
  object-fit: cover;
}

.solution-card > div {
  padding: 20px 13px 24px;
}

.solution-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* =========================================================
   Processo
   ========================================================= */
.process {
  padding-bottom: 76px;
  background: var(--color-light);
}

.process-list {
  display: grid;
  margin: 48px 0 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 0 32px;
  text-align: center;
}

.process-list li:not(:last-child)::after {
  position: absolute;
  top: 30px;
  right: -8px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary);
  content: "›";
  font-size: 12px;
  line-height: 13px;
}

.process-list .step-number {
  display: none;
}

.process-list i {
  display: block;
  min-height: 54px;
  color: var(--color-secondary);
  font-size: 2.45rem;
}

.process-list p {
  margin: 15px 0 0;
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.process-list strong {
  color: var(--color-dark);
}

/* =========================================================
   Faixa de qualidade
   ========================================================= */
.quality-band {
  padding: 42px 0;
  color: #fff;
  background: radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.08), transparent 28%), linear-gradient(100deg, #4b1834, #68314e 55%, #52203c);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.quality-grid article {
  padding: 10px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  text-align: center;
}

.quality-grid article:last-child {
  border-right: 0;
}

.quality-grid i {
  margin-bottom: 14px;
  color: #e8d4dc;
  font-size: 2rem;
}

.quality-grid p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.35;
}

/* =========================================================
   Depoimentos
   ========================================================= */
.testimonials {
  padding-bottom: 56px;
  background: var(--color-light);
}

.testimonial-grid {
  display: grid;
  margin-top: 38px;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial-card {
  position: relative;
  min-height: 245px;
  margin: 0;
  padding: 36px 34px 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 10px 32px rgba(81, 48, 62, 0.04);
}

.testimonial-card > i {
  position: absolute;
  top: 23px;
  left: 23px;
  color: #e7b8b7;
  font-size: 1.3rem;
}

.testimonial-card blockquote {
  min-height: 118px;
  padding-top: 24px;
  color: #665b5f;
  font-size: 0.87rem;
  line-height: 1.65;
}

.testimonial-card figcaption span,
.testimonial-card figcaption small {
  display: block;
}

.testimonial-card figcaption span {
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.testimonial-card figcaption small {
  color: var(--color-muted);
  font-size: 0.69rem;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding-top: 42px;
  background: linear-gradient(180deg, #fffdf9, #f8f3ef);
}

.faq-grid {
  display: grid;
  margin-top: 40px;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.faq-column {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--color-border);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 63px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  border: 0;
  color: var(--color-text);
  background: #fff;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: left;
}

.faq-item button:hover {
  color: var(--color-primary);
  background: #fdf9f7;
}

.faq-item button i {
  color: var(--color-primary);
  font-size: 0.72rem;
  transition: transform var(--transition);
}

.faq-item button[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--color-muted);
  font-size: 0.8rem;
  line-height: 1.6;
  transition: padding 280ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding: 0 20px 20px;
}

/* =========================================================
   CTA e rodapé
   ========================================================= */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 65px 0;
  color: #fff;
  background: linear-gradient(90deg, rgba(68, 19, 45, 0.98), rgba(87, 35, 63, 0.91) 58%, rgba(87, 35, 63, 0.72)), url("../img/produto-01.webp") center 38% / cover no-repeat;
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.final-cta h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 3.4rem);
}

.final-cta p {
  max-width: 520px;
  margin-bottom: 0;
  color: #e8d9df;
  font-size: 0.86rem;
}

.final-cta__actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  color: #dac8d0;
  background: #4a1935;
}

.footer-grid {
  display: grid;
  padding-top: 62px;
  padding-bottom: 52px;
  grid-template-columns: 1.35fr 0.75fr 0.85fr 1.45fr;
  gap: 55px;
}

.footer-brand img {
  width: 190px;
  height: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
}

.social-links a:hover {
  color: var(--color-primary);
  background: #fff;
}

.footer-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.footer-column h2 {
  margin-bottom: 12px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: #d7c2cb;
  font-size: 0.74rem;
  overflow-wrap: anywhere;
}

.footer-column a:hover {
  color: #fff;
}

.footer-column i {
  width: 18px;
  color: #fff;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-bottom__inner {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
  color: #bea7b1;
  font-size: 0.66rem;
}

.footer-bottom a {
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  z-index: 100;
  right: 26px;
  bottom: 26px;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(22, 108, 54, 0.32);
  font-size: 1.9rem;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.whatsapp-float:hover {
  background: #1ebd5a;
  box-shadow: 0 16px 36px rgba(22, 108, 54, 0.42);
  transform: translateY(-4px) scale(1.03);
}

/* =========================================================
   Animações sutis
   ========================================================= */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   Responsividade
   ========================================================= */

/* Narrativa B2B: experiência, aplicações e atendimento. */
.hero__content {
  width: min(100%, 650px);
}

.hero h1 {
  font-size: clamp(2.8rem, 4.1vw, 4.5rem);
  letter-spacing: -0.035em;
}

.hero__content > p {
  max-width: 550px;
  font-size: 1.0625rem;
}

.hero__content > p + p {
  font-size: 0.9375rem;
}

.btn {
  font-size: 0.875rem;
}

.btn--header {
  font-size: 0.75rem;
}

.sensory-band {
  padding: 27px 0;
  color: #f8eff2;
  background: linear-gradient(110deg, #4a1a35, #68314e);
}

.sensory-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 8px 24px;
  text-align: center;
}

.sensory-band span {
  font-size: 0.9375rem;
}

.sensory-band p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.about__grid {
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 85px);
}

.about h2 {
  max-width: 620px;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 1.15;
  text-wrap: balance;
}

.about__content > p {
  max-width: 620px;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.about__content .about__note {
  padding-left: 20px;
  border-left: 2px solid var(--color-accent);
  color: var(--color-primary);
  font-size: 0.9375rem;
}

.about__visual {
  min-height: 0;
  margin: 0;
}

.about__visual > img {
  height: 440px;
}

.about__visual figcaption {
  padding-top: 14px;
  color: var(--color-muted);
  font-size: 0.875rem;
  text-align: center;
}

.section-title {
  line-height: 1.15;
  text-wrap: balance;
}

.section-intro {
  max-width: 720px;
  font-size: 1.0625rem;
}

.value-section {
  background: #fffdf9;
}

.value-grid,
.consultation-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.value-card {
  padding: 12px 28px;
  border-left: 1px solid var(--color-border);
}

.value-card > i {
  margin-bottom: 24px;
  color: var(--color-secondary);
  font-size: 2rem;
}

.value-card h3,
.environment-card h3,
.consultation-steps h3 {
  margin-bottom: 14px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.value-card p,
.environment-card p,
.consultation-steps p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.environments {
  position: relative;
  background: var(--color-cream);
}

.anchor-alias {
  position: absolute;
  top: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.15;
}

.section-heading > p {
  max-width: 470px;
  margin: 0;
  font-size: 1.0625rem;
}

.environment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.environment-card {
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-light);
}

.environment-card > i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--color-primary);
  background: var(--color-blush);
  font-size: 1.2rem;
}

.environment-card h3 {
  font-size: 1.375rem;
}

.solutions {
  padding-top: 92px;
  background: var(--color-light);
}

.solutions .section-title {
  margin-bottom: 16px;
}

.solution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.solution-card {
  text-align: left;
}

.solution-card:hover {
  transform: none;
}

.solution-card > img {
  height: 270px;
}

.solution-card > div {
  padding: 26px;
}

.solution-label {
  display: block;
  margin-bottom: 10px;
  color: var(--color-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-card h3 {
  margin: 0 0 14px;
  font-size: 1.625rem;
}

.solution-card p {
  font-size: 1rem;
  line-height: 1.7;
}

.solutions-note {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--color-muted);
  font-size: 0.9375rem;
  text-align: center;
}

.consultation {
  color: #f2e5eb;
  background: linear-gradient(110deg, #4a1a35, #68314e);
}

.consultation .eyebrow,
.consultation h2,
.consultation h3 {
  color: #fffdf9;
}

.consultation .section-intro {
  color: #ead9e1;
}

.consultation-steps {
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.consultation-steps li {
  padding-top: 24px;
  border-top: 1px solid #ab8496;
}

.consultation-number {
  display: block;
  margin-bottom: 24px;
  color: #e0bdcc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 1;
}

.faq {
  padding-top: 92px;
}

.faq-item button,
.faq-answer p {
  font-size: 0.9375rem;
}

.faq-answer[hidden] {
  display: none;
}

.final-cta h2 {
  max-width: 700px;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.15;
  text-wrap: balance;
}

.final-cta p {
  font-size: 1rem;
}

.final-cta__actions {
  max-width: 360px;
  flex-direction: column;
  align-items: center;
}

.final-cta__actions > span {
  font-size: 0.8125rem;
  text-align: center;
}

.footer-column a,
.footer-column p {
  overflow-wrap: anywhere;
  font-size: 0.875rem;
}

@media (max-width: 1180px) {
  .header__inner {
    grid-template-columns: 155px 1fr auto;
    gap: 22px;
  }

  .brand {
    width: 150px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.72rem;
  }

  .project-grid,
  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .project-card > img,
  .solution-card > img {
    height: 290px;
  }

  .process-list li {
    padding: 0 19px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 74px 0;
  }

  .header__inner {
    display: flex;
    justify-content: space-between;
  }

  .brand {
    width: 142px;
  }

  .brand img {
    height: 67px;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .btn--header {
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    z-index: 60;
    top: calc(34px + var(--header-height));
    right: 0;
    bottom: 0;
    display: flex;
    width: min(390px, 88vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 26px;
    border-top: 1px solid var(--color-border);
    background: #fffdf9;
    box-shadow: -18px 30px 42px rgba(57, 25, 41, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateX(105%);
    transition: opacity var(--transition), transform var(--transition);
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .main-nav a {
    padding: 17px 8px;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
  }

  .hero,
  .hero__inner {
    min-height: 590px;
  }

  .hero__image {
    background-image: linear-gradient(90deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 253, 249, 0.9) 44%, rgba(255, 253, 249, 0.25) 76%), url("../img/hero-flor-de-nina-com-logo.webp");
    background-position: 58% center;
  }

  .hero__content {
    width: 58%;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 6.7vw, 4.2rem);
  }

  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .category-grid a:nth-child(4) {
    border-right: 0;
  }

  .category-grid a:nth-child(-n+4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .about {
    background: var(--color-light);
  }

  .about__content > p {
    max-width: 700px;
  }

  .about__visual {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 0;
  }

  .process-list li:nth-child(3)::after {
    display: none;
  }

  .quality-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 0;
  }

  .quality-grid article:nth-child(3),
  .quality-grid article:last-child {
    border-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.7fr 0.8fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .topbar__inner {
    justify-content: center;
  }

  .topbar p {
    display: none;
  }

  .btn--header {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 360px;
    background: var(--color-light);
  }

  .hero__image {
    bottom: auto;
    height: 365px;
    background-image: linear-gradient(180deg, rgba(255, 253, 249, 0) 58%, #fffdf9 100%), url("../img/hero-flor-de-nina-com-logo.webp");
    background-position: 65% center;
  }

  .hero__inner {
    min-height: auto;
  }

  .hero__content {
    width: 100%;
    padding: 34px 0 48px;
    text-align: center;
  }

  .hero__content > p {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .benefit-list {
    display: grid;
    padding: 20px 0;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
  }

  .category-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .category-grid a {
    min-width: 145px;
    scroll-snap-align: start;
    border-bottom: 0 !important;
  }

  .about__values {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 12px;
  }

  .about__visual,
  .about__visual > img {
    min-height: 450px;
    height: 450px;
  }

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

  .project-card > img,
  .solution-card > img {
    height: 245px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-list li {
    display: grid;
    min-height: 125px;
    grid-template-columns: 50px 1fr;
    align-items: center;
    padding: 20px 10px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
  }

  .process-list li::after {
    display: none;
  }

  .process-list i {
    min-height: auto;
    text-align: center;
  }

  .process-list p {
    margin: 0;
    padding-left: 20px;
  }

  .quality-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quality-grid article:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.17);
  }

  .quality-grid article:nth-child(even) {
    border-right: 0;
  }

  .quality-grid article:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: auto;
  }

  .testimonial-card blockquote {
    min-height: auto;
  }

  .final-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 26px;
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom__inner {
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .brand {
    width: 130px;
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
  }

  .hero {
    padding-top: 300px;
  }

  .hero__image {
    height: 310px;
    background-position: 68% center;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero__actions,
  .hero__actions .btn,
  .final-cta__actions,
  .final-cta__actions .btn {
    width: 100%;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .about h2 {
    font-size: 2.45rem;
  }

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

  .about__visual,
  .about__visual > img {
    min-height: 390px;
    height: 390px;
  }

  .project-card > img,
  .solution-card > img {
    height: 215px;
  }

  .quality-grid {
    grid-template-columns: 1fr;
  }

  .quality-grid article,
  .quality-grid article:nth-child(odd),
  .quality-grid article:last-child {
    grid-column: auto;
    border-right: 0;
  }

  .quality-grid article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .final-cta {
    padding: 54px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    font-size: 1.72rem;
  }
}

@media (max-width: 1180px) {
  .header__inner { grid-template-columns: 130px 1fr auto; gap: 14px; }
  .brand { width: 130px; }
  .main-nav { gap: 14px; }
  .main-nav a { font-size: 0.75rem; }
  .btn--header { padding-inline: 14px; }
}

@media (max-width: 960px) {
  .environment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-grid, .consultation-steps { gap: 20px; }
  .value-card { padding-inline: 18px; }
  .section-heading { gap: 30px; }
  .about__visual { width: min(100%, 540px); }
  .solution-card > div { padding: 20px; }
  .final-cta__inner { gap: 30px; }
}

@media (max-width: 720px) {
  .hero { padding-top: 250px; }
  .hero__image { height: 260px; }
  .hero h1 { font-size: clamp(2.1rem, 6.1vw, 3rem); }
  .hero__content { padding-top: 24px; }
  .about h2 { font-size: clamp(2rem, 6vw, 2.7rem); }
  .about__visual { min-height: 0; height: auto; }
  .about__visual > img { min-height: 0; height: 360px; }
  .value-grid, .consultation-steps, .section-heading, .solution-grid { grid-template-columns: 1fr; }
  .value-grid { gap: 30px; }
  .value-card { padding: 0 0 0 24px; }
  .value-card > i { margin-bottom: 16px; }
  .section-heading { gap: 20px; }
  .environment-card { padding: 24px; }
  .solution-card { display: grid; grid-template-columns: 0.8fr 1fr; }
  .solution-card > img { height: 100%; min-height: 280px; }
  .consultation-steps { gap: 32px; margin-top: 32px; }
  .consultation-number { margin-bottom: 16px; }
  .final-cta__actions { max-width: none; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero { padding-top: 210px; }
  .hero__image { height: 220px; }
  .hero__content > p { font-size: 1rem; }
  .sensory-band { padding: 24px 0; }
  .environment-grid { grid-template-columns: 1fr; gap: 14px; }
  .environment-card { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 22px; }
  .environment-card > i { width: 42px; height: 42px; margin: 0; }
  .solution-card { display: block; }
  .solution-card > img { height: 250px; min-height: 0; }
  .solution-card > div { padding: 24px; }
  .about__visual > img { height: 330px; }
  .section-action .btn { width: 100%; }
  .final-cta__actions { align-items: stretch; }
}
