﻿:root {
  --primary: #D69700;
  --secondary: #E5BE00;
  --mkf2-primary: #D69700;
  --mkf2-secondary: #E5BE00;
  --mkf2-accent: #D9921B;
  --mkf2-ink: #1c1c1c;
  --mkf2-soft: #FFFFFF;
}

body {
  font-family: "Lato", sans-serif;
  color: #1c1c1c;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  color: #fdb913;
}

.bg-primary {
  background-color: #fdb913 !important;
  color: #fff;
}

.bg-secondary {
  background-color: #fbdf56 !important;
  color: #fff;
}

.bg-accent {
  background-color: #d79a33 !important;
  color: #fff;
}

.bg-light {
  background-color: #ffffff !important;
  color: #1c1c1c;
}

.bg-dark {
  background-color: #e6c005 !important;
  color: #fff;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #fbdf56, #fdb913) !important;
  color: #fff;
}

.bg-gradient-accent {
  background: linear-gradient(135deg, #d79a33, #fbdf56) !important;
  color: #fff;
}

.bg-soft-primary {
  background-color: fade(#fdb913, 10%) !important;
}

.bg-soft-accent {
  background-color: fade(#d79a33, 10%) !important;
}

.text-primary {
  color: #fdb913 !important;
}

.text-secondary {
  color: #fbdf56 !important;
}

.text-accent {
  color: #d79a33 !important;
}

.text-light {
  color: #ffffff !important;
}

.text-on-dark {
  color: rgba(255, 255, 255, 0.9) !important;
}

.text-muted-custom {
  color: fade(#1c1c1c, 60%) !important;
}

.border-primary {
  border-color: #fdb913 !important;
}

.border-accent {
  border-color: #d79a33 !important;
}

.border-left-primary {
  border-left: 4px solid #fdb913 !important;
}

.border-left-accent {
  border-left: 4px solid #d79a33 !important;
}

.border-top-primary {
  border-top: 3px solid #fdb913 !important;
}

.border-top-accent {
  border-top: 3px solid #d79a33 !important;
}

.btn-primary {
  background-color: #d79a33;
  border-color: #d79a33;
  color: #fff;
}

.btn-primary:hover {
  background-color: #b47e23;
  border-color: #b47e23;
  color: #fff;
}

.btn-accent {
  background-color: #d79a33;
  border-color: #d79a33;
  color: #fff;
}

.btn-accent:hover {
  background-color: #b47e23;
  border-color: #b47e23;
  color: #fff;
}

.btn-outline-primary {
  border: 2px solid #fdb913;
  color: #fdb913;
  background: transparent;
}

.btn-outline-primary:hover {
  background-color: #fdb913;
  color: #fff;
}

.btn-outline-accent {
  border: 2px solid #d79a33;
  color: #d79a33;
  background: transparent;
}

.btn-outline-accent:hover {
  background-color: #d79a33;
  color: #fff;
}

.card-custom {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-border-top {
  border-top: 4px solid #d79a33;
}

.card-border-left {
  border-left: 4px solid #fdb913;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.icon-circle-primary {
  background-color: fade(#fdb913, 12%);
  color: #fdb913;
}

.icon-circle-accent {
  background-color: fade(#d79a33, 12%);
  color: #d79a33;
}

.icon-square {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.icon-square-primary {
  background-color: #fdb913;
  color: #fff;
}

.icon-square-accent {
  background-color: #d79a33;
  color: #fff;
}

.badge-primary {
  background-color: #fdb913;
  color: #fff;
  padding: 0.35em 0.8em;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-accent {
  background-color: #d79a33;
  color: #fff;
  padding: 0.35em 0.8em;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-outline-primary {
  border: 1px solid #fdb913;
  color: #fdb913;
  padding: 0.35em 0.8em;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

section[data-type="container"] {
  padding: 4rem 0;
}

section[data-type="container"]:nth-child(even) {
  background-color: #f7f7f7;
}

.section-primary {
  background-color: #fdb913 !important;
  color: #fff;
}

.section-primary h1, .section-primary h2, .section-primary h3, .section-primary h4, .section-primary h5, .section-primary h6 {
  color: #fff;
}

.section-secondary {
  background-color: #fbdf56 !important;
  color: #fff;
}

.section-secondary h1, .section-secondary h2, .section-secondary h3, .section-secondary h4, .section-secondary h5, .section-secondary h6 {
  color: #fff;
}

.section-dark {
  background-color: #e6c005 !important;
  color: rgba(255, 255, 255, 0.9);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4, .section-dark h5, .section-dark h6 {
  color: #fff;
}

.section-accent {
  background-color: #d79a33 !important;
  color: #fff;
}

.section-accent h1, .section-accent h2, .section-accent h3, .section-accent h4, .section-accent h5, .section-accent h6 {
  color: #fff;
}

.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.overlay-primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: fade(#fdb913, 70%);
}

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, fade(#fdb913, 85%), fade(#fbdf56, 70%));
}

.divider-accent {
  width: 60px;
  height: 4px;
  background-color: #d79a33;
  border: none;
  margin: 1rem 0;
}

.divider-center {
  width: 60px;
  height: 4px;
  background-color: #d79a33;
  border: none;
  margin: 1rem auto;
}

.blockquote-custom {
  border-left: 4px solid #d79a33;
  padding-left: 1.5rem;
  font-style: italic;
  color: fade(#1c1c1c, 75%);
}

.stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fdb913;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: fade(#1c1c1c, 60%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.gallery-item img, .gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img, .gallery-item:hover video {
  transform: scale(1.05);
}

.mkf2-component-text {
  line-height: 1.7;
}

.logotipo {
  max-height: 50px;
  width: auto;
}

.navbar {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar .nav-link {
  color: #1c1c1c;
}

.navbar .nav-link:hover {
  color: #fdb913;
}

.navbar .navbar-brand {
  color: #1c1c1c;
}

/* WhatsApp button custom styling */
.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20BA55;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Hero gradient background */
.hero-taxi-gradient {
  background: linear-gradient(110deg, #fbdf56 0%, #fdb913 60%, #d79a33 100%);
  position: relative;
  overflow: hidden;
}

.hero-taxi-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(253, 185, 19, 0.3) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

/* Hero taxi image styling */
.taxi-hero-image {
  position: relative;
  z-index: 2;
}

.taxi-hero-image img {
  border-radius: 20px;
  box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.2);
  transform: perspective(800px) rotateY(-5deg);
  transition: transform 0.6s ease;
}

.taxi-hero-image:hover img {
  transform: perspective(800px) rotateY(0deg) scale(1.02);
}

/* Service cards professional style */
.taxi-service-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.taxi-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #fdb913 0%, #d79a33 100%);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.taxi-service-card:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.taxi-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(253, 185, 19, 0.15);
}

/* Stats section */
.stats-taxi {
  background: linear-gradient(135deg, #1c1c1c 0%, #2d2d2d 100%);
  padding: 4rem 0;
}

.stat-item-taxi {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.stat-item-taxi::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.15);
}

.stat-item-taxi:last-child::after {
  display: none;
}

.stat-number-taxi {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fdb913;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-taxi {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Gallery uniform grid */
.gallery-taxi-item {
  height: 280px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  background: #f8f9fa;
}

.gallery-taxi-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-taxi-item:hover img {
  transform: scale(1.08);
}

.gallery-taxi-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-taxi-item:hover::after {
  opacity: 1;
}

/* Professional divider */
.divider-professional {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #fdb913 0%, #d79a33 100%);
  margin: 0 auto 2rem;
}

/* Contact info styling */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  border-color: #fdb913;
  box-shadow: 0 4px 12px rgba(253, 185, 19, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fdb913 0%, #d79a33 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  margin-right: 1.2rem;
  flex-shrink: 0;
}
