/* ============================================================
   REWDEV — Estilos Principales
   Paleta de marca:
     #0D0D0D  → negro principal (fondo)
     #161614  → card oscura
     #8C8577  → taupe cálido (texto muted)
     #F2F2F0  → blanco roto (foreground)
     #D0D9D9  → gris azulado
     #A69580  → arena / gold (acento)
   ============================================================ */

/* ===================== RESET / BASE ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
body,
.elementor-page {
  background-color: #0D0D0D;
  color: #F2F2F0;
  font-family: 'DM Sans', sans-serif;
}
.rewdev-card-side,
.rewdev-card-center {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block; /* Importante para que los enlaces tengan el tamaño correcto */
}

/* ===================== UTILIDADES ===================== */
.text-gold   { color: #A69580; }
.border-gold { border-color: #A69580; }
.bg-gold     { background-color: #A69580; }
.text-taupe  { color: #8C8577; }

/* ===================== HEADER ===================== */
.rewdev-header,
header.elementor-location-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent;
  transition: background 0.5s ease, -webkit-backdrop-filter 0.5s ease,
              backdrop-filter 0.5s ease, border-color 0.5s ease;
}

.rewdev-header.scrolled,
header.elementor-location-header.scrolled {
  background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rewdev-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rewdev-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.rewdev-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rewdev-nav ul li a {
  position: relative;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(242, 242, 240, 0.8);
  border: 1px solid transparent;
  border-radius: 9999px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.rewdev-nav ul li a:hover,
.rewdev-nav ul li a.current {
  color: #F2F2F0;
  border-color: rgba(242, 242, 240, 0.4);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

.rewdev-cta-btn {
  padding: 8px 20px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  background: #F2F2F0;
  color: #0D0D0D !important;
  text-decoration: none !important;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.rewdev-cta-btn:hover {
  background: #D0D9D9;
  text-decoration: none;
}

/* ===================== SECCIÓN HERO ===================== */
.rewdev-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background: #0D0D0D;
}

.rewdev-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rewdev-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rewdev-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.6);
}

/* Tira de íconos sociales vertical (derecha) */
.rewdev-social-strip {
  position: absolute;
  right: 20px;
  top: 96px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
}

.rewdev-social-strip a {
  color: rgba(242, 242, 240, 0.7);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.rewdev-social-strip a:hover              { transform: scale(1.1); }
.rewdev-social-strip a.wa:hover           { color: #4ade80; }
.rewdev-social-strip a.li:hover           { color: #38bdf8; }
.rewdev-social-strip a.fb:hover           { color: #60a5fa; }
.rewdev-social-strip a.ig:hover           { color: #f472b6; }

.rewdev-strip-line {
  width: 1px;
  height: 64px;
  background: rgba(242, 242, 240, 0.2);
  border-radius: 9999px;
}

/* Contenido central del hero */
.rewdev-hero-content {
  z-index: 10;
  text-align: center;
  padding: 176px 64px 16px;
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
}

.rewdev-hero-eyebrow {
  color: #A69580;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.rewdev-hero-h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #F2F2F0;
  line-height: 1.15;
  margin-bottom: 24px;
  text-wrap: balance;
}

.rewdev-hero-h1 span { color: #D0D9D9; }

.rewdev-hero-sub {
  color: rgba(242, 242, 240, 0.6);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  max-width: 672px;
  margin: 0 auto 64px;
}

.rewdev-hero-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 9999px;
  border: 1px solid rgba(242, 242, 240, 0.3);
  color: rgba(242, 242, 240, 0.8);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.rewdev-hero-btn:hover {
  border-color: #A69580;
  color: #A69580;
  text-decoration: none;
}

/* Fade inferior del hero */
.rewdev-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  /**background: linear-gradient(to bottom, transparent 0%, #0D0D0D 100%);*/
  pointer-events: none;
  z-index: 5;
}

/* ===================== SLIDER DE SERVICIOS ===================== */

.rewdev-services-section {
  background: #0D0D0D;
  width: 100%;
  padding: 0;
}

.rewdev-services-slider {
  position: relative;
  width: 100%;
  min-height: 50vh;
  /**background: #0D0D0D;*/
}

.rewdev-slider-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 32px 96px 64px;
  position: relative;
  min-height: 400px;
}

.rewdev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid rgba(242, 242, 240, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242, 242, 240, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.rewdev-arrow:hover {
  background: rgba(13, 13, 13, 0.8);
  color: #A69580;
}

.rewdev-arrow-left  { left: 24px; }
.rewdev-arrow-right { right: 24px; }

.rewdev-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex: 1;
}

/* Tarjetas laterales (dim) */
.rewdev-card-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.rewdev-card-side:hover { opacity: 0.6; }

.rewdev-card-side-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #1a1a18;
  border: 1px solid rgba(242, 242, 240, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8C8577;
}

.rewdev-card-side-title {
  color: rgba(242, 242, 240, 0.7);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin: 0;
}

/* Tarjeta central activa */
.rewdev-card-center {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: default;
  width: min(520px, 40vw);
  aspect-ratio: 16 / 9;
  transition: box-shadow 0.3s ease;
}

.rewdev-card-center:hover {
  box-shadow: 0 0 0 2px #A69580, 0 0 30px rgba(166, 149, 128, 0.3);
}

.rewdev-card-glow {
  position: absolute;
  inset: 0;
}

.rewdev-card-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 24px;
}

.rewdev-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(13, 13, 13, 0.8);
  border: 1px solid rgba(242, 242, 240, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A69580;
}

.rewdev-card-title {
  color: #F2F2F0;
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  line-height: 1.2;
  margin: 0 0 8px;
}

.rewdev-card-desc {
  color: #8C8577;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Puntos de navegación del slider */
.rewdev-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-bottom: 32px;
}

.rewdev-dot {
  height: 6px;
  border-radius: 9999px;
  background: rgba(242, 242, 240, 0.3);
  width: 6px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  padding: 0;
}

.rewdev-dot.active {
  width: 24px;
  background: #A69580;
}

.rewdev-dot:hover:not(.active) {
  background: rgba(242, 242, 240, 0.5);
}

/* ===================== FRASES ANIMADAS ===================== */
.rewdev-phrases-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0D0D0D;
  padding: 24px;
}

.rewdev-phrases-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(242, 242, 240, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 242, 240, 1) 1px, transparent 1px);
  background-size: 80px 80px;
}

.rewdev-phrases-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 896px;
  width: 100%;
  perspective: 800px;
}

.rewdev-phrases-eyebrow {
  color: #8C8577;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 500;
}

.rewdev-phrases-display {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .rewdev-phrases-display { height: 128px; }
}

.rewdev-phrases-text {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #F2F2F0;
  transform-style: preserve-3d;
}

.rewdev-phrases-text .text-gold { color: #A69580; }

.rewdev-phrases-text.leaving {
  animation: rewdev-float-down 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.rewdev-phrases-text.entering {
  animation: rewdev-float-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Puntos de frases */
.rewdev-phrase-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.rewdev-phrase-dot {
  height: 4px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  width: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
  padding: 0;
}

.rewdev-phrase-dot.active {
  width: 32px;
  background: #A69580;
}

.rewdev-phrase-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.4);
}

/* ===================== SECCIÓN ABOUT ===================== */
.rewdev-about-section {
  position: relative;
  padding: 96px 0;
  background: #0D0D0D;
  overflow: hidden;
}

.rewdev-about-accent-line {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 128px;
  background: #A69580;
  border-radius: 9999px;
  opacity: 0.6;
}

.rewdev-about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .rewdev-about-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Foto con animación */
.rewdev-about-photo {
  position: relative;
  opacity: 0;
  transform: translateX(-64px);
  transition: opacity 1s ease, transform 1s ease;
}

.rewdev-about-section.visible .rewdev-about-photo {
  opacity: 1;
  transform: translateX(0);
}

.rewdev-about-photo-frame {
  position: relative;
  height: 560px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rewdev-about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rewdev-about-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

/* Tarjetas de estadísticas flotantes */
.rewdev-stat-card {
  position: absolute;
  background: #161614;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.rewdev-stat-card.bottom-right {
  bottom: -24px;
  right: -24px;
}

.rewdev-stat-card.top-left {
  top: -24px;
  left: -24px;
  border-color: rgba(166, 149, 128, 0.2);
}

.rewdev-stat-card .value {
  color: #A69580;
  font-weight: 700;
  font-size: 1.875rem;
  margin: 0 0 4px;
  line-height: 1;
}

.rewdev-stat-card .label {
  color: rgba(242, 242, 240, 0.6);
  font-size: 14px;
  margin: 0;
}

/* Contenido de texto */
.rewdev-about-content {
  opacity: 0;
  transform: translateX(64px);
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}

.rewdev-about-section.visible .rewdev-about-content {
  opacity: 1;
  transform: translateX(0);
}

.rewdev-about-eyebrow {
  color: #A69580;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.rewdev-about-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #F2F2F0;
  line-height: 1.2;
  margin-bottom: 24px;
}

.rewdev-about-h2 span { color: #A69580; }

.rewdev-about-divider {
  width: 48px;
  height: 2px;
  background: #A69580;
  border-radius: 9999px;
  margin-bottom: 32px;
}

.rewdev-about-desc {
  color: rgba(242, 242, 240, 0.7);
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: 300;
}

.rewdev-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.rewdev-about-stat {
  text-align: center;
}

.rewdev-about-stat .value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #F2F2F0;
  margin-bottom: 4px;
  display: block;
}

.rewdev-about-stat .label {
  color: rgba(242, 242, 240, 0.5);
  font-size: 12px;
  line-height: 1.3;
}

.rewdev-about-btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 9999px;
  border: 1px solid rgba(242, 242, 240, 0.3);
  color: #F2F2F0;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.rewdev-about-btn:hover {
  border-color: #A69580;
  color: #A69580;
  background: rgba(166, 149, 128, 0.05);
  text-decoration: none;
}

/* ===================== BANNER MARQUEE ===================== */
.rewdev-wave-banner {
  position: relative;
  padding: 24px 0;
  overflow: hidden;
  background: #161614;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rewdev-wave-top,
.rewdev-wave-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.rewdev-wave-top    { top: 0; }
.rewdev-wave-bottom { bottom: 0; }

.rewdev-wave-top svg,
.rewdev-wave-bottom svg {
  width: 100%;
  height: 20px;
}

.rewdev-marquee-track {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  position: relative;
  z-index: 2;
}

.rewdev-marquee-inner {
  display: flex;
  animation: rewdev-marquee 22s linear infinite;
  will-change: transform;
}

.rewdev-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 32px;
  flex-shrink: 0;
}

.rewdev-marquee-item .icon { color: rgba(166, 149, 128, 0.8); display: flex; }
.rewdev-marquee-item span  { color: rgba(242, 242, 240, 0.8); font-weight: 500; letter-spacing: 0.05em; }
.rewdev-marquee-dot        { color: rgba(242, 242, 240, 0.3); margin: 0 8px; }

/* ===================== FOOTER ===================== */
.rewdev-footer {
  background: #161614;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rewdev-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 32px;
}

.rewdev-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .rewdev-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .rewdev-footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.rewdev-footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 24px;
  display: block;
}

.rewdev-footer-tagline {
  color: rgba(242, 242, 240, 0.5);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 300px;
}

.rewdev-footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rewdev-footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242, 242, 240, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
}

.rewdev-footer-socials a:hover { transform: scale(1.1); border-color: currentColor; }
.rewdev-footer-socials a.wa:hover { color: #4ade80; }
.rewdev-footer-socials a.li:hover { color: #38bdf8; }
.rewdev-footer-socials a.fb:hover { color: #60a5fa; }
.rewdev-footer-socials a.ig:hover { color: #f472b6; }

.rewdev-footer-col h3 {
  color: #F2F2F0;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.rewdev-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rewdev-footer-col ul li a {
  color: rgba(242, 242, 240, 0.5);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.rewdev-footer-col ul li a:hover { color: #A69580; text-decoration: none; }

.rewdev-footer-cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .rewdev-footer-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.rewdev-footer-cta .sub  { color: rgba(242, 242, 240, 0.5); font-size: 14px; margin: 0 0 4px; }
.rewdev-footer-cta .main { color: #F2F2F0; font-weight: 600; font-size: 1.125rem; margin: 0; }

.rewdev-footer-cta-btn {
  padding: 12px 32px;
  border-radius: 9999px;
  background: #F2F2F0;
  color: #0D0D0D !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.3s ease;
  display: inline-block;
  align-self: flex-start;
}

.rewdev-footer-cta-btn:hover { background: #A69580; }

.rewdev-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .rewdev-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.rewdev-footer-bottom p {
  color: rgba(242, 242, 240, 0.3);
  font-size: 12px;
  margin: 0;
}

/* ===================== ANIMACIONES ===================== */
@keyframes rewdev-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes rewdev-float-up {
  0%   { opacity: 0; transform: translateY(40px) rotateX(-20deg); }
  100% { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

@keyframes rewdev-float-down {
  0%   { opacity: 1; transform: translateY(0) rotateX(0deg); }
  100% { opacity: 0; transform: translateY(-40px) rotateX(20deg); }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .rewdev-hero-content  { padding: 140px 24px 16px; }
  .rewdev-slider-inner  { padding: 32px 64px 32px; gap: 24px; }
  .rewdev-card-center   { width: min(340px, 80vw); }
  .rewdev-card-side     { display: none; }
  .rewdev-social-strip  { display: none; }
  .rewdev-about-stats   { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== MENÚ MOBILE ===================== */
.rewdev-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #F2F2F0;
  cursor: pointer;
  padding: 4px;
}

.rewdev-mobile-nav {
  background: rgba(13, 13, 13, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px 24px;
}

.rewdev-mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rewdev-mobile-nav ul li a {
  display: block;
  padding: 12px 0;
  color: rgba(242, 242, 240, 0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s ease;
}

.rewdev-mobile-nav ul li:last-child a { border-bottom: none; }
.rewdev-mobile-nav ul li a:hover { color: #A69580; }

@media (max-width: 768px) {
  .rewdev-mobile-toggle { display: flex; }
  .rewdev-nav,
  .rewdev-cta-btn { display: none; }
}

/* ===================== ELEMENTOR OVERRIDES ===================== */
/* Eliminar padding por defecto de secciones Elementor */
.elementor-section.rewdev-section-hero .elementor-container,
.elementor-section.rewdev-section-services .elementor-container,
.elementor-section.rewdev-section-phrases .elementor-container,
.elementor-section.rewdev-section-about .elementor-container,
.elementor-section.rewdev-section-banner .elementor-container,
.elementor-section.rewdev-section-footer .elementor-container {
  padding: 0;
  max-width: 100%;
}

.elementor-widget-html .rewdev-services-slider,
.elementor-widget-html .rewdev-phrases-section,
.elementor-widget-html .rewdev-wave-banner {
  width: 100%;
}
