/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  margin: 0 !important;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1e293b;
  -webkit-font-smoothing: antialiased
}

img {
  display: block;
  max-width: 100%
}

a {
  text-decoration: none;
  color: inherit
}

button {
  cursor: pointer;
  font-family: inherit
}

/* ─── TOKENS ─── */
:root {
  --orange: #f97316;
  --orange-dark: #f97316;
  --orange-darker: #c2410c;
  --navy: #0f172a;
  --navy-mid: #1e3a5f;
  --navy-light: #1d4ed8;
  --white: #ffffff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-600: #2563eb;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --blue-950: #172554;
  --transition: 200ms ease;
  --radius: 12px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes bounceSlow {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .5
  }
}

@keyframes softPulse {

  0%,
  100% {
    transform: translateZ(0) scale(1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12)
  }

  50% {
    transform: translateZ(0) scale(1.03);
    box-shadow: 0 24px 48px rgba(0, 0, 0, .16)
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.animate-fade-in {
  animation: fadeIn .8s ease both
}

.animate-fade-in-up {
  animation: fadeInUp .8s ease both
}

.animate-fade-in-down {
  animation: fadeInDown .6s ease both
}

.animate-bounce-slow {
  animation: bounceSlow 3s ease-in-out infinite
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite
}

/* ─── TOPBAR ─── */
.topbar {
  background: #172554;
  color: #93c5fd;
  font-size: .72rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid #1e3a5f;
  display: none
}

@media(min-width:768px) {
  .topbar {
    display: block
  }
}

.topbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #93c5fd;
  transition: color var(--transition)
}

.topbar-link:hover {
  color: #fff
}

.topbar-link-orange {
  color: #bfdbfe;
  font-weight: 400;
}

.topbar-link-orange svg {
  color: var(--orange)
}

.topbar-link-orange:hover {
  color: #fb923c
}

.topbar-badge {
  color: #60a5fa;
  font-weight: 400;

}

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--slate-200);
  padding: 16px 0;
  transition: padding 300ms, box-shadow 300ms, background 300ms
}

.navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px)
}

.navbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center
}

@media(min-width:640px) {
  .navbar-inner {
    padding: 0 1.5rem
  }
}

@media(min-width:1024px) {
  .navbar-inner {
    padding: 0 2rem
  }
}

/* brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.brand-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: transform 500ms
}

.brand:hover .brand-logo-img {
  transform: scale(1.05)
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(3deg);
  flex-shrink: 0
}



.brand-text {
  display: flex;
  flex-direction: column
}

.brand-name {
  font-size: 1.5rem;
  /* text-2xl */
  font-weight: 700;
  /* font-bold */
  color: #172554;
  /* blue-950 */
  letter-spacing: -0.025em;
  /* tracking-tight */
  transition: color 0.3s;
}

.brand:hover .brand-name {
  color: var(--orange-dark)
}

.brand-sub {
  font-size: .6rem;
  font-weight: 700;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: .18em
}

/* desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem
}

@media(min-width:768px) {
  .nav-desktop {
    display: flex
  }
}

.nav-link {
  position: relative;
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
  transition: color var(--transition);
  padding-bottom: 2px
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 300ms
}

.nav-link:hover {
  color: var(--orange)
}

.nav-link:hover::after {
  width: 100%
}

.nav-divider {
  width: 1px;
  height: 24px;
  background: var(--slate-200)
}

.socials {
  display: flex;
  align-items: center;
  gap: 14px
}

.social-icon {
  color: var(--slate-400);
  transition: color var(--transition), transform 200ms;
  display: flex;
  align-items: center
}

.social-icon:hover {
  color: var(--orange);
  transform: scale(1.1)
}

.social-icon svg {
  width: 20px;
  height: 20px
}

/* btn */
.btn-agendar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-dark);
  color: #fff;
  padding: 10px 22px;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 700;
  border: 1px solid var(--orange);
  box-shadow: 0 6px 20px rgba(234, 88, 12, .2);
  transition: background var(--transition), transform 200ms, box-shadow var(--transition);
  margin-left: 8px;
  white-space: nowrap
}

.btn-agendar:hover {
  background: var(--orange);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(234, 88, 12, .35)
}

.btn-agendar:active {
  transform: scale(.95)
}

.btn-agendar svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

/* hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  color: var(--navy);
  transition: color var(--transition);
  padding: 6px;
  position: relative;
  z-index: 60
}

.hamburger:hover {
  color: var(--orange)
}

@media(min-width:768px) {
  .hamburger {
    display: none
  }
}

.hbar {
  display: block;
  height: 2.5px;
  background: currentColor;
  border-radius: 9999px;
  transition: width var(--transition), transform 300ms, opacity 200ms
}

.hbar:nth-child(1) {
  width: 28px
}

.hbar:nth-child(2) {
  width: 28px
}

.hbar:nth-child(3) {
  width: 20px;
  margin-left: auto
}

.hamburger.open .hbar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg)
}

.hamburger.open .hbar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.hamburger.open .hbar:nth-child(3) {
  width: 28px;
  margin-left: 0;
  transform: translateY(-7.5px) rotate(-45deg)
}

/* mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .12);
  z-index: 49
}

.mobile-menu.open {
  display: block;
  animation: slideDown 250ms ease
}

.mobile-menu-inner {
  padding: 1rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.mobile-link {
  display: block;
  padding: 12px 16px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  border-radius: 12px;
  transition: background var(--transition), color var(--transition)
}

.mobile-link:hover {
  background: #fff7ed;
  color: var(--orange)
}

.mobile-socials {
  display: none;
  justify-content: center;
  gap: 1rem;
  padding: 16px 0;
  border-top: 1px solid var(--slate-200);
  margin-top: 4px
}

.mobile-socials.show {
  display: flex
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange-dark);
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 6px 20px rgba(234, 88, 12, .25);
  transition: background var(--transition), transform 200ms;
  margin-top: 8px
}

.mobile-cta:hover {
  background: var(--orange)
}

.mobile-cta svg {
  width: 20px;
  height: 20px
}

/* ─── SECTION HELPERS ─── */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem
}

@media(min-width:640px) {
  .container {
    padding: 0 1.5rem
  }
}

@media(min-width:1024px) {
  .container {
    padding: 0 2rem
  }
}

.section-eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em
}

/* ─── HERO ─── */
#home {
  position: relative;
  padding: 6rem 0 8rem;
  overflow: hidden;
  background: #fff;
  background-image: url('../images/hero-banner.png');
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(23, 37, 84, 0.9) 0%,
      rgba(23, 37, 84, 0.6) 50%,
      rgba(23, 37, 84, 0) 100%);
}

.hero-bg-plain .hero-blob-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #eff6ff, #fff 60%, #dbeafe44);
  z-index: 0
}

.hero-blob-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 90%;
  background: linear-gradient(to bottom left, rgba(219, 234, 254, .8), transparent);
  border-bottom-left-radius: 150px;
  pointer-events: none
}

.hero-blob-3 {
  position: absolute;
  bottom: 80px;
  left: 40px;
  width: 384px;
  height: 384px;
  background: rgba(147, 197, 253, .3);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none
}

.hero-blob-4 {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: #eff6ff;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, .9), rgba(15, 23, 42, .6) 50%, transparent)
}

.hero-inner {
  position: relative;
  z-index: 10
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center
}

@media(min-width:768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: #fdba74;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
  margin-bottom: 1.5rem
}

.hero-badge.on-bg {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
  color: #fcd34d
}

.hero-ping {
  position: relative;
  width: 8px;
  height: 8px;
  display: flex
}

.hero-ping span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #60a5fa;
  animation: ping 1.5s cubic-bezier(0, 0, .2, 1) infinite
}

.hero-ping b {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  display: block
}

.hero-h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--navy);
  margin-bottom: 1.25rem;
  color: #fff;
}

.hero-h1.on-bg {
  color: #fff
}

.hero-highlight {
  color: var(--orange);
  position: relative;
  display: inline-block
}

.hero-highlight.on-bg {
  color: #fb923c
}

.hero-underline {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 12px;
  color: var(--orange);
  opacity: .4
}

.hero-tagline {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fff;
  max-width: 36rem;
  margin-bottom: 2rem
}

.hero-tagline.on-bg {
  color: #cbd5e1
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

@media(min-width:480px) {
  .hero-cta-group {
    flex-direction: row
  }
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--orange-dark);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 20px 40px rgba(234, 88, 12, .3);
  transition: all 300ms;
  border-bottom: 4px solid #9a3412
}

.btn-primary:hover {
  background: var(--orange);
  transform: translateY(-2px);
  border-color: #7c2d12
}

.btn-primary:active {
  transform: scale(.95)
}

.btn-primary svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  transition: all 300ms
}

.btn-secondary:hover {
  background: var(--blue-50);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
  transform: translateY(-1px)
}

.btn-secondary.on-bg {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
  backdrop-filter: blur(8px)
}

.btn-secondary.on-bg:hover {
  background: rgba(255, 255, 255, .2)
}

/* hero right image card */
.hero-img-wrap {
  display: none;
  position: relative;
  text-align: right
}

@media(min-width:768px) {
  .hero-img-wrap {
    display: block
  }
}

.hero-img-shadow {
  position: absolute;
  inset: 0;
  background: #2563eb;
  border-radius: 40px;
  transform: rotate(6deg);
  opacity: .2;
  transform-origin: center;
  transition: transform 300ms
}

.hero-img-wrap:hover .hero-img-shadow {
  transform: rotate(8deg) scale(1.04)
}

.hero-img-frame {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .15);
  border: 4px solid #fff
}

.hero-img-frame img {
  width: 100%;
  max-width: 500px;
  height: 600px;
  object-fit: cover;
  transition: transform 700ms
}

.hero-img-wrap:hover .hero-img-frame img {
  transform: scale(1.05)
}

.hero-badge-float {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
  border: 1px solid var(--blue-100);
  max-width: 220px;
  text-align: left
}

.hero-badge-float-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px
}

.hero-badge-float-icon {
  padding: 8px;
  background: var(--blue-50);
  border-radius: 8px;
  color: #2563eb
}

.hero-badge-float-icon svg {
  width: 20px;
  height: 20px
}

.hero-badge-float-title {
  font-weight: 700;
  color: var(--navy);
  font-size: .875rem
}

.hero-badge-float p {
  font-size: .75rem;
  color: var(--slate-500);
  line-height: 1.5
}

/* ─── SERVICES ─── */
#services {
  padding: 6rem 0;
  background: #fff;
  position: relative
}

.services-blob-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 256px;
  height: 256px;
  background: var(--blue-50);
  border-radius: 50%;
  filter: blur(60px);
  opacity: .6;
  pointer-events: none
}

.services-blob-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 384px;
  height: 384px;
  background: #fff7ed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
  pointer-events: none
}

.section-header {
  text-align: center;
  margin-bottom: 4rem
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem
}

@media(min-width:640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width:1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.service-card {
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--slate-100);
  transition: all 500ms;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
  display: flex;
  flex-direction: column;
  overflow: hidden
}

.service-card:hover {
  border-color: var(--blue-100);
  box-shadow: 0 24px 48px rgba(15, 23, 42, .05);
  transform: translateY(-8px)
}

.service-card-img-wrap {
  position: relative;
  height: 224px;
  overflow: hidden
}

.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms
}

.service-card:hover .service-card-img-wrap img {
  transform: scale(1.1)
}

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, .8), transparent);
  z-index: 1
}

.service-card-img-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
  color: #2563eb;
  transition: all 300ms
}



.service-card-img-icon svg {
  width: 32px;
  height: 32px
}

.service-card-icon-top {
  padding: 32px 32px 0;
  position: relative;
  overflow: hidden
}

.service-card-bg-circle {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 128px;
  height: 128px;
  background: var(--blue-50);
  border-radius: 50%;
  filter: blur(32px);
  transition: background 300ms
}

.service-card:hover .service-card-bg-circle {
  background: var(--blue-100)
}

.service-card-icon {
  display: inline-flex;
  padding: 16px;
  border-radius: 12px;
  background: var(--blue-50);
  color: #2563eb;
  transition: all 300ms;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
  ring: 1px solid var(--blue-100);
  margin-bottom: 8px
}

.service-card:hover .service-card-icon {
  background: #2563eb;
  color: #fff
}

.service-card-icon svg {
  width: 32px;
  height: 32px
}

.service-card-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color 300ms
}

.service-card:hover .service-card-title {
  color: #2563eb
}

.service-card-desc {
  color: var(--slate-500);
  font-size: .875rem;
  line-height: 1.7;
  flex: 1
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  padding: 10px 14px;
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  color: var(--orange-dark);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: all 200ms
}

.service-card:hover .service-card-link {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto
}

.service-card-link svg {
  width: 16px;
  height: 16px
}

/* ─── ABOUT ─── */
#about {
  padding: 6rem 0;
  background: linear-gradient(135deg, #eff6ff44, #fff 50%, #f0f9ff33);
  position: relative;
  overflow: hidden
}

.about-blob-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 256px;
  height: 256px;
  background: var(--blue-100);
  border-radius: 50%;
  filter: blur(80px);
  opacity: .6;
  pointer-events: none
}

.about-blob-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: #fff;
  border-radius: 50%;
  filter: blur:80px;
  opacity: .5;
  pointer-events: none
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: stretch
}

@media(min-width:768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr
  }
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem
}

.about-eyebrow span:first-child {
  width: 48px;
  height: 4px;
  background: #3b82f6;
  border-radius: 2px
}

.about-eyebrow span:last-child {
  color: #2563eb;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .75rem
}

.about-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blue-950);
  margin-bottom: 2rem;
  line-height: 1.15;
  letter-spacing: -.02em
}

.about-title span {
  color: var(--orange)
}

.about-text {
  color: var(--slate-600);
  line-height: 1.8;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  white-space: pre-line
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.feature-card {
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .04);
  transition: all 300ms
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  transform: translateY(-2px)
}

.feature-card-icon {
  padding: 8px;
  background: var(--blue-50);
  border-radius: 8px;
  width: fit-content;
  margin-bottom: 8px;
  color: #2563eb;
  transition: background 300ms
}

.feature-card:hover .feature-card-icon {
  background: var(--blue-100)
}

.feature-card-icon svg {
  width: 20px;
  height: 20px
}

.feature-card h4 {
  font-weight: 700;
  color: var(--blue-950);
  margin-bottom: 4px;
  font-size: .9rem
}

.feature-card p {
  font-size: .75rem;
  color: var(--slate-500)
}

.about-img-col {
  position: relative;
  min-height: 400px;
  height: 100%
}

.about-img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #dbeafe, #eff6ff 60%, #bfdbfe);
  border-radius: 20px;
  transform: rotate(3deg) scale(.96);
  transition: transform 500ms
}

.about-img-col:hover .about-img-bg {
  transform: rotate(6deg) scale(.97)
}

.about-img-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .15);
  border: 4px solid #fff;
  height: 100%;
  min-height: 400px
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s ease
}

.about-img-col:hover .about-img-frame img {
  transform: scale(1.1)
}

.about-stats {
  position: absolute;
  bottom: -20px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
  border: 1px solid var(--blue-50)
}

.about-badge-pulse {
  animation: softPulse 3.2s ease-in-out infinite
}

.about-stats-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(249, 115, 22, .25)
}

.about-stats-icon svg {
  width: 22px;
  height: 22px
}

.about-stats-content {
  display: flex;
  flex-direction: column;
  line-height: 1.1
}

.about-stats-num {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.1em;
}

.about-stats-label {
  font-size: .6rem;
  color: var(--slate-500);
  margin-top: 2px;
  text-transform: uppercase;
}

@media(min-width:768px) {
  .about-order-1 {
    order: 2
  }

  .about-order-2 {
    order: 1
  }
}

/* ─── BRANDS ─── */
#brands {
  padding: 3rem 0;
  background: #fff;
  border-top: 1px solid rgba(249, 115, 22, .15);
  border-bottom: 1px solid rgba(249, 115, 22, .15)
}

.brands-eyebrow {
  text-align: center;
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 2rem
}

.brands-grid {
  display: flex;

  justify-content: center;
  gap: 1rem;
}


@media(max-width:992px) {
  .brands-grid {
    flex-direction: column;

  }
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  transition: all 200ms;
}



.brand-item img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: .8;
  transition: all 300ms
}

.brand-item:hover img {
  opacity: 1
}

.brand-item-text {
  font-size: .875rem;
  font-weight: 700;
  color: var(--slate-400);
  letter-spacing: .05em;
  transition: color 300ms
}

.brand-item:hover .brand-item-text {
  color: var(--orange-dark)
}

/* ─── TESTIMONIALS ─── */
#reviews {
  padding: 6rem 0;
  background-color: #172554;
  position: relative;
  overflow: hidden;
}

.glow-orange {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  /* w-64 */
  height: 16rem;
  background: rgba(249, 115, 22, 0.1);
  /* orange-500 /10 */
  border-radius: 50%;
  filter: blur(64px);
  /* blur-3xl */
}

.glow-blue {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24rem;
  /* w-96 */
  height: 24rem;
  background: rgba(59, 130, 246, 0.1);
  /* blue-500 /10 */
  border-radius: 50%;
  filter: blur(64px);
}

.reviews-eyebrow {
  color: var(--orange);
  margin-bottom: 8px
}

.reviews-title {
  color: #fff;
  margin-bottom: 0
}

.reviews-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr
}

@media(min-width:640px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width:1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.review-card {
  background: rgba(30, 58, 138, .5);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(30, 64, 175, .8);
  transition: border-color 300ms
}

.review-card:hover {
  border-color: rgba(249, 115, 22, .5)
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--orange);
  margin-bottom: 1rem
}

.review-stars svg {
  width: 16px;
  height: 16px
}

.review-stars svg.filled {
  fill: currentColor
}

.review-stars svg.empty {
  color: rgba(30, 64, 175, .8);
  fill: rgba(30, 64, 175, .8)
}

.review-text {
  color: #bfdbfe;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: .925rem
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: rgba(30, 64, 175, .8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0
}

.review-author-name {
  font-weight: 700;
  color: #fff;
  font-size: .875rem
}

.review-author-role {
  color: #60a5fa;
  font-size: .75rem
}

/* ─── CTA ─── */
#cta {
  padding: 5rem 0;
  background: #172554;
  position: relative;
  overflow: hidden
}

.cta-blob {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 4rem 4rem;
  opacity: 0.3;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(249, 115, 22, .15);
  border: 1px solid rgba(249, 115, 22, .3);
  border-radius: 9999px;
  color: #fb923c;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.5rem
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: .75rem
}

.cta-title span {
  color: var(--orange)
}

.cta-sub {
  color: #dbeafe;
  font-size: 1.125rem;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center
}

@media(min-width:480px) {
  .cta-actions {
    flex-direction: row
  }
}

.btn-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 300ms
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--orange-darker), var(--orange-dark));
  color: #fff;
  box-shadow: 0 20px 40px rgba(234, 88, 12, .4);
  border-bottom: 4px solid #7c2d12
}

.btn-cta-primary:hover {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(234, 88, 12, .5)
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px)
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, .15)
}

.btn-cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0
}

/* ─── FOOTER ─── */
footer {
  background: #020617;
  color: #94a3b8;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(249, 115, 22, .3);
  position: relative;
  overflow: hidden
}

.footer-top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #1e3a8a, var(--orange), #1e3a8a);
  opacity: .5
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem
}

@media(min-width:640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width:1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em
}

.footer-brand-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px
}

.footer-tagline {
  color: #94a3b8;
  font-size: .875rem;
  line-height: 1.7;
  margin: 1rem 0
}

.footer-socials {
  display: flex;
  gap: 12px;
  padding-top: 8px
}

.footer-social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(30, 58, 138, .2);
  color: #94a3b8;
  border: 1px solid rgba(30, 58, 138, .3);
  transition: all 200ms
}

.footer-social:hover {
  background: var(--orange-dark);
  color: #fff;
  border-color: var(--orange)
}

.footer-social svg {
  width: 20px;
  height: 20px
}

.footer-col-title {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.5rem
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem
}

.footer-contact-item:last-child {
  margin-bottom: 0
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(30, 58, 138, .2);
  color: #60a5fa;
  border: 1px solid rgba(30, 58, 138, .3);
  transition: all 200ms
}

.footer-contact-icon svg {
  width: 1rem;
  height: 1rem;
}

.footer-contact-item:hover .footer-contact-icon {
  background: var(--orange-dark);
  color: #fff
}

.footer-contact-text {
  font-size: .875rem;
  color: #cbd5e1;
  transition: color 200ms
}

.footer-contact-item:hover .footer-contact-text {
  color: #fff
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: #94a3b8;
  transition: color 200ms
}

.footer-nav-link svg {
  width: 16px;
  height: 16px;
  color: #2563eb;
  flex-shrink: 0;
  transition: color 200ms
}

.footer-nav-link:hover {
  color: var(--orange)
}

.footer-nav-link:hover svg {
  color: var(--orange)
}

.footer-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(30, 64, 175, .5);
  height: 128px;
  position: relative;
  background: #0f172a;
  margin-bottom: 1.5rem
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  opacity: .6;
  filter: grayscale(1);
  transition: all 300ms
}

.footer-map:hover iframe {
  opacity: 1;
  filter: none
}

.footer-map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 300ms
}

.footer-map:hover .footer-map-overlay {
  opacity: 0
}

.footer-map-label {
  background: rgba(255, 255, 255, .9);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 8px;
  border-radius: 4px;
  color: #0f172a
}

.footer-bottom {
  border-top: 1px solid rgba(30, 64, 175, .3);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center
}

@media(min-width:640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left
  }
}

.footer-copyright {
  font-size: 1rem;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
}

.footer-copyright span {
  color: var(--orange)
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem
}

.footer-bottom-link {
  font-size: .8rem;
  color: #475569;
  transition: color 200ms
}

.footer-bottom-link:hover {
  color: var(--orange)
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, .4);
  animation: bounceSlow 3s ease-in-out infinite;
  transition: transform 200ms
}

.wa-float:hover {
  transform: scale(1.1);
  animation-play-state: paused
}

.wa-float svg {
  width: 28px;
  height: 28px
}

/* ─── ADMIN PANEL ─── */
.admin-trigger {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 100;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, .8);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms;
  cursor: pointer
}

.admin-trigger:hover {
  background: rgba(37, 99, 235, .8);
  border-color: rgba(59, 130, 246, .4)
}

.admin-trigger svg {
  width: 18px;
  height: 18px
}

.admin-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
  animation: fadeIn .2s ease
}

.admin-overlay.hidden {
  display: none
}

.admin-panel {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .3);
  overflow: hidden
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--navy), #1e3a8a);
  color: #fff
}

.admin-header h2 {
  font-size: 1.25rem;
  font-weight: 700
}

.admin-close {
  background: rgba(255, 255, 255, .1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms
}

.admin-close:hover {
  background: rgba(255, 255, 255, .2)
}

.admin-close svg {
  width: 16px;
  height: 16px
}

.admin-tabs {
  display: flex;
  padding: 1rem 2rem 0;
  gap: .5rem;
  border-bottom: 1px solid var(--slate-200);
  overflow-x: auto
}

.admin-tab {
  padding: 10px 20px;
  font-size: .875rem;
  font-weight: 600;
  border-radius: 8px 8px 0 0;
  border: none;
  background: none;
  color: var(--slate-500);
  cursor: pointer;
  transition: all 200ms;
  white-space: nowrap
}

.admin-tab.active {
  background: #fff;
  color: #2563eb;
  border: 1px solid var(--slate-200);
  border-bottom: 1px solid #fff;
  margin-bottom: -1px
}

.admin-tab:not(.active):hover {
  background: var(--slate-50);
  color: var(--slate-700)
}

.admin-body {
  padding: 2rem;
  max-height: 60vh;
  overflow-y: auto
}

.admin-tab-panel {
  display: none
}

.admin-tab-panel.active {
  display: block
}

.admin-field {
  margin-bottom: 1.25rem
}

.admin-label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--slate-600);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .05em
}

.admin-input,
.admin-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--slate-200);
  border-radius: 8px;
  font-size: .9rem;
  font-family: inherit;
  transition: border-color 200ms
}

.admin-input:focus,
.admin-textarea:focus {
  outline: none;
  border-color: #3b82f6
}

.admin-textarea {
  resize: vertical;
  min-height: 80px
}

.admin-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.admin-footer {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--slate-200);
  background: var(--slate-50)
}

.btn-save {
  flex: 1;
  padding: 12px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  transition: background 200ms
}

.btn-save:hover {
  background: #1d4ed8
}

.btn-publish {
  flex: 1;
  padding: 12px;
  background: var(--orange-dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  transition: background 200ms
}

.btn-publish:hover {
  background: var(--orange)
}

.services-list,
.brands-list,
.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.service-item,
.brand-item-edit,
.testimonial-item {
  background: var(--slate-50);
  border-radius: 10px;
  padding: 1rem;
  border: 1px solid var(--slate-200)
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .75rem
}

.item-title {
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy)
}

.btn-remove {
  background: none;
  border: none;
  color: #ef4444;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer
}

.btn-remove:hover {
  color: #b91c1c
}

.btn-add {
  width: 100%;
  padding: 10px;
  border: 2px dashed var(--slate-300);
  border-radius: 8px;
  background: none;
  color: var(--slate-500);
  font-weight: 600;
  font-size: .875rem;
  margin-top: .5rem;
  transition: all 200ms
}

.btn-add:hover {
  border-color: #3b82f6;
  color: #2563eb;
  background: var(--blue-50)
}

.saving-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  padding: 12px 24px;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  z-index: 300;
  animation: fadeInUp .3s ease
}

.saving-toast.hidden {
  display: none
}

.select-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--slate-200);
  border-radius: 8px;
  font-size: .9rem;
  font-family: inherit;
  background: #fff;
  transition: border-color 200ms
}

.select-input:focus {
  outline: none;
  border-color: #3b82f6
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 350;
  background: rgba(2, 6, 23, .96);
  color: #e2e8f0;
  border: 1px solid rgba(59, 130, 246, .3);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  backdrop-filter: blur(8px);
  transition: transform .3s ease, opacity .3s ease;
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px
}

.cookie-content p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.6;
  color: #cbd5e1
}

.cookie-content a {
  color: #93c5fd;
  font-weight: 600
}

.btn-cookie {
  flex-shrink: 0;
  background: var(--orange-dark);
  color: #fff;
  border: 1px solid rgba(249, 115, 22, .5);
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .85rem;
  transition: background 200ms, transform 200ms, box-shadow 200ms
}

.btn-cookie:hover {
  background: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, .35)
}

@media (max-width: 640px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start
  }


}



/* Funciona no Chrome, Edge e Safari */
::-webkit-scrollbar {
  width: 4px; /* largura da scrollbar vertical */
  height: 4px; /* altura da scrollbar horizontal */
}

::-webkit-scrollbar-track {
  background: transparent; /* fundo da trilha */
}

::-webkit-scrollbar-thumb {
  background-color: var(--orange); /* cor da barra de rolagem */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--orange-dark); /* cor ao passar o mouse */
}

/* Para Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}

::selection {
  background-color: var(--orange); /* cor de fundo do texto selecionado */
  color: white; /* cor do texto selecionado */
}

.site-main{
  padding: 80px 0;
}