/* ==========================================================================
   PICKTIC LOGÍSTICA Y TRANSPORTE - SISTEMA DE DISEÑO Y ESTILOS
   Paleta: Azul Metálico Profundo (#0B1E3D, #0F2A4A) + Naranja Racing (#FF5E00)
   ========================================================================== */

:root {
  --primary-dark: #071325;
  --primary-navy: #0b1e3d;
  --primary-blue: #0f2b52;
  --primary-light-blue: #1b4375;
  --accent-orange: #ff5e00;
  --accent-orange-hover: #e05300;
  --accent-orange-light: #ff8533;
  --accent-gold: #ffb703;
  --accent-teal: #00d2ff;
  
  --bg-dark: #050d1a;
  --bg-card-dark: rgba(11, 30, 61, 0.7);
  --bg-card-hover: rgba(15, 42, 82, 0.85);
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  --text-dark-muted: #475569;
  
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-orange: rgba(255, 94, 0, 0.4);
  --shadow-orange: 0 10px 30px rgba(255, 94, 0, 0.25);
  --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 25px rgba(255, 94, 0, 0.3);

  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   UTILIDADES & REUTILIZABLES
   ========================================================================== */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-gradient-orange {
  background: linear-gradient(135deg, #ff5e00 0%, #ffa033 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #00d2ff 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 94, 0, 0.12);
  border: 1px solid var(--border-orange);
  color: var(--accent-orange-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.badge-tag svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8000 100%);
  color: #ffffff;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 94, 0, 0.4);
  background: linear-gradient(135deg, #ff701a 0%, #ffa033 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-normal);
  background: rgba(5, 13, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(7, 19, 37, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(255, 94, 0, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.logo-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-orange-light);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-orange);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 8.5rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 70% 30%, rgba(255, 94, 0, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(15, 43, 82, 0.6) 0%, transparent 60%),
              var(--bg-dark);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.hero-media {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-dark), 0 0 50px rgba(11, 30, 61, 0.8);
}

.hero-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

.hero-floating-card {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: rgba(11, 30, 61, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 94, 0, 0.4);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  animation: floatAnim 4s ease-in-out infinite alternate;
}

@keyframes floatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

.floating-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-orange), #ff8533);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.floating-info h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}

.floating-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 7rem 0;
  position: relative;
  background: var(--primary-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-orange);
  box-shadow: var(--shadow-glow);
}

.service-img-holder {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img-holder img {
  transform: scale(1.08);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(7, 19, 37, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-orange);
  color: var(--accent-orange-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.service-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.service-body p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.service-features {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.feature-check {
  width: 22px;
  height: 22px;
  background: rgba(255, 94, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-weight: bold;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ==========================================================================
   COVERAGE / ESTADOS SECTION
   ========================================================================== */
.coverage-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  position: relative;
}

.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.state-card {
  background: rgba(15, 42, 82, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: var(--transition-fast);
}

.state-card:hover {
  background: rgba(15, 42, 82, 0.9);
  border-color: var(--accent-orange);
  transform: translateY(-4px);
}

.state-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 94, 0, 0.15);
  border: 1px solid var(--border-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.state-info h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.state-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.state-hubs {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-teal);
  background: rgba(0, 210, 255, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* ==========================================================================
   DRIVER RECRUITMENT FORM SECTION (WA INTEGRATION)
   ========================================================================== */
.driver-section {
  padding: 7rem 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 94, 0, 0.12) 0%, transparent 60%),
              var(--bg-dark);
  position: relative;
}

.driver-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.driver-benefits-box h2 {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.driver-benefits-box p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.perks-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.perk-icon-wrapper {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 94, 0, 0.2), rgba(255, 133, 51, 0.1));
  border: 1px solid var(--border-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange-light);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.perk-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.perk-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* FORM STYLING */
.form-card {
  background: rgba(11, 30, 61, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-dark), 0 0 40px rgba(255, 94, 0, 0.15);
}

.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.form-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.form-header p {
  font-size: 0.9rem;
  color: var(--accent-orange-light);
  font-weight: 600;
}

.driver-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(5, 13, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 94, 0, 0.2);
  background: rgba(5, 13, 26, 0.95);
}

.form-select option {
  background: #0b1e3d;
  color: #ffffff;
}

.wa-btn-submit {
  width: 100%;
  padding: 1.1rem;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* ==========================================================================
   FREIGHT CALCULATOR SECTION
   ========================================================================== */
.calc-section {
  padding: 5rem 0;
  background: rgba(15, 42, 82, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-box {
  background: linear-gradient(135deg, rgba(11, 30, 61, 0.9) 0%, rgba(7, 19, 37, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-orange);
}

.faq-question {
  padding: 1.25rem 1.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-toggle-icon {
  font-size: 1.3rem;
  color: var(--accent-orange);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 1.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.75rem 1.5rem 1.75rem;
  transition: max-height 0.4s ease-in-out, padding 0.3s ease;
}

/* ==========================================================================
   FOOTER & FLOATING WA BUTTON
   ========================================================================== */
.footer {
  background: #030812;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-orange-light);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FLOATING WA BUTTON */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-normal);
  animation: pulseWa 2.5s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .driver-grid, .calc-box {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #071325;
    padding: 2rem;
    border-bottom: 1px solid var(--border-orange);
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   SECCIÓN COMPRA DE GUÍAS & OPENPAY CHECKOUT
   ========================================================================== */
.guides-section {
  padding: 6rem 0;
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(15, 43, 82, 0.45) 0%, transparent 60%),
              radial-gradient(circle at 90% 80%, rgba(255, 94, 0, 0.12) 0%, transparent 60%),
              var(--bg-dark);
}

.guides-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .guides-grid {
    grid-template-columns: 1fr;
  }
}

.guide-calc-card,
.guide-payment-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-dark);
  position: relative;
  overflow: hidden;
}

.guide-badge-sale {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(255, 94, 0, 0.2), rgba(255, 183, 3, 0.2));
  color: #ffa033;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 94, 0, 0.35);
  margin-bottom: 0.8rem;
}

.guide-pricing-display {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.8rem 0 1.5rem 0;
}

.guide-price-val {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.guide-price-cur {
  font-size: 1.1rem;
  color: var(--accent-orange);
  font-weight: 700;
}

.guide-price-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.guide-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.guide-perks li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #cbd5e1;
  font-size: 0.92rem;
}

.guide-perks li i {
  color: #22c55e;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Selector de Cantidad */
.qty-chips-group {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.qty-chip {
  background: rgba(15, 43, 82, 0.5);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.qty-chip:hover {
  border-color: var(--border-orange);
  background: rgba(255, 94, 0, 0.15);
}

.qty-chip.active {
  background: var(--accent-orange);
  color: #ffffff;
  border-color: var(--accent-orange);
  box-shadow: 0 4px 14px rgba(255, 94, 0, 0.35);
}

/* Toggle Card Recolección */
.pickup-toggle-card {
  background: rgba(15, 43, 82, 0.4);
  border: 1.5px solid rgba(255, 94, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.pickup-toggle-card:hover {
  background: rgba(15, 43, 82, 0.7);
  border-color: var(--accent-orange);
}

.pickup-toggle-card.selected {
  background: rgba(255, 94, 0, 0.12);
  border-color: var(--accent-orange);
  box-shadow: 0 0 20px rgba(255, 94, 0, 0.2);
}

.pickup-info-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pickup-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 94, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pickup-texts h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.pickup-texts p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.pickup-price-tag {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-gold);
  white-space: nowrap;
}

/* Selector de Pasarela Multi-Gateway */
.gateway-tabs-wrap {
  margin: 1.5rem 0;
}

.gateway-tabs-header {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.gateway-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.gateway-card {
  background: rgba(7, 19, 37, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
}

.gateway-card.active {
  border-color: var(--accent-orange);
  background: rgba(255, 94, 0, 0.1);
  box-shadow: 0 0 15px rgba(255, 94, 0, 0.2);
}

.gateway-card[data-gateway="mercadopago"].active {
  border-color: #009ee3;
  background: rgba(0, 158, 227, 0.12);
  box-shadow: 0 0 15px rgba(0, 158, 227, 0.25);
}

.gateway-card[data-gateway="openpay"].active {
  border-color: #00d2ff;
  background: rgba(0, 210, 255, 0.12);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.25);
}

.gateway-card.disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.gateway-card img {
  height: 24px;
  margin: 0 auto 0.35rem auto;
  object-fit: contain;
}

.gateway-card span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
}

.gateway-soon-badge {
  position: absolute;
  top: -7px;
  right: -5px;
  background: #334155;
  color: #cbd5e1;
  font-size: 0.65rem;
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
}

/* Desglose Resumen Dinámico */
.live-summary-box {
  background: rgba(7, 19, 37, 0.75);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  margin-top: 1.5rem;
}

.live-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.live-summary-row.total-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.5rem;
  padding-top: 0.8rem;
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
}

.total-amount-glow {
  color: #22c55e;
  text-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

/* Formulario Tarjeta Openpay */
.card-logos-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-logos-row span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.card-brand-badge {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #cbd5e1;
}

.form-input-with-icon {
  position: relative;
}

.form-input-with-icon input {
  padding-right: 2.8rem;
}

.input-card-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--accent-orange);
  pointer-events: none;
}

.sandbox-test-box {
  background: rgba(255, 183, 3, 0.1);
  border: 1px dashed rgba(255, 183, 3, 0.4);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: #fde047;
}

.sandbox-test-box button {
  background: rgba(255, 183, 3, 0.2);
  border: 1px solid rgba(255, 183, 3, 0.5);
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 0.4rem;
  transition: var(--transition-fast);
}

.sandbox-test-box button:hover {
  background: rgba(255, 183, 3, 0.35);
}

/* Alert Boxes de Pago */
.payment-alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  display: none;
}

.payment-alert.error {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.payment-alert.success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.7s linear infinite;
}

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

