.section {
  padding: 92px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand-cream);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.section-intro {
  max-width: 860px;
  margin-bottom: 38px;
}

.section-intro h2 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  margin-bottom: 16px;
  color: var(--brand-gold);
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.section-intro p.lead {
  color: rgba(242, 227, 186, 0.84);
  line-height: 1.8;
}

.hero-home {
  position: relative;
  overflow: hidden;
  background: linear-gradient(148deg, rgba(11, 18, 35, 0.98), rgba(25, 39, 67, 0.92));
  padding: 110px 0 88px;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-pattern);
  background-repeat: repeat;
  background-size: 1800px 1800px;
  opacity: 0.06;
}

.hero-home .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(280px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.hero-home h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.02;
  color: var(--brand-gold);
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-display);
}

.hero-home h1 span {
  color: var(--brand-cream);
}

.hero-home p {
  color: rgba(242, 227, 186, 0.87);
  margin-bottom: 20px;
}

.hero-subtitle {
  color: rgba(242, 227, 186, 0.74);
}

.hero-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 161, 99, 0.25);
  border-radius: 22px;
  padding: 32px 30px;
}

.hero-box-title {
  color: var(--brand-gold);
  margin-bottom: 16px;
}

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

.hero-box-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: rgba(242, 227, 186, 0.92);
}

.hero-box-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--brand-gold);
  font-weight: 800;
}

.executive-strip {
  border-top: 1px solid rgba(201, 161, 99, 0.25);
  border-bottom: 1px solid rgba(201, 161, 99, 0.25);
  background: rgba(13, 21, 40, 0.75);
}

.executive-strip .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.executive-metric span {
  display: block;
  color: rgba(242, 227, 186, 0.72);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.executive-metric strong {
  color: var(--brand-gold);
  font-size: 1.28rem;
}

.focus-grid,
.services-grid,
.about-grid,
.service-detail-grid,
.contact-layout,
.process-grid,
.premium-cards,
.proof-grid,
.faq-list {
  display: grid;
  gap: 22px;
}

.focus-grid,
.premium-cards,
.proof-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.focus-card,
.premium-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 161, 99, 0.18);
  border-radius: 20px;
  padding: 26px;
}

.proof-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(201, 161, 99, 0.2);
  border-radius: 20px;
  padding: 26px;
}

.proof-card strong {
  display: block;
  color: var(--brand-gold);
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.proof-card p {
  color: rgba(242, 227, 186, 0.85);
  margin: 0;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 161, 99, 0.2);
  border-radius: 18px;
  padding: 20px 22px;
}

.faq-item h3 {
  color: var(--brand-gold);
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.faq-item p {
  color: rgba(242, 227, 186, 0.88);
  margin: 0;
}

.focus-card strong,
.premium-card h3 {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-gold);
}

.focus-card p,
.premium-card p {
  color: rgba(242, 227, 186, 0.86);
  line-height: 1.75;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 161, 99, 0.2);
  border-radius: 22px;
  padding: 30px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.services-grid a:hover .service-card {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.service-card h3 {
  color: var(--brand-gold);
  margin-bottom: 14px;
}

.service-card ul {
  padding-left: 1.1rem;
  margin-bottom: 14px;
}

.service-card li,
.service-card p {
  color: rgba(242, 227, 186, 0.88);
}

.cta-servicos {
  border: 1px solid rgba(201, 161, 99, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  padding: 36px;
  text-align: center;
}

.cta-servicos h3 {
  color: var(--brand-gold);
}

.cta-servicos p {
  color: rgba(242, 227, 186, 0.84);
}

.about-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.about-list {
  margin-top: 20px;
  padding-left: 1.2rem;
}

.about-list li {
  color: rgba(242, 227, 186, 0.9);
  margin-bottom: 9px;
}

.about-visual img,
.about-side img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(201, 161, 99, 0.24);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
}

.about-detail-grid {
  display: grid;
  gap: 24px;
}

.about-highlights {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.about-highlights article {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 161, 99, 0.15);
  border-radius: 16px;
  padding: 22px;
}

.about-highlights strong {
  color: var(--brand-gold);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  color: var(--text-on-dark);
  background: linear-gradient(135deg, rgba(17, 27, 45, 0.96), rgba(34, 50, 76, 0.92));
  border-bottom: 1px solid rgba(201, 161, 99, 0.25);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-pattern);
  background-size: 1800px 1800px;
  opacity: 0.06;
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  color: var(--brand-gold);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-hero__lead {
  color: var(--text-on-dark-muted);
}

.service-detail-grid {
  grid-template-columns: 1.35fr 0.9fr;
  align-items: flex-start;
}

.service-detail-block,
.service-side-box,
.contact-form,
.contact-side-box,
.contact-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 161, 99, 0.2);
  border-radius: 22px;
}

.service-detail-block {
  padding: 28px;
  margin-bottom: 20px;
}

.service-detail-block h3,
.service-side-box h3,
.contact-panel h2 {
  color: var(--brand-gold);
}

.service-detail-block li,
.service-detail-block p,
.service-side-box p,
.service-steps div,
.contact-panel p,
.contact-side-box p {
  color: rgba(242, 227, 186, 0.9);
}

.service-side-box {
  padding: 28px;
}

.service-steps {
  display: grid;
  gap: 10px;
}

.contact-layout {
  grid-template-columns: 1.02fr 0.98fr;
}

.contact-panel {
  padding: 30px;
}

.contact-form {
  padding: 28px;
}

.contact-side-box {
  padding: 28px;
}

.contact-side-box a {
  color: var(--brand-cream);
  font-weight: 700;
  text-decoration: none;
}

.contact-side-box a:hover {
  color: var(--brand-gold);
  text-decoration: underline;
}

.page-note {
  max-width: 760px;
  margin-bottom: 24px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(242, 227, 186, 0.16);
  color: rgba(242, 227, 186, 0.85);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: center;
}

.footer-services a {
  color: rgba(242, 227, 186, 0.88);
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-services a:hover {
  color: var(--brand-gold);
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social a {
  color: var(--brand-cream);
  text-decoration: none;
  font-weight: 700;
}

.footer-social a:hover {
  color: var(--brand-gold);
  text-decoration: underline;
}

footer {
  background: rgba(16, 24, 42, 0.98);
  border-top: 1px solid rgba(201, 161, 99, 0.2);
  color: rgba(242, 227, 186, 0.75);
  padding: 30px 0;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1050;
  min-width: 56px;
  height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.whatsapp-float:hover {
  color: #ffffff;
  filter: brightness(1.05);
}
