:root {
  --primary: #b63834;
  --primary-dark: #7e1f23;
  --primary-deep: #4b1218;
  --secondary: #d4b06a;
  --secondary-dark: #b68d43;
  --accent: #25d366;
  --text: #2b2523;
  --muted: #4f4742;
  --light: #faf8f6;
  --light-2: #f4eeea;
  --white: #ffffff;
  --border: rgba(126, 31, 35, 0.1);
  --shadow: 0 20px 50px rgba(46, 16, 18, 0.12);
  --shadow-soft: 0 12px 28px rgba(46, 16, 18, 0.07);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.topbar {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  border-bottom: 1px solid rgba(126, 31, 35, 0.08);
  backdrop-filter: blur(4px);
}

.topbar-content {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(126, 31, 35, 0.08);
  box-shadow: 0 10px 30px rgba(40, 14, 18, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-content {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  transition: min-height 0.3s ease;
}

.header.scrolled .header-content {
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
  flex-shrink: 0;
}

.brand-logo {
  height: 92px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.header.scrolled .brand-logo {
  height: 62px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.nav a {
  position: relative;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 15px;
  padding: 6px 0;
  transition: 0.25s ease;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transition: width 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--secondary);
}

.header.scrolled .nav a:hover,
.header.scrolled .nav a.active {
  color: var(--primary);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: var(--light);
  border: 1px solid var(--border);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-dark);
  transition: 0.25s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f3e5d8 100%);
  color: var(--primary-deep);
  box-shadow: 0 18px 35px rgba(27, 10, 14, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.btn-outline {
  color: var(--primary-dark);
  background: #fff;
  border: 1px solid rgba(126, 31, 35, 0.16);
}

.btn-outline:hover {
  background: rgba(182, 56, 52, 0.04);
  transform: translateY(-2px);
}

.btn-glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #20b15a, #25d366);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.16);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.btn-esc {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.25s ease;
}

.btn-esc:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.hero-slider {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(14, 10, 10, 0.3), rgba(14, 10, 10, 0.05)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(212, 176, 106, 0.22), transparent 20%),
    linear-gradient(135deg, #2b0c12 0%, #4c1319 22%, #6d1a20 48%, #8f262b 72%, #b63834 100%);
  color: #fff;
}

.esc-hero {
  min-height: 720px;
}

.hero-slider-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slider-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.04), transparent 38%),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.08), transparent 16%),
    radial-gradient(circle at 80% 72%, rgba(255, 255, 255, 0.06), transparent 18%);
  pointer-events: none;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.45;
  pointer-events: none;
}

.hero-bg-orb-1 {
  width: 340px;
  height: 340px;
  top: -40px;
  right: 8%;
  background: rgba(255, 218, 169, 0.18);
}

.hero-bg-orb-2 {
  width: 280px;
  height: 280px;
  left: -60px;
  bottom: 30px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.32), transparent 82%);
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  padding: 140px 0 220px;
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: none;
  z-index: 2;
}

.esc-hero-slide {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: none;
  padding: 120px 0 120px;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(43, 12, 18, 0.52) 0%,
    rgba(76, 19, 25, 0.38) 34%,
    rgba(122, 32, 38, 0.24) 60%,
    rgba(182, 56, 52, 0.12) 100%
  );
  z-index: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.62;
  z-index: 0;
  transform: scale(1.03);
}

.hero-slide[data-slide="0"]::after {
  background-image: url("./slide-1.webp");
}

.hero-slide[data-slide="1"]::after {
  background-image: url("./slide-2.webp");
}

.hero-slide[data-slide="2"]::after {
  background-image: url("./slide-3.webp");
}

.esc-hero-slide::after {
  background-image: url("./slide-2.webp");
  opacity: 0.18;
}

.hero-slide-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  gap: 40px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(4px);
}

.hero-slide-text {
  max-width: 680px;
}

.hero-slide-text h1 {
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.98;
  margin-bottom: 22px;
  max-width: 760px;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-slide-text p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.hero-slide-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 247, 0.94));
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 28px;
  padding: 32px 28px 28px;
  box-shadow:
    0 20px 50px rgba(23, 10, 14, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
  align-self: start;
  margin-top: 18px;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
}

.hero-slide-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), #d35d55);
}

.hero-card-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(182, 56, 52, 0.08);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-slide-card h3 {
  color: var(--primary-deep);
  font-size: 28px;
  line-height: 1.08;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.hero-slide-card p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.65;
}

.hero-slide-card ul {
  display: grid;
  gap: 12px;
}

.hero-slide-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.hero-slide-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--primary);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}

.hero-slider-controls {
  position: absolute;
  left: 50%;
  bottom: 55px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: max-content;
}

.hero-control {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: 0.25s ease;
  flex-shrink: 0;
}

.hero-control:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 90px;
  justify-content: center;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: 0.25s ease;
}

.hero-dot.active {
  width: 36px;
  background: #fff;
}

.section {
  padding: 88px 0;
}

.alt {
  background: linear-gradient(180deg, var(--light) 0%, #fcf9f7 100%);
}

.section-label {
  color: var(--secondary-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.section h2 {
  color: var(--primary-deep);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 850px;
  letter-spacing: -0.03em;
}

.section-text {
  color: var(--muted);
  font-size: 17px;
  max-width: 800px;
  margin-bottom: 14px;
}

.section-intro {
  margin-bottom: 32px;
}

.two-columns {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: start;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.client-grid,
.stats-grid {
  display: grid;
  gap: 20px;
}

.client-grid {
  grid-template-columns: repeat(3, 1fr);
}

.client-grid-expanded {
  margin-bottom: 30px;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.service-card,
.mini-card,
.contact-box,
.contact-form,
.step,
.client-card,
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.info-card:hover,
.service-card:hover,
.mini-card:hover,
.contact-box:hover,
.contact-form:hover,
.step:hover,
.client-card:hover,
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 30px;
  background: linear-gradient(180deg, #fff, #fffaf7);
}

.info-card h3 {
  color: var(--primary-dark);
  font-size: 26px;
  margin-bottom: 14px;
}

.info-card ul {
  display: grid;
  gap: 12px;
}

.info-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.info-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-dark);
  font-weight: 800;
}

.service-card {
  padding: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf7 100%);
}

.card-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(212, 176, 106, 0.16);
  color: var(--secondary-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card h3 {
  color: var(--primary-deep);
  font-size: 28px;
  line-height: 1.14;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

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

.service-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.service-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

.esc-shortcut-section {
  background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
}

.esc-shortcut-box {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, #fffaf7 100%);
  box-shadow: var(--shadow-soft);
}

.esc-shortcut-actions {
  display: flex;
  align-items: center;
}

.mini-card {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf7 100%);
}

.mini-card h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-size: 22px;
}

.mini-card p {
  color: var(--muted);
}

.step {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.step span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(159, 42, 42, 0.14);
}

.step h3 {
  color: var(--primary-deep);
  font-size: 22px;
  margin-bottom: 10px;
}

.step p {
  color: var(--muted);
}

.client-card {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf7 100%);
}

.client-card h3 {
  color: var(--primary-deep);
  font-size: 24px;
  margin-bottom: 10px;
}

.client-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.contact-shortcuts {
  display: grid;
  gap: 10px;
}

.stat-card {
  padding: 28px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
}

.stat-card strong {
  display: block;
  font-size: 26px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--muted);
}

.contact-box {
  padding: 28px;
  margin-top: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
}

.contact-box p {
  color: var(--muted);
  margin-bottom: 10px;
}

.contact-box strong {
  color: var(--primary-deep);
}

.contact-form {
  padding: 30px;
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf7 100%);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(126, 31, 35, 0.12);
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--text);
  background: #fffefd;
  transition: 0.2s ease;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(182, 56, 52, 0.28);
  box-shadow: 0 0 0 4px rgba(182, 56, 52, 0.06);
  background: var(--white);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  margin-top: 4px;
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-feedback {
  min-height: 20px;
  font-size: 14px;
  color: var(--primary-dark);
  font-weight: 700;
}

.form-feedback.success {
  color: #167a3d;
}

.form-feedback.error {
  color: #b63834;
}

.form-feedback.loading {
  color: #7e1f23;
}

.form-honeypot {
  display: none;
}

.esc-contact-card h3 {
  color: var(--primary-deep);
  font-size: 24px;
  margin-bottom: 8px;
}

.sponsors-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.sponsors-label,
.sponsors-title {
  text-align: center;
}

.sponsors-title {
  margin-left: auto;
  margin-right: auto;
}

.sponsors-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
}

.sponsor-item {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.sponsor-item img {
  max-height: 62px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.footer {
  background: linear-gradient(135deg, var(--primary-deep), #65191f);
  color: var(--white);
  padding: 32px 0;
  border-top: 3px solid var(--secondary);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-content p {
  opacity: 0.92;
}

.whatsapp-fixed-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 180px;
  max-width: calc(100vw - 40px);
}

.whatsapp-fixed-buttons .btn {
  width: 100%;
  min-height: 46px;
  box-shadow: 0 12px 22px rgba(35, 12, 16, 0.12);
}

.whatsapp-fixed-buttons .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}

.team-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.team-modal.open {
  display: block;
}

.team-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 12, 15, 0.56);
  backdrop-filter: blur(4px);
}

.team-modal-dialog {
  position: relative;
  width: min(92vw, 520px);
  max-height: min(86vh, 760px);
  margin: 6vh auto 0;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(18, 6, 9, 0.34);
  z-index: 1;
}

.team-modal-header {
  padding: 28px 28px 18px;
  background: linear-gradient(135deg, #9ab41b 0%, #88a815 100%);
  color: #fff;
}

.team-modal-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-modal-header h3 {
  font-size: 36px;
  line-height: 1.05;
  margin-bottom: 8px;
}

.team-modal-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
}

.team-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.team-modal-list {
  display: grid;
  gap: 0;
  background: #f7f7f7;
  max-height: calc(86vh - 170px);
  overflow-y: auto;
}

.team-person {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  background: #fff;
  border-bottom: 1px solid #ececec;
  transition: 0.2s ease;
}

.team-person:hover {
  background: #f9f9f9;
}

.team-person-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7ebe7, #fffaf7);
  border: 1px solid rgba(126, 31, 35, 0.08);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
}

.team-person-content small {
  display: block;
  color: #6b6b6b;
  font-size: 12px;
  margin-bottom: 2px;
}

.team-person-content strong {
  display: block;
  color: #303030;
  font-size: 16px;
  line-height: 1.3;
}

.team-person-content span {
  display: block;
  color: #1f8f3a;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.alert-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.alert-modal.open {
  display: block;
}

.alert-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 12, 15, 0.62);
  backdrop-filter: blur(5px);
}

.alert-modal-dialog {
  position: relative;
  width: min(92vw, 560px);
  margin: 8vh auto 0;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(18, 6, 9, 0.34);
  z-index: 1;
  border: 1px solid var(--border);
}

.alert-modal-header {
  padding: 28px 28px 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
}

.alert-modal-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.alert-modal-header h3 {
  font-size: 34px;
  line-height: 1.05;
  margin-bottom: 8px;
}

.alert-modal-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}

.alert-modal-content {
  padding: 24px 28px 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf7 100%);
}

.alert-modal-content p {
  color: var(--muted);
  margin-bottom: 14px;
}

.alert-modal-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding-left: 0;
}

.alert-modal-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
}

.alert-modal-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

.alert-modal-warning {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(182, 56, 52, 0.06);
  border: 1px solid rgba(182, 56, 52, 0.12);
  color: var(--primary-dark) !important;
  font-weight: 600;
}

.alert-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.alert-modal-actions .btn {
  flex: 1 1 220px;
}

.alert-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

@media (max-width: 1200px) {
  .sponsors-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-slider {
    min-height: 740px;
  }

  .esc-hero {
    min-height: 680px;
  }

  .hero-slide {
    padding: 100px 0 140px;
  }

  .esc-hero-slide {
    padding: 100px 0 84px;
  }

  .hero-slide-grid,
  .two-columns,
  .cards-grid,
  .mini-cards,
  .steps,
  .contact-grid,
  .client-grid,
  .stats-grid,
  .esc-shortcut-box {
    grid-template-columns: 1fr;
  }

  .hero-slide-text,
  .hero-slide-card {
    max-width: 100%;
  }

  .hero-slide-card {
    margin-top: 0;
  }

  .hero-slider-controls {
    bottom: 30px;
  }

  .sponsors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    box-shadow: 0 14px 30px rgba(70, 35, 20, 0.08);
  }

  .nav a {
    width: 100%;
    padding: 12px 10px;
    color: var(--primary-dark) !important;
    border-radius: 12px;
  }

  .nav a::after {
    display: none;
  }

  .nav a:hover,
  .nav a.active {
    background: rgba(182, 56, 52, 0.06);
    color: var(--primary-dark);
  }

  .nav.open {
    display: flex;
  }

  .nav-esc-link {
    display: block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    text-align: center;
    margin-top: 6px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
  }

  .header-content {
    min-height: 84px;
    gap: 14px;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo {
    height: 58px;
  }

  .header.scrolled .brand-logo {
    height: 50px;
  }

  .header-actions {
    gap: 10px;
  }

  .btn-esc {
    display: none;
  }

  .whatsapp-fixed-buttons {
    right: 16px;
    bottom: 16px;
    width: 160px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .topbar-content {
    justify-content: center;
    text-align: center;
    gap: 3px;
    padding: 7px 0;
    min-height: auto;
    font-size: 11px;
  }

  .header {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: none;
    border-bottom: 1px solid rgba(126, 31, 35, 0.06);
  }

  .header-content {
    min-height: 58px;
    gap: 8px;
    padding: 6px 0;
  }

  .header.scrolled .header-content {
    min-height: 56px;
  }

  .brand {
    max-width: 145px;
  }

  .brand-logo {
    height: 30px;
    width: auto;
  }

  .header.scrolled .brand-logo {
    height: 28px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 20px;
  }

  .hero-slider {
    min-height: 560px;
  }

  .esc-hero {
    min-height: 520px;
  }

  .hero-slide {
    padding: 56px 0 84px;
  }

  .esc-hero-slide {
    padding: 56px 0 52px;
  }

  .hero-slide::after {
    opacity: 0.12;
    background-position: center center;
  }

  .hero-slide::before {
    background: linear-gradient(
      180deg,
      rgba(43, 12, 18, 0.95) 0%,
      rgba(76, 19, 25, 0.84) 45%,
      rgba(122, 32, 38, 0.72) 100%
    );
  }

  .eyebrow {
    margin-bottom: 10px;
    padding: 7px 11px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .hero-slide-text h1 {
    font-size: 21px;
    line-height: 1.08;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
  }

  .hero-slide-text p {
    font-size: 13px;
    line-height: 1.55;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 9px;
    margin-top: 16px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 42px;
  }

  .hero-badges {
    gap: 7px;
    margin-top: 14px;
  }

  .hero-badges span {
    font-size: 9px;
    padding: 6px 9px;
  }

  .hero-slide-card {
    padding: 16px 14px;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(23, 10, 14, 0.16);
  }

  .hero-card-badge {
    font-size: 10px;
    padding: 6px 10px;
    margin-bottom: 10px;
  }

  .hero-slide-card h3 {
    font-size: 17px;
    line-height: 1.12;
    margin-bottom: 8px;
  }

  .hero-slide-card p,
  .hero-slide-card li {
    font-size: 13px;
    line-height: 1.5;
  }

  .hero-slide-card li {
    padding-left: 16px;
  }

  .hero-slider-controls {
    bottom: 10px;
    gap: 8px;
  }

  .hero-control {
    width: 34px;
    height: 34px;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  .hero-dot.active {
    width: 22px;
  }

  .section {
    padding: 46px 0;
  }

  .section h2 {
    font-size: 22px;
    line-height: 1.12;
    margin-bottom: 10px;
  }

  .section-label {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .section-text {
    font-size: 14px;
    line-height: 1.55;
  }

  .info-card,
  .service-card,
  .mini-card,
  .contact-box,
  .contact-form,
  .step,
  .client-card,
  .stat-card,
  .sponsor-item,
  .esc-shortcut-box {
    padding: 16px;
    border-radius: 16px;
  }

  .info-card h3,
  .service-card h3,
  .mini-card h3,
  .step h3,
  .client-card h3,
  .esc-contact-card h3 {
    font-size: 17px;
    line-height: 1.2;
  }

  .service-card p,
  .mini-card p,
  .step p,
  .client-card p,
  .contact-box p {
    font-size: 13px;
  }

  .service-card li,
  .info-card li {
    font-size: 13px;
    line-height: 1.45;
  }

  .card-tag {
    font-size: 10px;
    padding: 6px 10px;
    margin-bottom: 10px;
  }

  .steps,
  .mini-cards,
  .cards-grid,
  .client-grid,
  .stats-grid,
  .contact-grid,
  .two-columns,
  .esc-shortcut-box {
    gap: 12px;
  }

  .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .contact-form {
    gap: 10px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 13px;
    border-radius: 12px;
    font-size: 14px;
  }

  .contact-form textarea {
    min-height: 105px;
  }

  .form-feedback {
    font-size: 12px;
  }

  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .sponsor-item {
    min-height: 72px;
    padding: 10px;
  }

  .sponsor-item img {
    max-height: 32px;
  }

  .footer {
    padding: 22px 0 22px;
  }

  .footer-content {
    gap: 6px;
  }

  .footer-content p {
    font-size: 12px;
  }

  .whatsapp-fixed-buttons {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 0 0;
  }

  .whatsapp-fixed-buttons .btn {
    width: 100%;
    min-height: 40px;
    font-size: 12px;
    padding: 0 10px;
  }

  .team-modal-dialog,
  .alert-modal-dialog {
    width: min(94vw, 560px);
    border-radius: 18px;
    margin-top: 4vh;
  }

  .team-modal-header,
  .alert-modal-header {
    padding: 18px 14px 14px;
  }

  .team-modal-header h3,
  .alert-modal-header h3 {
    font-size: 20px;
  }

  .team-modal-header p,
  .alert-modal-header p {
    font-size: 13px;
  }

  .team-modal-list {
  max-height: none !important;
  overflow-y: visible !important;
}

  .team-person {
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding: 12px 14px;
  }

  .team-person-avatar {
    width: 40px;
    height: 40px;
    font-size: 10px;
  }

  .team-person-content strong {
    font-size: 13px;
  }

  .team-person-content small,
  .team-person-content span {
    font-size: 10px;
  }

  .alert-modal-content {
    padding: 14px;
  }

  .alert-modal-actions {
    gap: 8px;
  }

  .alert-modal-actions .btn {
    flex: 1 1 100%;
  }
}

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

  .topbar-content {
    font-size: 10px;
  }

  .header-content {
    min-height: 54px;
    padding: 5px 0;
  }

  .header.scrolled .header-content {
    min-height: 52px;
  }

  .brand {
    max-width: 132px;
  }

  .brand-logo {
    height: 27px;
  }

  .header.scrolled .brand-logo {
    height: 25px;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .hero-slider {
    min-height: 540px;
  }

  .esc-hero {
    min-height: 490px;
  }

  .hero-slide {
    padding: 50px 0 78px;
  }

  .esc-hero-slide {
    padding: 50px 0 46px;
  }

  .hero-slide-text h1 {
    font-size: 19px;
  }

  .hero-slide-text p {
    font-size: 12px;
  }

  .hero-badges span {
    font-size: 9px;
    padding: 6px 8px;
  }

  .hero-slide-card {
    padding: 14px 13px;
  }

  .hero-slide-card h3 {
    font-size: 16px;
  }

  .section {
    padding: 42px 0;
  }

  .section h2 {
    font-size: 20px;
  }

  .info-card,
  .service-card,
  .mini-card,
  .contact-box,
  .contact-form,
  .step,
  .client-card,
  .stat-card,
  .sponsor-item,
  .esc-shortcut-box {
    padding: 14px;
    border-radius: 14px;
  }

  .btn {
    min-height: 40px;
    font-size: 12px;
  }

  .whatsapp-fixed-buttons .btn {
    min-height: 38px;
    font-size: 12px;
  }

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

/* Ajustes de performance e acessibilidade */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  .topbar,
  .header,
  .eyebrow,
  .hero-badges span,
  .btn-glass,
  .hero-control,
  .team-modal-overlay,
  .alert-modal-overlay {
    backdrop-filter: none;
  }

  .hero-bg-orb,
  .hero-bg-grid {
    display: none;
  }

  .info-card:hover,
  .service-card:hover,
  .mini-card:hover,
  .contact-box:hover,
  .contact-form:hover,
  .step:hover,
  .client-card:hover,
  .stat-card:hover,
  .btn-primary:hover,
  .btn-outline:hover,
  .btn-glass:hover,
  .btn-whatsapp:hover,
  .btn-esc:hover {
    transform: none;
  }

  .sponsor-item img {
    width: auto;
    height: auto;
  }
}
