/*
Theme Name: World Autos Elite Child
Theme URI: https://worldautoselite.com
Description: Tema hijo personalizado para World Autos Elite - Importación de vehículos de lujo
Author: World Autos Elite
Author URI: https://worldautoselite.com
Template: astra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wae-child
*/

/* ========================================
   VARIABLES GLOBALES - MODIFICAR AQUÍ
   ======================================== */

:root {
  /* COLORES PRINCIPALES */
  --color-primary: #D4A843;        /* Dorado principal */
  --color-secondary: #B87333;      /* Cobre/dorado oscuro */
  --color-accent: #E8C94A;         /* Dorado claro */
  
  /* COLORES DE TEXTO */
  --color-text-light: #FFFFFF;     /* Texto blanco */
  --color-text-grey: #C8D0D8;      /* Texto gris plateado */
  --color-text-dark: #000000;      /* Texto negro */
  
  /* FONDOS */
  --color-bg-dark: #000000;        /* Fondo negro principal */
  --color-bg-darker: #0D0D0D;      /* Fondo negro secundario */
  --color-bg-darkest: #1A1A1A;     /* Fondo negro terciario */
  
  /* TIPOGRAFÍAS */
  --font-headings: 'Rajdhani', sans-serif;      /* Títulos */
  --font-body: 'Inter', sans-serif;              /* Cuerpo */
  --font-special: 'Montserrat', sans-serif;      /* Subtítulos */
  
  /* TAMAÑOS DE FUENTE BASE */
  --fs-base: 16px;
  --fs-small: 14px;
  --fs-large: 18px;
  --fs-h1: 48px;
  --fs-h2: 36px;
  --fs-h3: 28px;
  --fs-h4: 24px;
  
  /* ESPACIADOS */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 64px;
  
  /* BORDES Y SOMBRAS */
  --border-radius: 8px;
  --box-shadow-light: 0 2px 8px rgba(212, 168, 67, 0.15);
  --box-shadow-medium: 0 4px 16px rgba(212, 168, 67, 0.25);
  --box-shadow-heavy: 0 8px 32px rgba(212, 168, 67, 0.35);
  
  /* TRANSICIONES */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* ANCHO MÁXIMO DEL CONTENEDOR */
  --container-width: 1200px;
}

/* ========================================
   IMPORTAR TIPOGRAFÍAS
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* ========================================
   ESTILOS GLOBALES
   ======================================== */

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-text-light);
  background-color: var(--color-bg-dark);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Títulos */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  color: var(--color-text-light);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

/* Enlaces */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

/* Botones Globales */
.wae-btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-special);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
}

.wae-btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-text-dark);
  border-color: var(--color-primary);
}

.wae-btn-primary:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-medium);
}

.wae-btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.wae-btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-text-dark);
}

.wae-btn-whatsapp {
  background: #25D366;
  color: white;
  border: none;
}

.wae-btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
}

/* ========================================
   CONTENEDOR GLOBAL
   ======================================== */

.wae-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ========================================
   GRADIENTES DORADOS
   ======================================== */

.wae-gradient-gold {
  background: linear-gradient(135deg, #D4A843 0%, #B87333 50%, #E8C94A 100%);
}

.wae-gradient-overlay {
  background: linear-gradient(135deg, 
    rgba(212, 168, 67, 0.9) 0%, 
    rgba(184, 115, 51, 0.7) 50%, 
    rgba(232, 201, 74, 0.9) 100%
  );
}

/* ========================================
   BADGES PERSONALIZADOS
   ======================================== */

.wae-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.wae-badge-dubai {
  background: linear-gradient(135deg, #D4A843, #B87333);
  color: #000;
}

.wae-badge-alemania {
  background: linear-gradient(135deg, #000, #D00);
  color: #FFD700;
}

.wae-badge-nuevo {
  background: #00D084;
  color: white;
}

.wae-badge-reservado {
  background: #FF6B6B;
  color: white;
}

.wae-badge-entregado {
  background: #51CF66;
  color: white;
}

/* ========================================
   CARDS DE VEHÍCULOS
   ======================================== */

.wae-vehicle-card {
  background: var(--color-bg-darker);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border: 1px solid rgba(212, 168, 67, 0.2);
}

.wae-vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-heavy);
  border-color: var(--color-primary);
}

.wae-vehicle-card-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.wae-vehicle-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.wae-vehicle-card:hover .wae-vehicle-card-image img {
  transform: scale(1.1);
}

.wae-vehicle-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.wae-vehicle-card-content {
  padding: var(--spacing-md);
}

.wae-vehicle-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--color-text-light);
}

.wae-vehicle-card-specs {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  font-size: var(--fs-small);
  color: var(--color-text-grey);
}

.wae-vehicle-card-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.wae-vehicle-card-savings {
  font-size: 14px;
  color: #51CF66;
  margin-bottom: var(--spacing-md);
}

.wae-vehicle-card-actions {
  display: flex;
  gap: var(--spacing-sm);
}

/* ========================================
   SECCIÓN HERO
   ======================================== */

.wae-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wae-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.wae-hero-bg img,
.wae-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wae-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2;
}

.wae-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--spacing-md);
}

.wae-hero-logo {
  max-width: 180px;
  margin-bottom: var(--spacing-lg);
}

.wae-hero-title {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wae-hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-text-grey);
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.wae-hero-cta {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.wae-hero-trust {
  margin-top: var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  font-size: 14px;
  color: var(--color-text-grey);
}

.wae-hero-stars {
  color: #FFD700;
}

/* ========================================
   BARRA DE CONFIANZA (TRUST BAR)
   ======================================== */

.wae-trust-bar {
  background: var(--color-bg-darker);
  padding: var(--spacing-lg) 0;
  border-top: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

.wae-trust-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  text-align: center;
}

.wae-trust-item {
  padding: var(--spacing-md);
}

.wae-trust-icon {
  font-size: 48px;
  margin-bottom: var(--spacing-sm);
}

.wae-trust-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-headings);
  margin-bottom: var(--spacing-xs);
}

.wae-trust-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-grey);
}

/* ========================================
   RESPONSIVE MÓVIL
   ======================================== */

@media (max-width: 768px) {
  :root {
    --fs-h1: 36px;
    --fs-h2: 28px;
    --fs-h3: 24px;
    --fs-h4: 20px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
  }
  
  .wae-hero-title {
    font-size: 36px;
  }
  
  .wae-hero-subtitle {
    font-size: 16px;
  }
  
  .wae-hero-cta {
    flex-direction: column;
  }
  
  .wae-btn {
    width: 100%;
    padding: 16px;
  }
  
  .wae-trust-items {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
  
  .wae-vehicle-card-actions {
    flex-direction: column;
  }
}

/* ========================================
   BARRA STICKY MÓVIL (WHATSAPP + LLAMAR)
   ======================================== */

.wae-mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: 12px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

.wae-mobile-sticky-buttons {
  display: flex;
  gap: 12px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.wae-mobile-sticky-buttons a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  color: var(--color-text-dark);
  background: rgba(255, 255, 255, 0.95);
  transition: all var(--transition-fast);
}

.wae-mobile-sticky-buttons a:hover {
  background: white;
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .wae-mobile-sticky-bar {
    display: block;
  }
  
  /* Añadir padding al body para compensar la barra fija */
  body {
    padding-bottom: 70px;
  }
}

/* ========================================
   ANIMACIONES
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.wae-animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.wae-animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ========================================
   UTILIDADES
   ======================================== */

.wae-text-center { text-align: center; }
.wae-text-left { text-align: left; }
.wae-text-right { text-align: right; }

.wae-mb-sm { margin-bottom: var(--spacing-sm); }
.wae-mb-md { margin-bottom: var(--spacing-md); }
.wae-mb-lg { margin-bottom: var(--spacing-lg); }
.wae-mb-xl { margin-bottom: var(--spacing-xl); }

.wae-mt-sm { margin-top: var(--spacing-sm); }
.wae-mt-md { margin-top: var(--spacing-md); }
.wae-mt-lg { margin-top: var(--spacing-lg); }
.wae-mt-xl { margin-top: var(--spacing-xl); }

.wae-p-sm { padding: var(--spacing-sm); }
.wae-p-md { padding: var(--spacing-md); }
.wae-p-lg { padding: var(--spacing-lg); }
.wae-p-xl { padding: var(--spacing-xl); }

.wae-color-primary { color: var(--color-primary); }
.wae-color-secondary { color: var(--color-secondary); }
.wae-color-accent { color: var(--color-accent); }

.wae-bg-dark { background-color: var(--color-bg-dark); }
.wae-bg-darker { background-color: var(--color-bg-darker); }
.wae-bg-darkest { background-color: var(--color-bg-darkest); }

/* ============================================
   CALCULADORA DE AHORRO - ESTILOS
   ============================================ */

.wae-calculadora-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.wae-calc-field input[type="number"]:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.wae-calc-radio-group input[type="radio"] {
    accent-color: var(--color-primary);
}

#wae-calc-calcular {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

#wae-calc-calcular:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 168, 67, 0.3);
}

.wae-calculadora-resultado {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .wae-calc-radio-group {
        flex-direction: column;
    }
    
    .wae-calc-ahorro-amount {
        font-size: 36px !important;
    }
}

/* Ajustar espaciado sección confianza */
.elementor-section.wae-trust-section {
    min-height: auto !important;
    padding: 60px 20px !important;
}

.elementor-widget-icon-box .elementor-icon-box-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.elementor-widget-icon-box .elementor-icon-box-icon {
    margin-bottom: 10px !important;
}

.elementor-widget-icon-box .elementor-icon-box-content {
    text-align: center;
}

/* ============================================
   FIX RESPONSIVE MÓVIL - CONTENIDO CENTRADO
   ============================================ */

/* Evitar overflow horizontal en toda la web */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ============================================
   SECCIÓN: TESTIMONIOS
   ============================================ */

.wae-testimonios-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid de cards */
.wae-testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Card individual */
.wae-testimonio-card {
    background: #1A1A1A;
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.wae-testimonio-card:hover {
    border-color: #D4A843;
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.15);
    transform: translateY(-5px);
}

/* Estrellas */
.wae-testimonio-estrellas {
    display: flex;
    gap: 2px;
    font-size: 16px;
}

/* Texto */
.wae-testimonio-texto {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #CCCCCC;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    flex-grow: 1;
}

/* Autor */
.wae-testimonio-autor {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 168, 67, 0.2);
}

/* Avatar */
.wae-testimonio-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4A843, #B87333);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
    overflow: hidden;
}

.wae-testimonio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info del autor */
.wae-testimonio-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wae-testimonio-info strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

.wae-testimonio-info span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #999999;
}

.wae-testimonio-vehiculo {
    color: #D4A843 !important;
    font-size: 12px !important;
}

/* Google Reviews CTA */
.wae-google-reviews-cta {
    text-align: center;
    padding: 40px;
    background: #111111;
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 12px;
}

.wae-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.wae-google-logo {
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #4285F4;
    font-family: 'Roboto', sans-serif;
}

.wae-google-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.wae-google-info strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
}

.wae-google-info span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #999999;
}

.wae-google-reviews-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #CCCCCC;
    margin: 0 0 20px 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .wae-testimonios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .wae-testimonios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wae-testimonio-card {
        padding: 20px;
    }

    .wae-google-badge {
        flex-direction: column;
        text-align: center;
    }

    .wae-google-info {
        align-items: center;
    }

    .wae-google-reviews-cta {
        padding: 25px 15px;
    }
}

/* ============================================
   SECCIÓN: CONTACTO
   ============================================ */

/* Formulario */
.wae-contacto-form-wrapper {
    background: #1A1A1A;
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 12px;
    padding: 40px;
}

.wae-contacto-form-wrapper h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 8px 0;
}

.wae-contacto-form-wrapper > p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #CCCCCC;
    margin: 0 0 30px 0;
}

/* Campos del formulario */
.wae-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wae-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.wae-form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #CCCCCC;
}

.wae-form-group input,
.wae-form-group select,
.wae-form-group textarea {
    background: #0D0D0D;
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
    width: 100%;
}

.wae-form-group input:focus,
.wae-form-group select,
.wae-form-group textarea:focus {
    border-color: #D4A843;
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.wae-form-group select option {
    background: #1A1A1A;
    color: #FFFFFF;
}

.wae-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.wae-form-check label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #999;
}

.wae-form-check a {
    color: #D4A843;
    text-decoration: underline;
}

.wae-btn-full {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    margin-top: 10px;
}

.wae-form-alternative {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-top: 15px;
}

.wae-form-alternative a {
    color: #D4A843;
    text-decoration: none;
    font-weight: 600;
}

/* Datos de contacto */
.wae-datos-contacto-wrapper {
    padding: 0 0 0 30px;
}

.wae-datos-contacto-wrapper h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 8px 0;
}

.wae-datos-contacto-wrapper > p {
    font-size: 15px;
    color: #CCCCCC;
    margin: 0 0 25px 0;
}

/* Items de contacto */
.wae-contacto-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 10px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #1A1A1A;
}

.wae-contacto-item:hover {
    border-color: #D4A843;
    background: rgba(212, 168, 67, 0.05);
    transform: translateX(5px);
}

.wae-contacto-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.wae-contacto-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
}

.wae-contacto-info strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

.wae-contacto-info span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #999999;
}

.wae-contacto-arrow {
    font-size: 20px;
    color: #D4A843;
    flex-shrink: 0;
}

/* Redes sociales */
.wae-contacto-redes {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 168, 67, 0.2);
}

.wae-contacto-redes p {
    font-size: 14px;
    color: #999;
    margin: 0 0 12px 0;
}

.wae-contacto-redes-links {
    display: flex;
    gap: 12px;
}

.wae-red-social {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 168, 67, 0.3);
    color: #CCCCCC;
}

.wae-red-social:hover {
    border-color: #D4A843;
    color: #D4A843;
    background: rgba(212, 168, 67, 0.05);
}

/* Horario */
.wae-contacto-horario {
    margin-top: 20px;
    padding: 20px;
    background: #111111;
    border-radius: 10px;
    border: 1px solid rgba(212, 168, 67, 0.15);
}

.wae-contacto-horario h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #D4A843;
    margin: 0 0 15px 0;
}

.wae-contacto-horario table {
    width: 100%;
}

.wae-contacto-horario td {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #CCCCCC;
    padding: 6px 0;
    border-bottom: 1px solid rgba(212, 168, 67, 0.1);
}

.wae-contacto-horario td:last-child {
    text-align: right;
    color: #FFFFFF;
    font-weight: 600;
}

/* Mapa */
.wae-mapa-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.wae-mapa-info {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.wae-mapa-dato {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wae-mapa-dato span:first-child {
    font-size: 28px;
}

.wae-mapa-dato div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wae-mapa-dato strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

.wae-mapa-dato span {
    font-size: 14px;
    color: #999999;
}

.wae-mapa-embed {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 168, 67, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .wae-datos-contacto-wrapper {
        padding: 30px 0 0 0;
    }
}

@media (max-width: 767px) {
    .wae-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .wae-contacto-form-wrapper {
        padding: 25px 20px;
    }

    .wae-contacto-item:hover {
        transform: none;
    }

    .wae-mapa-info {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
}

/* ============================================
   SECCIÓN: CÓMO FUNCIONA - PROCESO DE PASOS
   ============================================ */

.wae-proceso-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* ---- Cada paso ---- */
.wae-paso-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    margin-bottom: 0;
    align-items: flex-start;
}

/* ---- Número y línea vertical ---- */
.wae-paso-numero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wae-paso-numero {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D4A843, #E5B954);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

.wae-paso-linea {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #D4A843, rgba(212, 168, 67, 0.1));
    margin-top: 8px;
}

/* ---- Contenido del paso ---- */
.wae-paso-contenido {
    background: #1A1A1A;
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.wae-paso-contenido:hover {
    border-color: #D4A843;
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.15);
    transform: translateX(5px);
}

.wae-paso-emoji {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.wae-paso-titulo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 12px 0;
}

.wae-paso-descripcion {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #CCCCCC;
    line-height: 1.7;
    margin: 0 0 15px 0;
}

.wae-paso-detalle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 14px;
    color: #D4A843;
    font-weight: 600;
}

/* ---- CTA Final ---- */
.wae-proceso-cta {
    text-align: center;
    background: linear-gradient(135deg, #1A1A1A, #111111);
    border: 2px solid #D4A843;
    border-radius: 16px;
    padding: 50px 40px;
    margin-top: 40px;
}

.wae-proceso-cta h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 12px 0;
}

.wae-proceso-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #CCCCCC;
    margin: 0 0 30px 0;
}

.wae-proceso-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .wae-paso-item {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }

    .wae-paso-numero {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .wae-paso-linea {
        height: 40px;
    }

    .wae-paso-contenido {
        padding: 20px;
    }

    .wae-paso-titulo {
        font-size: 20px;
    }

    .wae-paso-descripcion {
        font-size: 15px;
    }

    .wae-proceso-cta {
        padding: 30px 20px;
    }

    .wae-proceso-cta h3 {
        font-size: 28px;
    }

    .wae-proceso-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .wae-paso-contenido:hover {
        transform: none;
    }
}

/* ============================================
   SECCIÓN: TESTIMONIOS
   ============================================ */

.wae-testimonios-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid de cards */
.wae-testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Card individual */
.wae-testimonio-card {
    background: #1A1A1A;
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.wae-testimonio-card:hover {
    border-color: #D4A843;
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.15);
    transform: translateY(-5px);
}

/* Estrellas */
.wae-testimonio-estrellas {
    display: flex;
    gap: 2px;
    font-size: 16px;
}

/* Texto */
.wae-testimonio-texto {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #CCCCCC;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    flex-grow: 1;
}

/* Autor */
.wae-testimonio-autor {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 168, 67, 0.2);
}

/* Avatar */
.wae-testimonio-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4A843, #B87333);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
    overflow: hidden;
}

.wae-testimonio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info del autor */
.wae-testimonio-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wae-testimonio-info strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

.wae-testimonio-info span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #999999;
}

.wae-testimonio-vehiculo {
    color: #D4A843 !important;
    font-size: 12px !important;
}

/* Google Reviews CTA */
.wae-google-reviews-cta {
    text-align: center;
    padding: 40px;
    background: #111111;
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 12px;
}

.wae-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.wae-google-logo {
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #4285F4;
    font-family: 'Roboto', sans-serif;
}

.wae-google-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.wae-google-info strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
}

.wae-google-info span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #999999;
}

.wae-google-reviews-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #CCCCCC;
    margin: 0 0 20px 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .wae-testimonios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .wae-testimonios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wae-testimonio-card {
        padding: 20px;
    }

    .wae-google-badge {
        flex-direction: column;
        text-align: center;
    }

    .wae-google-info {
        align-items: center;
    }

    .wae-google-reviews-cta {
        padding: 25px 15px;
    }
}
