:root {
  --ie-bg: #fbf8f6;
  --ie-bg-alt: #f4edee;
  --ie-surface: #ffffff;
  --ie-text: #241b21;
  --ie-text-muted: #6f6268;
  --ie-primary: #8b3d57;
  --ie-primary-hover: #6f3046;
  --ie-primary-light: #a85775;
  --ie-accent: #d6b06a;
  --ie-accent-dark: #c49a4f;
  --ie-accent-light: #e4ca8f;
  --ie-border: rgba(36, 27, 33, 0.10);
  --ie-border-light: rgba(139, 61, 87, 0.10);
  --ie-success: #5E7D4F;
  --ie-footer: #22191f;
  --ie-white: #ffffff;
  --ie-shadow: 0 10px 30px rgba(36, 27, 33, 0.06);
  --ie-text-on-dark: #fbf8f6;
  --ie-text-muted-dark: rgba(251, 248, 246, 0.5);
  --gradient-hero: linear-gradient(180deg, #fff7fb 0%, #fbf8f6 100%);
  --shadow-sm: 0 1px 3px rgba(36, 27, 33, 0.08);
  --shadow-md: 0 4px 20px rgba(36, 27, 33, 0.10);
  --shadow-lg: 0 8px 24px rgba(36, 27, 33, 0.05);
  --shadow-xl: 0 20px 60px rgba(36, 27, 33, 0.15);
  --shadow-primary: 0 4px 15px rgba(139, 61, 87, 0.30);
  --shadow-primary-lg: 0 12px 35px rgba(139, 61, 87, 0.40);
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--ie-text);
  background: var(--ie-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body p,
body li,
body span {
  color: var(--ie-text-muted);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--ie-text);
}

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

a {
  text-decoration: none;
  color: var(--ie-primary);
}

a:hover {
  color: var(--ie-primary-hover);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section,
.elementor-section {
  padding: 100px 0;
  position: relative;
  scroll-margin-top: 100px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(139, 61, 87, 0.08);
  color: var(--ie-primary-hover);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  border: 1px solid rgba(139, 61, 87, 0.06);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--ie-text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.7;
}

.section-desc.text-left {
  text-align: left;
  margin: 0 0 24px;
}

.gradient-text {
  color: var(--ie-primary);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--ie-primary);
  color: var(--ie-white);
  box-shadow: var(--shadow-primary);
  border: 1px solid var(--ie-primary);
}

.btn-primary:hover {
  background: var(--ie-primary-hover);
  border-color: var(--ie-primary-hover);
  color: var(--ie-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary-lg);
}

.btn-whatsapp {
  background: var(--ie-primary);
  color: var(--ie-white);
  box-shadow: var(--shadow-primary);
  border: 1px solid var(--ie-primary);
}

.btn-whatsapp:hover {
  background: var(--ie-primary-hover);
  border-color: var(--ie-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary-lg);
}

.btn-outline {
  background: transparent;
  color: var(--ie-primary);
  border: 2px solid var(--ie-primary);
}

.btn-outline:hover {
  background: var(--ie-primary);
  color: var(--ie-white);
  border-color: var(--ie-primary);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--ie-white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: rgba(255, 253, 252, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ie-border);
}

.navbar.scrolled {
  background: rgba(255, 253, 252, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 10px 0;
  box-shadow: 0 1px 20px rgba(36, 28, 31, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.nav-logo img {
  height: 36px;
  width: auto;
  transition: all var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ie-text);
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-link:hover {
  background: rgba(139, 61, 87, 0.06);
  color: var(--ie-primary);
}

.nav-cta {
  background: var(--ie-primary);
  color: var(--ie-white) !important;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary);
  background: var(--ie-primary-hover) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ie-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(139, 61, 87, 0.05) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(214, 176, 106, 0.04) 0%, transparent 50%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  color: var(--ie-text);
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(139, 61, 87, 0.06);
  border: 1px solid rgba(139, 61, 87, 0.10);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ie-primary);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--ie-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ie-primary);
}

.stat-label,
.stat-label-pct {
  font-size: 0.85rem;
  color: var(--ie-text-muted);
  margin-top: 4px;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(139, 61, 87, 0.35), rgba(111, 48, 70, 0.25));
  mix-blend-mode: color;
  pointer-events: none;
}

.hero-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

@media (max-height: 700px) {
  .hero-image-wrapper img {
    height: 400px;
  }
}

.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--ie-text-on-dark);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-image-badge svg {
  color: var(--ie-success);

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

.hero-wave svg path {
  fill: var(--ie-bg);
}

/* ===== BENEFITS ===== */
.benefits {
  background: var(--ie-bg-alt);
  text-align: center;
}

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

.benefit-card {
  padding: 32px 24px;
  background: var(--ie-surface);
  border: 1px solid var(--ie-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 61, 87, 0.08);
  border-radius: 14px;
  transition: all var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: var(--ie-primary);
}

.benefit-card:hover .benefit-icon svg {
  stroke: var(--ie-text-on-dark) !important;
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--ie-text-muted);
  line-height: 1.6;
}

/* ===== COURSES ===== */
.courses {
  background: var(--ie-bg-alt);
  text-align: center;
}

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

.course-card {
  background: var(--ie-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: left;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.course-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.course-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.course-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.4));
  z-index: 2;
}

.course-body {
  padding: 24px;
}

.course-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.course-body p {
  font-size: 0.9rem;
  color: var(--ie-text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.course-details {
  list-style: none;
  margin-bottom: 20px;
}

.course-details li {
  font-size: 0.85rem;
  color: var(--ie-text-muted);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.course-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ie-primary);
  font-weight: 700;
}

.course-body .btn-outline {
  width: 100%;
  justify-content: center;
}

/* ===== ABOUT ===== */
.about {
  background: var(--ie-bg);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ie-border), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.about-feature svg {
  flex-shrink: 0;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--ie-accent);
  color: var(--ie-white);
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-primary-lg);
}

.exp-number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.exp-text {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 4px;
  text-align: center;
}

/* ===== NUMBERS ===== */
.numbers {
  background: var(--ie-footer);
  padding: 80px 0;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.number-value {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--ie-text-on-dark);
  line-height: 1;
}

.number-value::after {
  content: '+';
  color: var(--ie-accent);
}

.number-item:nth-child(4) .number-value::after { content: '%'; }

.number-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--ie-bg-alt);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s ease; display: flex; align-items: flex-end; padding: 16px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-grid.collapsed .gallery-item:nth-child(n+13) {
  display: none;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: var(--ie-text-on-dark);
  font-size: 3rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--ie-text-on-dark);
  font-size: 3rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--ie-bg-alt);
  text-align: center;
}

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

.testimonial-card {
  padding: 32px 24px;
  background: var(--ie-surface);
  border: 1px solid var(--ie-border);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--ie-text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ie-white);
  background: var(--ie-primary);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--ie-text-muted);
}

/* ===== CTA PREMIUM ===== */
.cta-premium {
  background: linear-gradient(135deg, #8b3d57 0%, #5d2639 100%);
}

.cta-box {
  position: relative;
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(139, 61, 87, 0.3) 0%, rgba(93, 38, 57, 0.5) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(214, 176, 106, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(214, 176, 106, 0.15);
  color: var(--ie-accent);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--ie-text-on-dark);
  margin-bottom: 16px;
  position: relative;
}

.cta-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-top: 24px;
  position: relative;
}

.cta-trust svg {
  color: var(--ie-success);
}

/* ===== LOCATION ===== */
.location {
  background: var(--ie-bg);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--ie-bg);
  border: 1px solid var(--ie-border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.location-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.loc-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 61, 87, 0.08);
  border-radius: 12px;
  flex-shrink: 0;
}

.location-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.location-card p {
  font-size: 0.9rem;
  color: var(--ie-text-muted);
  line-height: 1.6;
}

.location-card a {
  color: var(--ie-primary);
  font-weight: 500;
}

.location-card a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
  background: #22191f;
  color: #f5eef1;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin: 16px 0 24px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  transition: all var(--transition);
  color: rgba(255,255,255,0.6);
}

.footer-social a:hover {
  background: var(--ie-primary);
  color: var(--ie-white);
  transform: translateY(-2px);
}

.footer-links h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ie-white);
}


.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--ie-white);
}


.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: var(--ie-primary);
  color: var(--ie-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(139, 61, 87, 0.22);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  background: var(--ie-primary-hover);
  transform: scale(1.1);
  box-shadow: 0 16px 32px rgba(139, 61, 87, 0.3);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(94, 125, 79, 0.5);
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ie-bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--ie-primary), var(--ie-primary-hover)); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--ie-primary-hover); }

/* ===== SELECTION ===== */
::selection { background: var(--ie-primary); color: #FAF7F3; }

/* ===== NAVBAR ENHANCED ===== */
.navbar.scrolled { background: rgba(255,255,255,0.85); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid rgba(139,61,87,0.06); }

/* ===== HERO PARTICLES ===== */
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-particle { position: absolute; width: 6px; height: 6px; background: rgba(139,61,87,0.12); border-radius: 50%; animation: float-particle 20s infinite ease-in-out; }
.hero-particle:nth-child(1) { top: 20%; left: 10%; width: 8px; height: 8px; animation-delay: 0s; background: rgba(139,61,87,0.08); }
.hero-particle:nth-child(2) { top: 60%; left: 80%; width: 12px; height: 12px; animation-delay: -3s; background: rgba(214,176,106,0.06); }
.hero-particle:nth-child(3) { top: 80%; left: 30%; width: 6px; height: 6px; animation-delay: -6s; background: rgba(139,61,87,0.08); }
.hero-particle:nth-child(4) { top: 30%; left: 70%; width: 10px; height: 10px; animation-delay: -9s; background: rgba(139,61,87,0.06); }
.hero-particle:nth-child(5) { top: 50%; left: 50%; width: 5px; height: 5px; animation-delay: -12s; background: rgba(139,61,87,0.1); }
.hero-particle:nth-child(6) { top: 10%; left: 90%; width: 7px; height: 7px; animation-delay: -15s; background: rgba(214,176,106,0.08); }
.hero-particle:nth-child(7) { top: 70%; left: 15%; width: 9px; height: 9px; animation-delay: -5s; background: rgba(139,61,87,0.06); }
.hero-particle:nth-child(8) { top: 40%; left: 95%; width: 4px; height: 4px; animation-delay: -8s; background: rgba(139,61,87,0.1); }

@keyframes float-particle { 0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 1; } 25% { transform: translateY(-30px) translateX(15px) scale(1.2); opacity: 0.8; } 50% { transform: translateY(-60px) translateX(-10px) scale(0.8); opacity: 0.5; } 75% { transform: translateY(-30px) translateX(10px) scale(1.1); opacity: 0.7; } }

/* ===== HERO BADGE ENHANCED ===== */
.hero-badge { animation: badge-pulse 3s ease-in-out infinite; }
@keyframes badge-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(139,61,87,0.1); } 50% { box-shadow: 0 0 0 8px rgba(139,61,87,0); } }

/* ===== BUTTON SHIMMER ===== */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%); animation: shimmer 3s ease-in-out infinite; transform: rotate(25deg); }
@keyframes shimmer { 0% { transform: translateX(-100%) rotate(25deg); } 100% { transform: translateX(100%) rotate(25deg); } }

/* ===== BUTTON 3D HOVER ===== */
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 35px rgba(139,61,87,0.4); }
.btn-whatsapp:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 35px rgba(139,61,87,0.4); }

/* ===== BENEFIT CARDS ENHANCED ===== */
.benefit-card { position: relative; overflow: hidden; }
.benefit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--ie-primary); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(139,61,87,0.12); }

/* ===== SECTION TAG ENHANCED ===== */
.section-tag { position: relative; }
.section-tag::after { content: ''; display: inline-block; width: 20px; height: 2px; background: var(--ie-primary); margin-left: 8px; vertical-align: middle; border-radius: 2px; }

/* ===== SECTION TITLE ENHANCED ===== */
.section-title { position: relative; display: inline-block; }
.section-title::after { content: ''; display: block; width: 60px; height: 4px; background: var(--ie-primary); border-radius: 2px; margin-top: 8px; }
.section.text-center .section-title::after, .section-tag + .section-title::after, .benefits .section-title::after, .courses .section-title::after, .gallery .section-title::after, .testimonials .section-title::after, .cta-premium .section-title::after, .location .section-title::after, .numbers .section-title::after { margin-left: auto; margin-right: auto; }

/* ===== COURSE CARD ENHANCED ===== */
.course-card { position: relative; }
.course-card::after { content: ''; position: absolute; inset: -1px; border-radius: var(--radius-lg); background: var(--ie-primary); opacity: 0; transition: opacity 0.4s ease; z-index: -1; }
.course-card:hover::after { opacity: 0.05; }
.course-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(139,61,87,0.15); }
.course-body .btn-outline { position: relative; overflow: hidden; }
.course-body .btn-outline::before { content: ''; position: absolute; inset: 0; background: var(--ie-primary); opacity: 0; transition: opacity 0.3s ease; }
.course-card:hover .btn-outline { color: var(--ie-text-on-dark); border-color: transparent; }
.course-card:hover .btn-outline::before { opacity: 1; }
.course-card:hover .btn-outline span { position: relative; z-index: 1; }

/* ===== NUMBERS ENHANCED ===== */
.numbers { position: relative; overflow: hidden; }
.numbers::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(139,61,87,0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 50%, rgba(214,176,106,0.1) 0%, transparent 50%), radial-gradient(ellipse at 50% 0%, rgba(139,61,87,0.08) 0%, transparent 50%); }
.number-item { position: relative; }
.number-value { display: inline-block; position: relative; }
.number-value::after { content: '+'; }
.number-item:nth-child(4) .number-value::after { content: '%'; }

/* ===== GALLERY ENHANCED ===== */
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.gallery-item:hover img { transform: scale(1.1); }

/* ===== TESTIMONIAL CARDS ENHANCED ===== */
.testimonial-card { position: relative; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.testimonial-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 16px 48px rgba(139,61,87,0.1); border-color: rgba(139,61,87,0.2); }

/* ===== GLOW EFFECTS ===== */
.glow-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--ie-success); animation: glow-pulse 2s ease-in-out infinite; margin-right: 8px; vertical-align: middle; }
@keyframes glow-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(94,125,79,0.6); } 50% { box-shadow: 0 0 0 8px rgba(94,125,79,0); } }

/* ===== CTA ENHANCED ===== */
.cta-badge { animation: cta-badge-pulse 2s ease-in-out infinite; }
@keyframes cta-badge-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(214,176,106,0.3); } 50% { box-shadow: 0 0 0 10px rgba(214,176,106,0); } }
.cta-glow { animation: cta-glow-rotate 8s linear infinite; }
@keyframes cta-glow-rotate { 0% { transform: translateX(-50%) rotate(0deg); } 100% { transform: translateX(-50%) rotate(360deg); } }

/* ===== WHATSAPP FLOAT ENHANCED ===== */
.whatsapp-float { animation: whatsapp-pulse 2s ease-in-out infinite; }
@keyframes whatsapp-pulse { 0%, 100% { box-shadow: 0 4px 20px rgba(139,61,87,0.3); } 50% { box-shadow: 0 4px 30px rgba(139,61,87,0.4), 0 0 0 10px rgba(139,61,87,0.08); } }
.whatsapp-float:hover { animation: none; transform: scale(1.1); }

/* ===== LOCATION CARD ENHANCED ===== */
.location-card { transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.location-card:hover { transform: translateX(4px); box-shadow: 0 8px 30px var(--ie-border-light); border-color: var(--ie-border-light); }
.loc-icon { transition: all 0.3s ease; }
.location-card:hover .loc-icon { background: var(--ie-primary); }
.location-card:hover .loc-icon svg { stroke: var(--ie-text-on-dark) !important; }

/* ===== FOOTER ENHANCED ===== */
.footer { position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--ie-accent); }
.footer-social a { position: relative; overflow: hidden; }
.footer-social a::before { content: ''; position: absolute; inset: 0; background: var(--ie-primary); opacity: 0; transition: opacity 0.3s ease; border-radius: 10px; }
.footer-social a:hover::before { opacity: 1; }
.footer-social a:hover svg { position: relative; z-index: 1; }

/* ===== SCROLL ANIMATIONS ENHANCED ===== */
.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== STAGGER ANIMATIONS ===== */
.benefits-grid .fade-in:nth-child(1) { transition-delay: 0s; }
.benefits-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.benefits-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.benefits-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }
.benefits-grid .fade-in:nth-child(5) { transition-delay: 0.4s; }
.benefits-grid .fade-in:nth-child(6) { transition-delay: 0.5s; }

.courses-grid .fade-in:nth-child(1) { transition-delay: 0s; }
.courses-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.courses-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.courses-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }
.courses-grid .fade-in:nth-child(5) { transition-delay: 0.4s; }
.courses-grid .fade-in:nth-child(6) { transition-delay: 0.5s; }

.testimonials-grid .fade-in:nth-child(1) { transition-delay: 0s; }
.testimonials-grid .fade-in:nth-child(2) { transition-delay: 0.15s; }
.testimonials-grid .fade-in:nth-child(3) { transition-delay: 0.3s; }
.testimonials-grid .fade-in:nth-child(4) { transition-delay: 0.1s; }
.testimonials-grid .fade-in:nth-child(5) { transition-delay: 0.25s; }
.testimonials-grid .fade-in:nth-child(6) { transition-delay: 0.4s; }

.number-item:nth-child(1) .fade-in { transition-delay: 0s; }
.number-item:nth-child(2) { transition-delay: 0.15s; }
.number-item:nth-child(3) { transition-delay: 0.3s; }
.number-item:nth-child(4) { transition-delay: 0.45s; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .fade-in { opacity: 1; transform: none; }
  .btn-primary::after { display: none; }
  .hero-particle { display: none; }
  .whatsapp-float { animation: none; }
  .cta-badge, .hero-badge { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===== LARGE SCREENS ===== */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .hero-content {
    gap: 80px;
  }

  .hero-title {
    font-size: clamp(3rem, 4vw, 4.5rem);
  }

  .hero-image-wrapper img {
    height: 580px;
  }

  .about-image-wrapper img {
    height: 560px;
  }

  .benefits-grid {
    gap: 28px;
  }

  .courses-grid {
    gap: 28px;
  }

  .section {
    padding: 120px 0;
  }
}

@media (min-width: 1800px) {
  .container {
    max-width: 1500px;
  }

  .hero {
    min-height: 80dvh;
  }

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

  .testimonials-grid {
    gap: 28px;
  }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .hero-subtitle {
    margin: 0 auto 32px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 24px;
  }

  .hero-image {
    display: none;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

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

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

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrapper img {
    height: 400px;
  }

  .about-content {
    order: 1;
  }

  .about-image {
    order: 0;
  }

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

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

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

  .section {
    padding: 80px 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content {
    gap: 24px;
  }

  .hero {
    min-height: 90dvh;
  }

  .hero-title {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
  }

  .course-img {
    height: 160px;
  }

  .benefit-card {
    padding: 28px 20px;
  }

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

  .about-image-wrapper img {
    height: 350px;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100dvh;
    background: var(--ie-surface);
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .navbar:not(.scrolled) .nav-menu.active .nav-link {
    color: var(--ie-text);
  }

  .nav-toggle {
    display: flex;
  }

  .benefits-grid,
  .courses-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    padding-top: 60px;
    min-height: 100dvh;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .hero-wave svg {
    height: 50px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  .about-image-wrapper img {
    height: auto;
    aspect-ratio: 4/3;
  }

  .about-experience-badge {
    padding: 12px 16px;
  }

  .exp-number { font-size: 1.6rem; }
  .exp-text { font-size: 0.75rem; }

  .location-map iframe {
    height: 280px;
  }

  .section-desc {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .course-body h3 {
    font-size: 1.05rem;
  }

  .number-value {
    font-size: 2rem;
  }

  .nav-logo img {
    height: 30px;
  }

  .about-feature {
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }

  .benefit-card {
    padding: 28px 20px;
  }

  .course-card .course-img {
    height: 150px;
  }

  .course-body {
    padding: 20px;
  }

  .numbers-grid {
    gap: 20px;
  }

  .footer-grid {
    gap: 32px;
  }

  .section-tag {
    font-size: 0.8rem;
    padding: 5px 14px;
  }

  .about-grid {
    gap: 32px;
  }

  .location-card {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 48px 0;
  }

  .hero {
    padding-top: 56px;
    min-height: 100dvh;
  }

  .hero-title {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .hero-stats {
    gap: 12px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label,
  .stat-label-pct {
    font-size: 0.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
  }

  .section-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .section-tag {
    font-size: 0.78rem;
    padding: 4px 12px;
  }

  .cta-title {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  .cta-text {
    font-size: 0.95rem;
  }

  .cta-box {
    padding: 32px 16px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .location-card {
    padding: 14px;
  }

  .location-card h4 {
    font-size: 0.85rem;
  }

  .location-card p {
    font-size: 0.85rem;
  }

  .loc-icon {
    width: 40px;
    height: 40px;
  }

  .benefit-card {
    padding: 24px 16px;
  }

  .benefit-card h3 {
    font-size: 1rem;
  }

  .benefit-card p {
    font-size: 0.85rem;
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
  }

  .course-body h3 {
    font-size: 1rem;
  }

  .course-body p {
    font-size: 0.85rem;
  }

  .course-details li {
    font-size: 0.8rem;
  }

  .course-card .course-img {
    height: 130px;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding: 20px 16px;
  }

  .number-value {
    font-size: 1.7rem;
  }

  .number-label {
    font-size: 0.85rem;
  }

  .footer-links h4 {
    font-size: 0.9rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .whatsapp-float {
    width: 44px;
    height: 44px;
    bottom: 12px;
    right: 12px;
  }

  .hero-stats {
    gap: 12px;
  }

  .courses-grid,
  .benefits-grid {
    gap: 16px;
  }

  .about-feature {
    font-size: 0.85rem;
    gap: 10px;
  }

  .numbers {
    padding: 56px 0;
  }

  .gallery-actions .btn {
    width: 100%;
  }

  .lightbox-img {
    max-width: 95vw;
    max-height: 70vh;
  }
}

@media (max-width: 360px) {
  .section {
    padding: 36px 0;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-title {
    font-size: clamp(1.3rem, 6vw, 1.5rem);
  }

  .hero-subtitle {
    font-size: 0.88rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .footer-brand img {
    width: 140px;
  }

  .footer-brand p {
    font-size: 0.8rem;
  }

  .location-card {
    padding: 12px;
  }

  .loc-icon {
    width: 36px;
    height: 36px;
  }

  .benefit-card {
    padding: 20px 14px;
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
  }

  .gallery-grid {
    gap: 4px;
  }

  .container {
    padding: 0 12px;
  }

  .btn-lg {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .whatsapp-float {
    width: 40px;
    height: 40px;
    bottom: 10px;
    right: 10px;
  }

  .whatsapp-float svg {
    width: 20px;
    height: 20px;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .navbar,
  .whatsapp-float,
  .hero-wave,
  .hero-particles,
  .btn,
  .gallery-actions,
  .lightbox,
  .footer-social {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-image {
    display: none;
  }

  .hero-text {
    color: var(--ie-text);
  }

  .hero-badge,
  .hero-subtitle {
    color: var(--ie-text-muted);
  }

  .section {
    padding: 40px 0;
    break-inside: avoid;
  }

  .about-experience-badge {
    position: static;
    margin-top: 16px;
  }

  .footer {
    background: var(--ie-bg);
    color: var(--ie-text);
    padding: 20px 0;
  }

  .footer-bottom p {
    color: var(--ie-text-muted);
  }
}

/* ===== ELEMENTOR / WORDPRESS COMPAT ===== */
.elementor-button,
button,
.wp-element-button,
input[type="submit"],
input[type="button"] {
  background: var(--ie-primary) !important;
  color: var(--ie-white) !important;
  border: 1px solid var(--ie-primary) !important;
  border-radius: var(--radius-pill) !important;
  box-shadow: none;
}

.elementor-button:hover,
button:hover,
.wp-element-button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background: var(--ie-primary-hover) !important;
  border-color: var(--ie-primary-hover) !important;
  color: var(--ie-white) !important;
}

.elementor-button-outline,
.botao-secundario {
  background: transparent !important;
  color: var(--ie-primary) !important;
  border: 1px solid var(--ie-primary) !important;
}

.elementor-button-outline:hover,
.botao-secundario:hover {
  background: var(--ie-primary) !important;
  color: var(--ie-white) !important;
}

.elementor-counter-number,
.elementor-counter-number-prefix,
.elementor-counter-number-suffix {
  color: var(--ie-primary) !important;
  font-weight: 700;
}

.elementor-counter-title {
  color: var(--ie-text-muted) !important;
}

.elementor-widget-icon-box .elementor-widget-container,
.elementor-widget-image-box .elementor-widget-container,
.elementor-widget-testimonial .elementor-widget-container,
.elementor-column .elementor-element-populated {
  background: var(--ie-surface);
  border: 1px solid var(--ie-border);
  border-radius: 16px;
  box-shadow: var(--ie-shadow);
}

.elementor-icon-box-title,
.elementor-image-box-title,
.elementor-testimonial-name {
  color: var(--ie-text) !important;
}

.elementor-testimonial-job,
.elementor-image-box-description,
.elementor-icon-box-description,
.elementor-testimonial-content {
  color: var(--ie-text-muted) !important;
}

.elementor-icon,
.fa-check,
.eicon-check {
  color: var(--ie-accent) !important;
}

.elementor-section:nth-of-type(2n) {
  background-color: var(--ie-bg-alt);
}

.elementor-widget-google_maps iframe {
  border-radius: 16px;
  border: 1px solid var(--ie-border);
}

.elementor-location-footer {
  background: var(--ie-footer) !important;
  color: #F7EFF2 !important;
}

.elementor-location-footer h1,
.elementor-location-footer h2,
.elementor-location-footer h3,
.elementor-location-footer h4,
.elementor-location-footer p,
.elementor-location-footer li,
.elementor-location-footer a {
  color: #F7EFF2 !important;
}

.elementor-location-footer a:hover {
  color: var(--ie-accent) !important;
}
