/**
 * cinetweb Studio — Custom Design System
 * Built on FolioOne Bootstrap 5 Theme
 * Version: 1.0.0
 */

/* ============================================================
   DESIGN TOKENS — Override FolioOne defaults for cinetweb
   ============================================================ */
:root {
  --accent-color: #42c8c8;          /* Cinetweb magenta/pink brand */
  --accent-secondary: #1f6fa1;      /* Complementary blue */
  --background-color: #101a20;
  --surface-color: #141f26;
  --heading-color: #ffffff;
  --default-color: #c9dce8;
  --nav-hover-color: #42c8c8;
  --cw-gradient: linear-gradient(135deg, #42c8c8 0%, #1f6fa1 100%);
  --cw-gradient-dark: linear-gradient(135deg, #b0306e 0%, #0d6494 100%);
  --cw-radius: 12px;
  --cw-radius-sm: 8px;
  --cw-shadow: 0 8px 32px rgba(232, 67, 147, 0.15);
  --cw-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   LOGO TYPOGRAPHY
   ============================================================ */
.logo-text {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-accent {
  color: var(--accent-color);
}

.logo-tag {
  font-family: var(--nav-font);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-secondary);
  display: block;
  margin-top: 1px;
  padding-left: 2px;
}

a.logo, a.footer-logo {
  text-decoration: none;
  flex-direction: column;
  align-items: flex-start;
}

/* ============================================================
   HEADER OVERRIDES
   ============================================================ */
.header {
  background-color: rgba(16, 26, 32, 0.97) !important;
  border-bottom: 1px solid rgba(232, 67, 147, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-cta-btn {
  background: var(--cw-gradient) !important;
  color: #fff !important;
  padding: 6px 18px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.05em;
  transition: var(--cw-transition) !important;
}

.nav-cta-btn:hover {
  opacity: 0.9 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 67, 147, 0.35) !important;
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--cw-transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  color: #fff;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: #0b1419;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 67, 147, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 67, 147, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

.hero-bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(232,67,147,0.08) 0%, transparent 70%);
}

.hero .container { position: relative; z-index: 1; }

.hero .hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.hero .hero-content h1 .highlight {
  background: var(--cw-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero .hero-content h2 {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  min-height: 40px;
}

.hero .hero-content h2 .typed {
  color: var(--accent-color);
  font-weight: 600;
}

.hero .hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 520px;
}

.hero .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero .hero-actions .btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--cw-transition);
  display: inline-flex;
  align-items: center;
}

.hero .hero-actions .btn-primary {
  background: var(--cw-gradient);
  border: none;
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,67,147,0.3);
}

.hero .hero-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,67,147,0.45);
}

.hero .hero-actions .btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
}

.hero .hero-actions .btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

/* Eyebrow Badge */
.cw-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,67,147,0.12);
  border: 2px solid rgba(66,200,200,0.3);
  color: var(--accent-color);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Hero Stats */
.cw-hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

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

.cw-stat-num {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.cw-stat-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.cw-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* Hero Visual — Icon Grid */
.cw-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.cw-icon-grid {
  position: relative;
  width: 340px;
  height: 340px;
}

.cw-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  background: var(--cw-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(232,67,147,0.4);
  z-index: 2;
}

.cw-center-inner {
  text-align: center;
  color: #fff;
  line-height: 1.2;
}

.cw-center-inner span {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
}

.cw-center-inner small {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.cw-bubble {
  position: absolute;
  width: 72px;
  height: 72px;
  background: var(--surface-color);
  border: 1px solid rgba(66,200,200,0.25);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transition: var(--cw-transition);
  cursor: default;
}

.cw-bubble i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.cw-bubble span {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cw-bubble:hover {
  background: rgba(232,67,147,0.12);
  border-color: var(--accent-color);
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(232,67,147,0.25);
}

.cw-b1 { top: 5%;  left: 35%; animation: floatBubble 5s ease-in-out infinite 0s; }
.cw-b2 { top: 22%; right: 3%; animation: floatBubble 5s ease-in-out infinite 0.8s; }
.cw-b3 { top: 62%; right: 3%; animation: floatBubble 5s ease-in-out infinite 1.6s; }
.cw-b4 { bottom: 5%; left: 35%; animation: floatBubble 5s ease-in-out infinite 2.4s; }
.cw-b5 { top: 62%; left: 3%;  animation: floatBubble 5s ease-in-out infinite 3.2s; }
.cw-b6 { top: 22%; left: 3%;  animation: floatBubble 5s ease-in-out infinite 4s; }

@keyframes floatBubble {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@media (max-width: 576px) {
  .cw-icon-grid { width: 260px; height: 260px; }
  .cw-center-logo { width: 100px; height: 100px; }
  .cw-bubble { width: 56px; height: 56px; }
  .cw-bubble i { font-size: 1rem; }
}

/* ============================================================
   EMPRESA (ABOUT) SECTION
   ============================================================ */
.intro-content .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.intro-content .headline {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.intro-content .lead {
  font-size: 1.05rem;
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 16px;
}

.intro-content p {
  color: rgba(199,220,232,0.8);
  line-height: 1.7;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: rgba(232,67,147,0.1);
  border: 1.5px solid rgba(232,67,147,0.35);
  color: var(--accent-color);
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--cw-transition);
  text-decoration: none;
}

.btn-ghost:hover {
  background: rgba(232,67,147,0.18);
  color: var(--accent-color);
  transform: translateX(3px);
}

.link-underline {
  display: inline-flex;
  align-items: center;
  color: var(--default-color);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  transition: var(--cw-transition);
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--cw-transition);
}

.link-underline:hover {
  color: var(--accent-color);
}

.link-underline:hover::after {
  width: 100%;
}

/* Value Cards */
.cw-value-card {
  background: var(--surface-color);
  border: 1px solid rgba(232,67,147,0.12);
  border-radius: var(--cw-radius);
  padding: 24px 20px;
  transition: var(--cw-transition);
  height: 100%;
}

.cw-value-card i {
  font-size: 2rem;
  color: var(--accent-color);
  display: block;
  margin-bottom: 12px;
}

.cw-value-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.cw-value-card p {
  font-size: 0.85rem;
  color: rgba(199,220,232,0.7);
  line-height: 1.6;
  margin: 0;
}

.cw-value-card:hover {
  border-color: rgba(232,67,147,0.4);
  transform: translateY(-4px);
  box-shadow: var(--cw-shadow);
}

/* ============================================================
   SERVICES SECTION — Override & Enhance
   ============================================================ */
.services .service-item {
  background: var(--surface-color);
  border: 2px solid rgba(66,200,200,0.1);
  border-radius: var(--cw-radius);
  padding: 28px 24px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--cw-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services .service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cw-gradient);
  transform: scaleX(0);
  transition: var(--cw-transition);
  transform-origin: left;
}

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

.services .service-item:hover {
  border-color: rgba(66,200,200,0.35);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.services .service-icon {
  width: 60px;
  height: 60px;
  background: rgba(232,67,147,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--cw-transition);
  flex-shrink: 0;
}

.services .service-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: var(--cw-transition);
}

.services .service-item:hover .service-icon {
  background: var(--accent-color);
}

.services .service-item:hover .service-icon i {
  color: #fff;
}

.services .service-content { flex: 1; }

.services .service-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.services .service-content p {
  font-size: 0.875rem;
  color: rgba(199,220,232,0.75);
  line-height: 1.65;
  margin: 0;
}

.services .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  margin-top: 16px;
  transition: var(--cw-transition);
}

.services .service-link:hover {
  gap: 10px;
}

/* Section title overrides */
.section-title h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--cw-gradient);
  border-radius: 2px;
}

.section-title p {
  color: rgba(199,220,232,0.7);
  font-size: 1rem;
  max-width: 520px;
  margin: 12px auto 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cw-cta-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cw-cta-overlay {
  position: absolute;
  inset: 0;
  background: var(--cw-gradient);
  opacity: 0.92;
  z-index: 0;
}

.cw-cta-banner .container {
  position: relative;
  z-index: 1;
}

/* ============================================================
   PRODUCTOS SECTION
   ============================================================ */
.cw-product-card {
  background: var(--surface-color);
  border: 2px solid rgba(66,200,200,0.70);
  border-radius: var(--cw-radius);
  padding: 36px 30px;
  transition: var(--cw-transition);
  height: 100%;
  position: relative;
}

.cw-product-card:hover {
  border-color: rgba(232,67,147,0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
}

.cw-product-icon {
  width: 70px;
  height: 70px;
  background: var(--cw-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.cw-product-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.cw-product-badge {
  display: inline-block;
  background: rgba(232,67,147,0.1);
  border: 1px solid rgba(232,67,147,0.25);
  color: var(--accent-color);
  border-radius: 50px;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.cw-product-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.cw-product-card p {
  color: rgba(199,220,232,0.75);
  line-height: 1.65;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.cw-product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.cw-product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(199,220,232,0.8);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cw-product-features li:last-child { border-bottom: none; }

.cw-product-features li i {
  color: var(--accent-color);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ============================================================
   CLIENTES SECTION
   ============================================================ */
.cw-clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.cw-client-item {
  background: var(--surface-color);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--cw-radius-sm);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--cw-transition);
  cursor: default;
}

.cw-client-item i {
  font-size: 2rem;
  color: rgba(199,220,232,0.35);
  transition: var(--cw-transition);
}

.cw-client-item span {
  font-size: 0.8rem;
  color: rgba(199,220,232,0.45);
  font-weight: 500;
}

.cw-client-item:hover {
  border-color: rgba(232,67,147,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.cw-client-item:hover i {
  color: var(--accent-color);
}

.cw-client-item:hover span {
  color: var(--default-color);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.cw-contact-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(232,67,147,0.07) 0%, transparent 60%);
  pointer-events: none;
}

#contacto { position: relative; }

.cw-contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cw-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cw-contact-icon {
  width: 46px;
  height: 46px;
  background: rgba(232,67,147,0.1);
  border: 1px solid rgba(232,67,147,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cw-contact-icon i {
  color: var(--accent-color);
  font-size: 1rem;
}

.cw-contact-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  color: var(--accent-color);
}

.cw-contact-item p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(199,220,232,0.8);
  line-height: 1.6;
}

.cw-contact-item p a {
  color: rgba(199,220,232,0.8);
  text-decoration: none;
  transition: var(--cw-transition);
}

.cw-contact-item p a:hover { color: var(--accent-color); }

.cw-contact-social {
  display: flex;
  gap: 10px;
}

.cw-contact-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(199,220,232,0.7);
  font-size: 0.95rem;
  transition: var(--cw-transition);
  text-decoration: none;
}

.cw-contact-social a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
}

/* Contact Form */
.cw-form-wrapper {
  border: 1px solid rgba(66,200,200,0.70);
  border-radius: var(--cw-radius);
  padding: 36px 32px;
}

.cw-input {
  background: rgba(255,255,255,0.04) !important;
  border: 1.5px solid rgba(255,255,255,0.1) !important;
  border-radius: var(--cw-radius-sm) !important;
  color: var(--default-color) !important;
  font-size: 0.9rem !important;
  padding: 10px 14px !important;
  transition: var(--cw-transition) !important;
}

.cw-input:focus {
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 0 3px rgba(232,67,147,0.12) !important;
  background: rgba(232,67,147,0.04) !important;
}

.cw-input::placeholder { color: rgba(199,220,232,0.35) !important; }

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(199,220,232,0.7);
  margin-bottom: 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080f14 !important;
}

.cw-footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cw-footer-bottom {
  padding: 20px 0;
}

.cw-footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(199,220,232,0.45);
}

.cw-footer-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.cw-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.cw-footer-links a {
  font-size: 0.875rem;
  color: rgba(199,220,232,0.55);
  text-decoration: none;
  transition: var(--cw-transition);
  display: inline-flex;
  align-items: center;
}

.cw-footer-links a::before {
  content: '›';
  margin-right: 6px;
  color: var(--accent-color);
  opacity: 0;
  transition: var(--cw-transition);
}

.cw-footer-links a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.cw-footer-links a:hover::before { opacity: 1; }

.cw-footer-contact p {
  font-size: 0.875rem;
  color: rgba(199,220,232,0.6);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}

.cw-footer-contact p i {
  color: var(--accent-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.cw-footer-contact a {
  color: rgba(199,220,232,0.6);
  text-decoration: none;
  transition: var(--cw-transition);
}

.cw-footer-contact a:hover { color: var(--accent-color); }

.cw-footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cw-footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(199,220,232,0.55);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--cw-transition);
}

.cw-footer-social a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
}

.cw-footer-security {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(199,220,232,0.5);
  font-size: 0.8rem;
}

.cw-footer-security i {
  color: #25d366;
  font-size: 1.2rem;
}

/* ============================================================
   INNER PAGES — Hero Banner
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0b1419 0%, #1a0d26 100%);
  padding: 100px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(232,67,147,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,67,147,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 550px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.page-breadcrumb a {
  color: var(--accent-color);
  text-decoration: none;
}

.page-breadcrumb i { font-size: 0.65rem; }

/* ============================================================
   INNER PAGE — SERVICE DETAIL
   ============================================================ */
.service-detail-icon {
  width: 80px;
  height: 80px;
  background: var(--cw-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-detail-icon i { font-size: 2rem; color: #fff; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
  color: rgba(199,220,232,0.8);
  line-height: 1.5;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li i {
  color: var(--accent-color);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Sidebar CTA card */
.cw-sidebar-cta {
  background: var(--cw-gradient);
  border-radius: var(--cw-radius);
  padding: 32px 24px;
  text-align: center;
  color: #fff;
}

.cw-sidebar-cta h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.cw-sidebar-cta p {
  font-size: 0.875rem;
  opacity: 0.88;
  margin-bottom: 20px;
}

.btn-white {
  background: #fff;
  color: var(--accent-color) !important;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  text-decoration: none;
  transition: var(--cw-transition);
}

.btn-white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ============================================================
   EMPRESA PAGE
   ============================================================ */
.team-card {
  background: var(--surface-color);
  border: 1px solid rgba(232,67,147,0.1);
  border-radius: var(--cw-radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--cw-transition);
}

.team-card:hover {
  border-color: rgba(232,67,147,0.35);
  transform: translateY(-6px);
  box-shadow: var(--cw-shadow);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: var(--cw-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.team-avatar i { font-size: 2rem; color: #fff; }

.team-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card .role { font-size: 0.8rem; color: var(--accent-color); margin-bottom: 12px; font-weight: 600; }
.team-card p { font-size: 0.82rem; color: rgba(199,220,232,0.65); line-height: 1.6; margin: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.cw-map-placeholder {
  background: var(--surface-color);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--cw-radius);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(199,220,232,0.4);
}

.cw-map-placeholder i { font-size: 3rem; color: var(--accent-color); opacity: 0.5; }
.cw-map-placeholder p { font-size: 0.85rem; margin: 0; }

/* ============================================================
   GLOBAL BTN PRIMARY OVERRIDE
   ============================================================ */
.btn-primary {
  background: var(--cw-gradient) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: var(--cw-transition) !important;
}

.btn-primary:hover {
  opacity: 0.9 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(232,67,147,0.35) !important;
}

.btn-success {
  background: #198754 !important;
  border: none !important;
  color: #fff !important;
  border-radius: 50px !important;
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 768px) {
  .cw-hero-stats { gap: 16px; }
  .cw-stat-num { font-size: 1.6rem; }
  .cw-form-wrapper { padding: 24px 18px; }
  .cw-footer-top { padding: 40px 0 30px; }
}

@media (max-width: 576px) {
  .hero .hero-actions { flex-direction: column; }
  .hero .hero-actions .btn { width: 100%; justify-content: center; }
}
