/* 
=========================================
China Import Solutions - Professional Theme
Based on Nova Template with Custom Design
Version: 3.0
Author: China Import Solutions Group
=========================================
*/

/* ======= ROOT VARIABLES ======= */
:root {
  /* Professional Color Palette - Naranja/Rojo + Azul Integrados */
  --primary-color: #FF6B35;      /* Naranja Principal - Color del Logo */
  --primary-rgb: 255, 107, 53;
  --primary-hover: #E85D2F;      /* Naranja Oscuro */
  --primary-hover-rgb: 232, 93, 47;
  --primary-dark: #D64E22;       /* Naranja Más Oscuro */
  
  --secondary-color: #DC3545;    /* Azul Complementario */
  --secondary-rgb: 37, 99, 235;
  --secondary-hover: #1E40AF;    /* Azul Oscuro */
  
  --accent-color: #0EA5E9;       /* Azul Cielo (para acentos) */
  --accent-rgb: 14, 165, 233;
  
  /* Colores adicionales para la integración */
  --orange-light: #FF8F6B;       /* Naranja Claro */
  --orange-soft: #FFE4DB;        /* Naranja Muy Suave para fondos */
  --blue-light: #60A5FA;         /* Azul Claro */
  --blue-soft: #DBEAFE;          /* Azul Muy Suave para fondos */
  
  /* Gradientes principales */
  --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #2563EB 100%);
  --gradient-soft: linear-gradient(135deg, #FF8F6B 0%, #60A5FA 100%);
  --gradient-dark: linear-gradient(135deg, #E85D2F 0%, #1E40AF 100%);
  
  --warning-color: #FFC107;      /* Warning Amber */
  --danger-color: #FF6B35;       /* Usando naranja principal */
  --info-color: #0EA5E9;         /* Info Cyan actualizado */
  --success-color: #10B981;      /* Verde Esmeralda */
  --dark-color: #1c1c1e;         /* Rich Black */
  --gray-dark: #48484a;          /* Dark Gray */
  --gray-color: #636366;         /* Medium Gray */
  --gray-light: #94959A;         /* Light Gray - MÁS VISIBLE */
  --light-bg: #f8f9fa;           /* Light Background */
  --white: #ffffff;
  
  /* Typography */
  --font-primary: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --section-padding: 80px;
  --container-padding: 15px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-pill: 50px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======= GLOBAL STYLES ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-dark);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--dark-color);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { 
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2 { 
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
}

h3 { 
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 { 
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 { 
  font-size: 1.25rem;
}

h6 { 
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--gray-color);
}

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

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

/* ======= UTILITIES ======= */
.container {
  max-width: 1200px;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.bg-light {
  background-color: var(--light-bg) !important;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  display: inline-block;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.lead {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--gray-color);
  line-height: 1.8;
}

/* ======= WHATSAPP FLOATING BUTTON ======= */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border-radius: 50%;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: var(--transition-base);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
  color: white;
}

@keyframes whatsappPulse {
  0%, 100% { 
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4), 
                0 0 0 0 rgba(37, 211, 102, 0.4); 
  }
  50% { 
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4), 
                0 0 0 20px rgba(37, 211, 102, 0); 
  }
}

/* ======= HEADER / NAVIGATION ======= */
.fbs__net-navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: var(--transition-base);
}

.fbs__net-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.fbs__net-navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--dark-color) !important;
  transition: var(--transition-base);
}

.navbar-brand:hover {
  transform: translateX(5px);
}

.brand-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--white) 0%, var(--white) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.2);
}

.brand-text strong {
  display: block;
  font-size: 16px;
  line-height: 1;
  color: var(--dark-color);
  letter-spacing: -0.5px;
}

.brand-text span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--gray-color);
  margin-top: 2px;
  letter-spacing: 0.5px;
}

/* Navigation Links */
.navbar-nav {
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link {
  color: var(--gray-dark) !important;
  font-weight: 500;
  padding: 10px 15px !important;
  transition: var(--transition-base);
  position: relative;
  font-size: 14px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition-base);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 30px;
}

/* Google Translate Widget */
#google_translate_element {
  display: inline-block;
  margin-right: 10px;
  flex-shrink: 0;
}

#google_translate_element .goog-te-gadget {
  font-family: var(--font-secondary);
  font-size: 0;
}

#google_translate_element .goog-te-gadget-simple {
  background-color: transparent;
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}



.goog-te-gadget-simple .goog-te-menu-value {
  color: var(--primary-color);
}

.goog-te-gadget-simple .goog-te-menu-value span {
  color: var(--primary-color);
}

/* Mobile Toggle */
.navbar-toggler {
  border: none;
  padding: 4px 8px;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 107, 53, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Offcanvas Menu */
.offcanvas {
  background: white;
}

.offcanvas-header {
  border-bottom: 1px solid var(--light-bg);
}

@media (min-width: 992px) {
  .offcanvas {
    position: static !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
  }
  
  .offcanvas-body {
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  
  .navbar-toggler {
    display: none !important;
  }
}

/* ======= BUTTONS ======= */
.btn {
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition-base);
  text-decoration: none;
  display: inline-block;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
  color: white;
}

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

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
}

.btn-white {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: var(--primary-hover);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}

.btn-success {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  color: white;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

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

/* ======= HERO SECTION ======= */

.hero__v6 {
  background: linear-gradient(135deg, #1D3557 0%, #457B9D 100%);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
}

.hero__v6::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  opacity: 0.3;
}

.hero__v6::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

.trust-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #F77F00; /* naranja acento */
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: fadeInDown 0.8s ease;
}
.trust-section {
  background: linear-gradient(to right, #ffffff, #f8f9fa);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 30px 0;
}

.company-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--primary-color);
  font-size: 14px;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-title span {
  color: #F77F00; /* destacar palabra clave en naranja */
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: #EDF2F4;
  line-height: 1.4;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.125rem;
  color: #EDF2F4;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-description strong {
  color: #06D6A0; /* teal como color de confianza */
  font-weight: 700;
}

/* Hero Stats */
.stat-mini .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #F77F00;
  margin-bottom: 4px;
}

.stat-mini .stat-label {
  font-size: 0.75rem;
  color: #EDF2F4;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Hero Image */
.hero-img {
  position: relative;
  z-index: 1;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-img .img-main {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 400px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

/* Floating Cards Mejoradas */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 
              0 5px 15px rgba(0, 0, 0, 0.08);
  max-width: 260px;
  z-index: 2;
  color: var(--dark-color);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: var(--transition-base);
}

.floating-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2), 
              0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Posicionamiento de cada card */
.floating-card-1 {
  bottom: 30px;
  left: 30px;
  animation: floatCard1 4s ease-in-out infinite;
}

.floating-card-2 {
  top: 30px;
  right: 30px;
  animation: floatCard2 4.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.floating-card-3 {
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  animation: floatCard3 5s ease-in-out infinite;
  animation-delay: 1s;
}

.floating-card-4 {
  bottom: 30px;
  right: 30px;
  animation: floatCard4 4.2s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* Animaciones individuales para cada card */
@keyframes floatCard1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes floatCard2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-1deg); }
}

@keyframes floatCard3 {
  0%, 100% { transform: translateY(-50%) translateX(0px); }
  50% { transform: translateY(-50%) translateX(10px); }
}

@keyframes floatCard4 {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

/* Icon Wrappers con gradientes */
.floating-card .icon-wrapper {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.gradient-orange {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
}

.gradient-blue {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-hover) 100%);
}

.gradient-mixed {
  background: var(--gradient-primary);
}

.gradient-success {
  background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
}

/* Estilos específicos para contenido de cards */
.floating-card .metric-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.floating-card .tiny {
  font-size: 0.7rem;
  line-height: 1.2;
}

.floating-card .text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.floating-card .text-orange {
  color: var(--primary-color) !important;
}

.floating-card .savings-display {
  padding: 10px;
  background: var(--orange-soft);
  border-radius: 8px;
  margin-top: 8px;
}

.floating-card .guarantee-badge {
  padding: 10px;
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--orange-soft) 100%);
  border-radius: 8px;
}

/* Botón dentro de floating card */
.floating-card .btn-sm {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 6px;
  background: var(--gradient-primary);
  border: none;
  color: white;
  transition: var(--transition-base);
}

.floating-card .btn-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive para floating cards */
@media (max-width: 768px) {
  .floating-card-2,
  .floating-card-3,
  .floating-card-4 {
    display: none;
  }
  
  .floating-card-1 {
    bottom: 20px;
    left: 20px;
    max-width: 220px;
  }
}

@media (max-width: 992px) {
  .floating-card-3 {
    display: none;
  }
}


/* ======= PROBLEM/SOLUTION SECTION ======= */
.problem-item,
.solution-item {
  transition: var(--transition-base);
}

.problem-item:hover {
  transform: translateX(5px);
}

.solution-item:hover {
  transform: translateX(5px);
}

/* ======= CLIENT TYPES SECTION ======= */
.client-types {
  background: linear-gradient(180deg, var(--light-bg) 0%, white 100%);
}

.client-card {
  background: white;
  padding: 35px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-base);
  border: 2px solid transparent;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.client-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.client-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.client-card:hover::before {
  transform: scaleX(1);
}

.client-card.featured {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
}

.client-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--secondary-rgb), 0.1) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary-color);
  transition: var(--transition-base);
}

.client-card:hover .client-icon {
  transform: scale(1.1) rotate(5deg);
}

.client-card.featured .client-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.client-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.client-card.featured h3 {
  color: white;
}

/* Parrafo descriptivo de las tarjetas */
.client-card p {
  color: var(--gray-color);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.client-card p.small {
  font-size: 0.9rem;
  color: var(--gray-dark);
  opacity: 0.85;
}

/* Estilo especial para tarjeta featured (Corporaciones) */
.client-card.featured p {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.client-card.featured p.small {
  color: rgba(255, 255, 255, 0.9) !important;
  opacity: 1;
}

.client-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  text-align: left;
}

.client-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-color);
  position: relative;
  padding-left: 25px;
}

.client-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 16px;
}

.client-card.featured .client-features li {
  color: rgba(255, 255, 255, 0.9);
}

.client-card.featured .client-features li::before {
  color: white;
}

/* ======= STATS SECTION ======= */
.stats__v3 .content {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 60px 40px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.2);
}

.stats__v3 .content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* ======= SERVICES SECTION ======= */
.services__v3 {
  background: white;
}

.service-card {
  background: white;
  padding: 35px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(var(--primary-rgb), 0.08);
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-base);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(var(--primary-rgb), 0.3);
  transition: var(--transition-base);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.375rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.service-card p {
  color: var(--gray-color);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.service-features li {
  padding: 5px 0;
  font-size: 14px;
  color: var(--gray-color);
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: var(--transition-base);
}

.service-link:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.service-link i {
  margin-left: 8px;
  transition: var(--transition-base);
}

/* ======= SERVICE DETAIL CARDS ======= */
.service-detail-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.service-detail-card.special-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.service-detail-card.special-gradient h2,
.service-detail-card.special-gradient h4,
.service-detail-card.special-gradient p {
  color: white !important;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--secondary-rgb), 0.05) 100%);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--info-color) 100%);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
}

.inspection-item {
  padding: 15px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.inspection-item:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

/* ======= PROCESS SECTION ======= */
.howitworks__v1 {
  background: var(--light-bg);
}

.howitworks__v1 .step-card {
  padding: 40px 30px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  position: relative;
}

.howitworks__v1 .step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.howitworks__v1 .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(var(--primary-rgb), 0.3);
}

/* ======= TESTIMONIALS SECTION ======= */
.testimonials__v2 {
  background: white;
}

.testimonial {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--light-bg);
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.15);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.testimonial .rating {
  margin-bottom: 20px;
}

.testimonial blockquote {
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-dark);
  font-style: italic;
  margin-bottom: 20px;
  padding: 0;
  border: none;
}

.testimonial blockquote strong {
  color: var(--primary-color);
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--light-bg);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}

/* ======= FAQ SECTION ======= */
.faq__v2 {
  background: var(--light-bg);
}

.faq__v2 .accordion-item {
  background: white;
  border: 2px solid rgba(var(--primary-rgb), 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition-base);
}

.faq__v2 .accordion-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.faq__v2 .accordion-button {
  background: white;
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1.125rem;
  padding: 20px;
  border: none;
  box-shadow: none;
}

.faq__v2 .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq__v2 .accordion-button:not(.collapsed) {
  background: rgba(var(--primary-rgb), 0.05);
  color: var(--primary-color);
}

.faq__v2 .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 24px;
  font-weight: 300;
  transition: var(--transition-base);
}

.faq__v2 .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}

.faq__v2 .accordion-body {
  padding: 0 20px 20px;
  color: var(--gray-dark);
  line-height: 1.8;
}

/* ======= CTA SECTION ======= */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.2);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

.cta-section h2,
.cta-section p {
  position: relative;
  z-index: 1;
}

/* ======= CONTACT SECTION ======= */
.contact__v2 {
  background: white;
}

.contact-info-item {
  transition: var(--transition-base);
}

.contact-info-item:hover {
  transform: translateX(5px);
}

.contact__v2 .icon {
  width: 45px !important;
  height: 45px !important;
  min-width: 45px !important;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--secondary-rgb), 0.1) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
  flex-shrink: 0;
}

.form-wrapper {
  background: white;
  border: 2px solid rgba(var(--primary-rgb), 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.form-wrapper:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(var(--primary-rgb), 0.15);
}

.form-control,
.form-select {
  border: 2px solid rgba(var(--primary-rgb), 0.08);
  border-radius: var(--radius-md);
  padding: 12px 15px;
  font-size: 15px;
  transition: var(--transition-base);
  background: white;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.1);
  outline: none;
}

.form-label {
  color: var(--dark-color);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* ======= FOOTER ======= */
.footer {
  background: var(--dark-color);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
}

.footer h2,
.footer h3,
.footer h4 {
  color: white;
  margin-bottom: 20px;
}

.footer h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-base);
}

.footer a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  padding: 5px 0;
}

.footer .brand-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.credits {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* ======= BACK TO TOP ======= */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition-base);
  z-index: 998;
  box-shadow: 0 5px 20px rgba(var(--primary-rgb), 0.3);
}

#back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.4);
}

/* ======= BADGES ======= */
.badge {
  padding: 6px 12px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

.bg-primary {
  background: var(--primary-color) !important;
}

.bg-success {
  background: var(--success-color) !important;
}

.bg-info {
  background: var(--info-color) !important;
}

.bg-warning {
  background: var(--warning-color) !important;
  color: var(--dark-color) !important;
}

.bg-danger {
  background: var(--danger-color) !important;
}

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  /* Navbar mobile adjustments */
  .fbs__net-navbar {
    padding: 10px 0;
  }
  
  .navbar-brand {
    margin-right: auto;
  }
  
  .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-right: 10px;
  }
  
  .brand-text strong {
    font-size: 14px;
  }
  
  .brand-text span {
    font-size: 9px;
  }
  
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
  }
  
  .navbar-nav .nav-link {
    padding: 12px 0 !important;
    width: 100%;
    font-size: 16px;
  }
  
  .navbar-nav .nav-link::after {
    display: none;
  }
  
  /* Google Translate in mobile menu */
  .offcanvas-body #google_translate_element {
    margin-bottom: 15px;
    margin-right: 0;
  }
  
  /* Mobile menu toggle button */
  .navbar-toggler {
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    padding: 6px 10px;
    border-radius: var(--radius-md);
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.2);
  }
}


@media (max-width: 768px) {
  :root {
    --section-padding: 40px;
    --container-padding: 15px;
  }
  
  /* Navbar adjustments for mobile */
  .fbs__net-navbar {
    padding: 8px 0;
  }
  
  .fbs__net-navbar .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .navbar-brand {
    flex-shrink: 0;
  }
  
  .brand-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
    margin-right: 8px;
  }
  
  .brand-text strong {
    font-size: 13px;
    letter-spacing: -0.3px;
  }
  
  .brand-text span {
    font-size: 8px;
    letter-spacing: 0.3px;
  }
  
  /* Hide CTA button on very small screens */
  .btn.d-none.d-sm-inline-block {
    display: none !important;
  }
  
  /* Google Translate compact */
  #google_translate_element {
    transform: scale(0.85);
    transform-origin: right center;
  }
  
  /* Mobile offcanvas menu */
  .offcanvas {
    max-width: 280px !important;
  }
  
  .offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid var(--light-bg);
  }
  
  .offcanvas-body {
    padding: 20px;
  }
  
  .hero__v6 {
    padding-top: 80px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .stat-mini {
    text-align: center;
  }
  
  .stat-mini .stat-number {
    font-size: 1.5rem;
  }
  
  .floating-card {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
  
  #back-to-top {
    right: 80px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .service-card,
  .client-card {
    margin-bottom: 20px;
  }
  
  .stats__v3 .content {
    padding: 40px 20px;
  }
  
  .stat-item h3 {
    font-size: 2rem;
  }
  
  .company-badge {
    font-size: 12px;
    padding: 8px 12px;
  }
  
  .service-detail-card {
    padding: 2rem 1.5rem;
  }
  
  .form-wrapper {
    padding: 2rem 1.5rem !important;
  }
}


@media (max-width: 576px) {
  /* Extra small screens - smartphones */
  .fbs__net-navbar {
    padding: 6px 0;
  }
  
  .fbs__net-navbar .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .brand-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
    margin-right: 8px;
  }
  
  .brand-text strong {
    font-size: 12px;
    letter-spacing: -0.5px;
  }
  
  .brand-text span {
    font-size: 7px;
    letter-spacing: 0.2px;
  }
  
  /* Google Translate more compact */
  #google_translate_element {
    transform: scale(0.75);
    transform-origin: right center;
    margin-right: 5px;
  }
  
  .navbar-toggler {
    padding: 4px 8px;
    font-size: 1.1rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .stat-mini {
    margin-bottom: 1rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    margin-bottom: 10px;
  }
  
  .btn-lg {
    padding: 12px 24px;
  }
  
  .company-badge {
    padding: 8px 16px;
    font-size: 11px;
    margin-bottom: 8px;
  }
  
  /* Adjust WhatsApp button position on very small screens */
  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 22px;
    bottom: 15px;
    right: 15px;
  }
  
  #back-to-top {
    right: 70px;
    bottom: 15px;
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

  
  .testimonial {
    min-height: auto;
  }
  
  .cta-section {
    padding: 40px 20px;
    text-align: center;
  }
}

/* ======= PRINT STYLES ======= */
@media print {
  .whatsapp-float,
  #back-to-top,
  .fbs__net-navbar,
  .footer {
    display: none !important;
  }
  
  .section {
    page-break-inside: avoid;
  }
}

/* ======= CUSTOM SCROLLBAR ======= */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

/* ======= LOADING ANIMATION ======= */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(var(--primary-rgb), 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ======= ACCESSIBILITY ======= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ======= OPERACIONES INTERNACIONALES SECTION ======= */
.operations-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.operations-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
  border-color: var(--primary-color);
}

.operations-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.operations-card:hover::before {
  transform: scaleX(1);
}

.country-flag {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.country-name {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.service-tag {
  background: linear-gradient(135deg, var(--orange-soft) 0%, var(--blue-soft) 100%);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.service-tag:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.05);
}

.operations-cta {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
  border: 2px dashed rgba(255, 107, 53, 0.3);
  transition: all 0.4s ease;
}

.operations-cta:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .operations-card {
    padding: 1.5rem;
  }
  
  .country-flag {
    width: 60px;
    height: 60px;
  }
  
  .country-name {
    font-size: 1.1rem;
  }
  
  .service-tag {
    font-size: 0.8rem;
    padding: 0.25rem 0.6rem;
  }
}

@media (max-width: 576px) {
  .operations-card {
    padding: 1.25rem;
  }
  
  .services-list {
    gap: 0.3rem;
  }
  
  .service-tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
  }
}
/* ======= INDUSTRIAS SECTION ======= */
.industry-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255, 107, 53, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.2);
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  transition: all 0.4s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.industry-content {
  flex: 1;
  text-align: center;
}

.industry-title {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

.products-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.product-item {
  color: var(--gray-color);
  font-size: 0.9rem;
  text-align: left;
  padding-left: 0.5rem;
}

.industry-benefit {
  background: rgba(16, 185, 129, 0.1);
  padding: 0.6rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--success-color);
  margin-bottom: 1rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.industry-stats {
  margin-bottom: 1.5rem;
}

.industry-cta {
  margin-top: auto;
}

.btn-industry {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  justify-content: center;
}

.btn-industry:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--secondary-hover) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
  color: var(--white);
}

.industries-bottom-cta {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
  border: 2px dashed rgba(255, 107, 53, 0.2);
  transition: all 0.4s ease;
}

.industries-bottom-cta:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(37, 99, 235, 0.08) 100%);
  border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .industry-card {
    padding: 1.5rem;
  }
  
  .industry-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .industry-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .industry-card {
    padding: 1.25rem;
  }
  
  .industry-icon {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
  
  .product-item {
    font-size: 0.85rem;
  }
  
  .btn-industry {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .products-list {
    gap: 0.3rem;
  }
  
  .product-item {
    font-size: 0.8rem;
  }
  
  .industry-benefit {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }
}
/* ======= TRUST BADGES SECTION ======= */
.trust-badges-section {
  border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  text-align: left;
  height: 100%;
}

.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
  border-color: var(--primary-color);
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.badge-content {
  flex: 1;
  line-height: 1.2;
}

.badge-number {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.1rem;
}

.badge-text {
  font-size: 0.8rem;
  color: var(--gray-color);
  font-weight: 500;
  line-height: 1.1;
}

/* ======= HERO TRUST BADGE (Alternativa destacada) ======= */
.hero-trust-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}

.hero-badge-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
  border: 2px solid rgba(255, 107, 53, 0.1);
}

.hero-badge-seal {
  position: relative;
  width: 60px;
  height: 60px;
}

.seal-outer {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 5px rgba(255, 107, 53, 0.5); }
  to { box-shadow: 0 0 20px rgba(255, 107, 53, 0.8); }
}

.seal-inner {
  width: 85%;
  height: 85%;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seal-content {
  text-align: center;
  color: var(--primary-color);
}

.seal-years {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.seal-text {
  font-size: 0.6rem;
  font-weight: 600;
  line-height: 1;
}

.seal-subtitle {
  font-size: 0.5rem;
  font-weight: 500;
  color: var(--gray-color);
  line-height: 1;
}

.seal-ribbon {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  font-size: 0.6rem;
  font-weight: 600;
  white-space: nowrap;
}

.hero-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-badge-text strong {
  font-size: 1rem;
  color: var(--dark-color);
  font-weight: 700;
}

.hero-badge-text span {
  font-size: 0.8rem;
  color: var(--gray-color);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
  .trust-badge {
    padding: 0.75rem;
    gap: 0.5rem;
  }
  
  .badge-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .badge-number {
    font-size: 1rem;
  }
  
  .badge-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .hero-trust-badge {
    position: static;
    margin: 1rem auto;
    display: flex;
    justify-content: center;
  }
  
  .hero-badge-container {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }
  
  .hero-badge-seal {
    width: 50px;
    height: 50px;
  }
  
  .seal-years {
    font-size: 1.2rem;
  }
  
  .hero-badge-text strong {
    font-size: 0.9rem;
  }
  
  .hero-badge-text span {
    font-size: 0.7rem;
  }
}

@media (max-width: 576px) {
  .trust-badge {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
  }
  
  .badge-content {
    text-align: center;
  }
}
/* ======= VIDEOS SECTION ======= */
.videos__section {
  background: var(--light-bg);
}

.video-tabs-container {
  max-width: 800px;
  margin: 0 auto;
}

.video-tabs {
  background: var(--white);
  border-radius: 50px;
  padding: 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.video-tabs .nav-link {
  border-radius: 25px;
  border: none;
  background: transparent;
  color: var(--gray-color);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.video-tabs .nav-link:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
}

.video-tabs .nav-link.active {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.video-content {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.video-wrapper {
  width: 100%;
}

.video-container {
  position: relative;
}

.video-thumbnail {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.video-poster {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover .video-poster {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 53, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.play-button:hover {
  background: var(--primary-color);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.play-button i {
  font-size: 2rem;
  color: var(--white);
  margin-left: 3px;
}

.video-duration {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0,0,0,0.8);
  color: var(--white);
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
}

.video-info {
  padding-left: 2rem;
}

.video-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.video-description {
  font-size: 1rem;
  color: var(--gray-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.video-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.video-highlights li {
  padding: 0.5rem 0;
  color: var(--gray-color);
  font-size: 0.95rem;
}

.videos-cta {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
  border: 2px dashed rgba(255, 107, 53, 0.3);
  transition: all 0.4s ease;
}

.videos-cta:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
  border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .video-info {
    padding-left: 0;
    margin-top: 2rem;
  }
  
  .video-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .video-tabs .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  .video-content {
    padding: 1.5rem;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
  }
  
  .play-button i {
    font-size: 1.5rem;
  }
  
  .video-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .video-tabs {
    padding: 0.3rem;
  }
  
  .video-tabs .nav-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .video-tabs .nav-link i {
    display: none;
  }
}

