/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #F8FAFC;
  color: #334155;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER MODERNO */
header {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  color: #0A2463;
  gap: 10px;
}

.logo i {
  color: #FF6B35;
  font-size: 28px;
}

nav a {
  text-decoration: none;
  margin-left: 30px;
  color: #334155;
  font-weight: 600;
  transition: 0.3s;
  font-size: 15px;
  position: relative;
}

nav a:hover, nav a.active {
  color: #0A2463;
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FF6B35;
}

.btn-small {
  background: #FF6B35;
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.btn-small:hover {
  background: #0A2463;
  transform: translateY(-2px);
}

/* HERO MODERNO */
.hero-moderno {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #F8FAFC 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.badge {
  background: rgba(255,107,53,0.1);
  color: #FF6B35;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #0A2463;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight {
  color: #FF6B35;
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 18px;
  color: #64748B;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #0A2463;
}

.stat-label {
  font-size: 14px;
  color: #64748B;
}

.hero-ctas {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #0A2463;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #FF6B35;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,107,53,0.3);
}

.btn-outline {
  background: transparent;
  color: #0A2463;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #0A2463;
  transition: 0.3s;
}

.btn-outline:hover {
  border-color: #FF6B35;
  color: #FF6B35;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  height: 400px;
}

.hero-circle {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(10,36,99,0.1) 0%, rgba(255,107,53,0.1) 100%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  color: #FF6B35;
  font-size: 20px;
}

.card-1 {
  top: 20%;
  right: 20%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 30%;
  left: 10%;
  animation-delay: 0.5s;
}

.card-3 {
  top: 50%;
  right: 10%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* SERVICIOS GRID (estilo flyer) */
.servicios-grid {
  padding: 80px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0A2463;
  margin-bottom: 15px;
}

.section-header p {
  color: #64748B;
  font-size: 18px;
}

.grid-servicios {
  display: grid;
  gap: 30px;
}

.servicio-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px;
  background: #F8FAFC;
  border-radius: 20px;
  transition: 0.3s;
}

.servicio-item:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.numero {
  font-size: 48px;
  font-weight: 800;
  color: #FF6B35;
  opacity: 0.5;
  line-height: 1;
}

.servicio-content h3 {
  font-size: 24px;
  color: #0A2463;
  margin-bottom: 10px;
}

.servicio-content h3 i {
  color: #FF6B35;
  margin-right: 10px;
}

.servicio-content p {
  color: #64748B;
  font-size: 16px;
}

/* PROCESO TIMELINE */
.proceso-section {
  padding: 80px 0;
  background: #F8FAFC;
}

.proceso-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.proceso-timeline::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #FF6B35;
  opacity: 0.3;
}

.proceso-step {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #0A2463;
  color: white;
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(10,36,99,0.2);
}

.step-content {
  flex: 1;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step-content h3 {
  color: #0A2463;
  margin-bottom: 10px;
  font-size: 20px;
}

.step-content p {
  color: #64748B;
}

/* PRECIO SECTION */
.precio-section {
  padding: 60px 0;
}

.precio-card {
  background: linear-gradient(135deg, #0A2463 0%, #1A3A7A 100%);
  color: white;
  padding: 50px;
  border-radius: 30px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(10,36,99,0.3);
}

.precio-badge {
  background: rgba(255,255,255,0.2);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.precio-main {
  margin: 20px 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.precio-cantidad {
  font-size: 64px;
  font-weight: 800;
}

.precio-mes {
  font-size: 20px;
  opacity: 0.8;
}

.precio-desc {
  opacity: 0.8;
  margin-bottom: 20px;
}

.precio-incluye {
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 30px;
  font-weight: 600;
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

/* CONTACTO SECCION */
.contacto-seccion {
  padding: 80px 0;
  background: white;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contacto-info h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0A2463;
  margin-bottom: 15px;
}

.contacto-frase {
  font-size: 20px;
  color: #64748B;
  margin-bottom: 40px;
}

.contacto-detalles {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contacto-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contacto-item i {
  width: 50px;
  height: 50px;
  background: #F8FAFC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B35;
  font-size: 20px;
}

.contacto-item div {
  display: flex;
  flex-direction: column;
}

.contacto-label {
  font-size: 14px;
  color: #64748B;
}

.contacto-valor {
  font-size: 18px;
  font-weight: 600;
  color: #0A2463;
}

.cta-burbuja {
  background: #F8FAFC;
  padding: 40px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.cta-burbuja i {
  font-size: 60px;
  color: #FF6B35;
  margin-bottom: 20px;
}

.cta-burbuja h3 {
  font-size: 24px;
  color: #0A2463;
  margin-bottom: 30px;
}

/* HERO PAGINA */
.hero-pagina {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, #F8FAFC 0%, #ffffff 100%);
}

.hero-pagina h1 {
  font-size: 48px;
  font-weight: 800;
  color: #0A2463;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 20px;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto;
}

/* METRICAS */
.metricas-section {
  padding: 40px 0;
}

.metricas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.metrica-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.metrica-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.metrica-card i {
  font-size: 30px;
  color: #FF6B35;
  margin-bottom: 15px;
}

.metrica-numero {
  font-size: 32px;
  font-weight: 800;
  color: #0A2463;
  display: block;
}

.metrica-label {
  color: #64748B;
  font-size: 14px;
}

/* SERVICIOS ACORDEON */
.servicios-detalle {
  padding: 60px 0;
}

.seccion-titulo {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0A2463;
  margin-bottom: 50px;
}

.servicios-acordeon {
  max-width: 800px;
  margin: 0 auto;
}

.servicio-bloque {
  background: white;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  overflow: hidden;
}

.servicio-header {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.servicio-header:hover {
  background: #F8FAFC;
}

.header-izq {
  display: flex;
  align-items: center;
  gap: 15px;
}

.servicio-num {
  font-size: 24px;
  font-weight: 800;
  color: #FF6B35;
  opacity: 0.5;
}

.servicio-header h3 {
  font-size: 18px;
  color: #0A2463;
}

.servicio-header h3 i {
  color: #FF6B35;
  margin-right: 10px;
}

.servicio-body {
  padding: 0 25px 20px 85px;
  display: none;
}

.servicio-bloque.active .servicio-body {
  display: block;
}

.servicio-body p {
  margin-bottom: 20px;
  color: #64748B;
}

.servicio-body ul {
  list-style: none;
}

.servicio-body li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.servicio-body li i {
  color: #FF6B35;
}

/* SLA SECTION */
.sla-section {
  padding: 60px 0;
}

.sla-card {
  background: linear-gradient(135deg, #0A2463 0%, #1A3A7A 100%);
  color: white;
  padding: 50px;
  border-radius: 30px;
  text-align: center;
}

.sla-card i {
  font-size: 50px;
  color: #FF6B35;
  margin-bottom: 20px;
}

.sla-card h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.sla-card p {
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.sla-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 600px;
  margin: 0 auto;
}

.sla-item {
  text-align: center;
}

.sla-tiempo {
  font-size: 28px;
  font-weight: 800;
  display: block;
  color: #FF6B35;
}

.sla-desc {
  font-size: 14px;
  opacity: 0.8;
}

/* CTA MODERNA */
.cta-moderna {
  padding: 80px 0;
  text-align: center;
  background: white;
}

.cta-moderna h2 {
  font-size: 36px;
  color: #0A2463;
  max-width: 700px;
  margin: 0 auto 20px;
}

.cta-moderna p {
  font-size: 18px;
  color: #64748B;
  margin-bottom: 40px;
}

/* FOOTER */
footer {
  background: #0A2463;
  color: white;
  padding: 40px 0;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid, .contacto-grid {
    grid-template-columns: 1fr;
  }
  
  .metricas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sla-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .navbar {
    flex-direction: column;
    gap: 15px;
  }
  
  nav a {
    margin: 0 10px;
  }
  
  .hero-visual {
    display: none;
  }
  
  .servicio-item {
    flex-direction: column;
    gap: 10px;
  }
}

/* CARDS MODERNAS (para desarrollo) */
.cards-modernas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.card-moderna {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  transition: 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
}

.card-moderna:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(10,36,99,0.1);
  border-color: #FF6B35;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0A2463 0%, #1A3A7A 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.card-icon i {
  font-size: 30px;
  color: white;
}

.card-moderna h3 {
  font-size: 22px;
  color: #0A2463;
  margin-bottom: 15px;
}

.card-moderna p {
  color: #64748B;
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-features {
  list-style: none;
}

.card-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #334155;
}

.card-features i {
  color: #FF6B35;
}

/* FLUJO VISUAL */
.flow-visual {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.flow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.flow-node {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
}

.flow-node i {
  font-size: 30px;
  color: #FF6B35;
  margin-bottom: 10px;
}

.flow-node h4 {
  color: #0A2463;
  margin-bottom: 8px;
}

.flow-node p {
  color: #64748B;
  font-size: 13px;
}

.flow-arrow i {
  font-size: 24px;
  color: #FF6B35;
  opacity: 0.5;
}

/* MOCKUP MODERNO */
.mockup-moderno {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  margin-top: 40px;
}

.mockup-side {
  width: 250px;
  background: #0A2463;
  padding: 30px 0;
}

.mockup-menu-item {
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255,255,255,0.7);
  transition: 0.3s;
  cursor: default;
}

.mockup-menu-item i {
  width: 20px;
}

.mockup-menu-item.active {
  background: rgba(255,255,255,0.1);
  color: white;
  border-left: 3px solid #FF6B35;
}

.mockup-main {
  flex: 1;
  padding: 30px;
  background: #F8FAFC;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.mockup-header h4 {
  color: #0A2463;
  font-size: 18px;
}

.mockup-badge {
  background: #FF6B35;
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.mockup-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.kpi-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.kpi-label {
  display: block;
  color: #64748B;
  font-size: 13px;
  margin-bottom: 5px;
}

.kpi-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #0A2463;
  margin-bottom: 5px;
}

.kpi-trend {
  font-size: 12px;
  color: #64748B;
}

.kpi-trend.positive {
  color: #10b981;
}

.mockup-chart {
  background: white;
  padding: 25px;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  gap: 15px;
  height: 200px;
  margin-bottom: 20px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, #0A2463, #3A6EA5);
  border-radius: 5px 5px 0 0;
  transition: 0.3s;
}

.mockup-footer {
  text-align: center;
  color: #64748B;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .cards-modernas {
    grid-template-columns: 1fr;
  }
  
  .flow-row {
    flex-direction: column;
  }
  
  .mockup-moderno {
    flex-direction: column;
  }
  
  .mockup-side {
    width: 100%;
  }
  
  .mockup-kpi-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACTO COMERCIAL */
.contacto-directo {
  padding: 60px 0;
  background: white;
}

.respuesta-banner {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(255,107,53,0.2);
}

.respuesta-banner i {
  font-size: 20px;
}

.contacto-grid-comercial {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.contacto-card {
  padding: 50px 30px;
  border-radius: 30px;
  text-align: center;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.contacto-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.whatsapp-card {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  box-shadow: 0 20px 40px rgba(37,211,102,0.2);
}

.email-card {
  background: #0A2463;
  color: white;
  box-shadow: 0 20px 40px rgba(10,36,99,0.2);
}

.contacto-icon-grande i {
  font-size: 80px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.2);
  padding: 20px;
  border-radius: 50%;
}

.contacto-card h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.contacto-desc {
  margin-bottom: 25px;
  opacity: 0.9;
  font-size: 16px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.contacto-numero {
  background: rgba(255,255,255,0.2);
  padding: 15px 25px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 700;
}

.contacto-email-destacado {
  background: rgba(255,255,255,0.2);
  padding: 15px 25px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 600;
  word-break: break-all;
}

.btn-whatsapp, .btn-email {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: 0.3s;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.btn-whatsapp {
  background: white;
  color: #25D366;
}

.btn-whatsapp:hover {
  background: #075E54;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-email {
  background: white;
  color: #0A2463;
}

.btn-email:hover {
  background: #FF6B35;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,107,53,0.3);
}

.nota-pequeña {
  font-size: 13px;
  margin-top: 10px;
  opacity: 0.8;
}

.horario {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 50px;
}

.respuesta-auto {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.info-adicional {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding: 30px;
  background: #F8FAFC;
  border-radius: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-item i {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B35;
  font-size: 18px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.info-item div {
  display: flex;
  flex-direction: column;
}

.info-item strong {
  color: #0A2463;
  font-size: 15px;
}

.info-item span {
  color: #64748B;
  font-size: 14px;
}

.horario-banner {
  margin-top: 30px;
  padding: 20px;
  background: #F8FAFC;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #64748B;
  border: 1px solid rgba(0,0,0,0.05);
}

.horario-banner i {
  color: #FF6B35;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .contacto-grid-comercial {
    grid-template-columns: 1fr;
  }
  
  .info-adicional {
    grid-template-columns: 1fr;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
  }
  
  .respuesta-banner {
    font-size: 14px;
    padding: 12px 20px;
  }
}