/* =====================================================
   RODAMEL — Estilos personalizados de la landing page
   Extraído de index.php | Kondory Tecnología S.A.S
   ===================================================== */

:root {
  --rodamel-orange: #E94E1B;
  --rodamel-wine: #490102;
  --rodamel-black: #000000;
  --rodamel-white: #FFFFFF;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}

.section-title h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--rodamel-wine);
  margin-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--rodamel-orange);
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

/* HERO Section */
#hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #2d2d2d 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px 0;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translate(50%, -50%);
  width: 500px;
  height: 500px;
  border: 3px solid #E94E1B;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 0;
}

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

#hero .row {
  align-items: center;
}

#hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--rodamel-white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

#hero h2 {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--rodamel-orange);
  margin-bottom: 2.5rem;
}

.btn-rodamel {
  display: inline-block;
  padding: 14px 32px;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--rodamel-orange);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn-rodamel-primary {
  background: var(--rodamel-orange);
  color: var(--rodamel-white);
}

.btn-rodamel-primary:hover {
  background: #d43e0b;
  border-color: #d43e0b;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(233, 78, 27, 0.3);
}

a:hover {
  color: var(--rodamel-white);
  text-decoration: none;
}

.btn-rodamel-secondary {
  background: transparent;
  color: var(--rodamel-white);
  border-color: var(--rodamel-white);
}

.btn-rodamel-secondary:hover {
  background: var(--rodamel-white);
  color: var(--rodamel-black);
  transform: translateY(-3px);
}

.btn-rodamel-track {
  background: transparent;
  color: var(--rodamel-orange);
  border-color: var(--rodamel-orange);
}

.btn-rodamel-track:hover {
  background: var(--rodamel-orange);
  color: var(--rodamel-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(233, 78, 27, 0.3);
}

.hero-visual-container {
  min-height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-visual-container::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,78,27,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.delivery-truck-svg {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: auto;
  display: block;
}

.truck-wrapper {
  width: 100%;
  animation: truckFloat 3.5s ease-in-out infinite;
}

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

.hero-badge {
  background: rgba(233, 78, 27, 0.15);
  border: 1px solid rgba(233, 78, 27, 0.4);
  color: #E94E1B;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--rodamel-orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* SECTION: carriers - hidden by request 2026
.hero-carriers-bar {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
}

.carriers-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 4px;
}

.carrier-pill {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 4px 14px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.carrier-pill:hover {
  color: var(--rodamel-orange);
  border-color: var(--rodamel-orange);
}

#carriers {
  background: var(--rodamel-white);
  padding: 80px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.carriers-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 20px 0 40px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carriers-marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 18s linear infinite;
}

.carriers-marquee-track:hover {
  animation-play-state: paused;
}

.carrier-marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 45px;
  cursor: default;
  white-space: nowrap;
}

.carrier-logo {
  height: 64px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.3s ease;
}

.carrier-marquee-item:hover .carrier-logo {
  filter: grayscale(0%) opacity(1);
}

.carrier-name-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #888;
  transition: color 0.3s ease;
}

.carrier-marquee-item:hover .carrier-name-text {
  color: var(--rodamel-wine);
}

.carrier-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rodamel-orange);
  display: inline-block;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}
SECTION: carriers - hidden by request 2026 */

/* SERVICIOS Section */
#servicios {
  padding: 80px 0;
  background: var(--rodamel-white);
}

.service-card {
  background: var(--rodamel-white);
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.card-number {
  position: absolute;
  top: -10px;
  right: 15px;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(233, 78, 27, 0.06);
  font-family: 'Oswald', sans-serif;
  pointer-events: none;
  user-select: none;
}

.service-card:hover {
  border-color: var(--rodamel-orange);
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(233, 78, 27, 0.2);
}

.service-card .icon {
  font-size: 3.5rem;
  color: var(--rodamel-orange);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .icon {
  color: var(--rodamel-wine);
  transform: scale(1.1);
}

.service-card h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--rodamel-wine);
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
}

/* CÓMO FUNCIONA Section */
#como-funciona {
  padding: 80px 0;
  background: #f8f9fa;
}

.step-card {
  text-align: center;
  padding: 35px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(233,78,27,0.15);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rodamel-orange);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}

.step-icon {
  font-size: 2.8rem;
  color: var(--rodamel-orange);
  margin: 10px 0 15px 0;
}

.step-card h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--rodamel-wine);
  margin-bottom: 10px;
}

.step-card p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

@media (min-width: 992px) {
  .step-card::after {
    content: '→';
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rodamel-orange);
    font-size: 1.5rem;
    opacity: 0.4;
    z-index: 2;
  }
  .col-lg-3:last-child .step-card::after {
    display: none;
  }
}

/* POR QUÉ RODAMEL Section */
#por-que {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--rodamel-wine) 0%, #6b0102 100%);
  color: var(--rodamel-white);
}

#por-que .section-title h2 {
  color: var(--rodamel-white);
}

.feature-box {
  padding: 25px 30px;
  margin-bottom: 0;
  border-left: 3px solid rgba(233,78,27,0.3);
  transition: border-color 0.3s ease;
}

.feature-box:hover {
  border-left-color: var(--rodamel-orange);
}

.feature-box .icon {
  font-size: 2.5rem;
  color: var(--rodamel-orange);
  margin-bottom: 15px;
}

.feature-box h4 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--rodamel-white);
}

.feature-box p {
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
}

/* COBERTURA Section */
#cobertura {
  padding: 80px 0;
  background: #f8f9fa;
}

.colombia-map-wrapper {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.map-hint {
  text-align: center;
  font-size: 0.8rem;
  color: #aaa;
  font-style: italic;
  margin-bottom: 10px;
}

#colombia-map {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1));
}

.dept {
  stroke: white !important;
  stroke-width: 1px;
  cursor: default;
  transition: fill 0.25s ease;
}

.dept-inactive {
  fill: #d0d5dd !important;
}

.dept-inactive:hover {
  fill: #b0b8c4 !important;
}

.dept-active {
  fill: #E94E1B !important;
  cursor: pointer;
  filter: drop-shadow(0 4px 10px rgba(233,78,27,0.4));
}

.dept-active:hover {
  fill: #d43e0b;
  filter: drop-shadow(0 6px 16px rgba(233,78,27,0.6));
}

.map-pin {
  pointer-events: none;
}

/* Panel derecho */
.coverage-panel {
  padding: 20px 30px;
}

.coverage-region {
  margin-bottom: 25px;
}

.coverage-region-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.coverage-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  flex-shrink: 0;
}

.coverage-dot.active {
  background: #E94E1B;
  box-shadow: 0 0 0 4px rgba(233,78,27,0.2);
}

.coverage-region-header h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: var(--rodamel-wine);
  margin: 0;
}

.coverage-region-desc {
  color: #888;
  font-size: 0.9rem;
  margin: 0 0 0 24px;
}

.coverage-cities {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.coverage-city-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: white;
  border-radius: 10px;
  border-left: 3px solid transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.25s ease;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.coverage-city-item:hover {
  border-left-color: var(--rodamel-orange);
  transform: translateX(4px);
}

.coverage-city-item i {
  color: var(--rodamel-orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.city-tag {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(233,78,27,0.1);
  color: var(--rodamel-orange);
  padding: 2px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.coverage-note-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: white;
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px dashed rgba(233,78,27,0.3);
}

.coverage-note-box i {
  color: var(--rodamel-orange);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.coverage-note-box p {
  margin: 0;
  font-size: 0.88rem;
  color: #666;
}

.coverage-note-box a {
  color: var(--rodamel-orange);
  font-weight: 600;
  text-decoration: none;
}

.coverage-note-box a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .coverage-panel {
    padding: 20px 0;
  }
  .colombia-map-wrapper {
    max-width: 320px;
  }
}

/* TESTIMONIOS Section */
#testimonios {
  padding: 80px 0;
  background: var(--rodamel-white);
}

.carousel-item {
  padding: 40px 20px;
}

/* CONTACTO Section */
#contacto {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-info {
  background: var(--rodamel-white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-info-item i {
  font-size: 2rem;
  color: var(--rodamel-orange);
  margin-right: 20px;
  min-width: 40px;
}

.contact-info-item h4 {
  font-size: 1.2rem;
  color: var(--rodamel-wine);
  margin-bottom: 8px;
}

.contact-info-item p {
  color: #666;
  margin: 0;
}

.contact-form {
  background: var(--rodamel-white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 20px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--rodamel-orange);
  box-shadow: 0 0 0 0.2rem rgba(233, 78, 27, 0.15);
}

.contact-form label {
  font-weight: 600;
  color: var(--rodamel-wine);
  margin-bottom: 8px;
}

.contact-form button {
  background: var(--rodamel-orange);
  color: var(--rodamel-white);
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #d43e0b;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(233, 78, 27, 0.3);
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-top: 30px;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
}


/* Responsive */
@media (max-width: 768px) {
  #hero h1 {
    font-size: 2.2rem;
  }

  #hero h2 {
    font-size: 1.1rem;
  }

  .hero-logo {
    font-size: 3rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .btn-rodamel {
    padding: 12px 24px;
    font-size: 14px;
  }

  .service-card,
  .feature-box {
    margin-bottom: 30px;
  }

  .city-badge {
    font-size: 0.95rem;
    padding: 12px 25px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .hero-carriers-bar {
    position: relative;
    bottom: auto;
    transform: none;
    margin-top: 30px;
  }

  .hero-visual-container::before {
    width: 250px;
    height: 250px;
  }

  .carrier-marquee-item {
    font-size: 1.4rem;
    padding: 0 30px;
  }

  .step-card::after {
    display: none;
  }
}

/* Footer Top Stripe */
.footer-stripe {
  background: var(--rodamel-orange);
  height: 4px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  color: white;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}