:root {
  --primary: #0d6efd;
  --primary-dark: #0b5ed7;
  --whatsapp: #25d366;
  --text-color: #222;
  --body-bg: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: var(--body-bg);
  color: var(--text-color);
  font-family: 'Segoe UI', Arial, sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}

img,
video {
  max-width: 100%;
  display: block;
}

.header-bar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin: 32px 0 24px;
  gap: 0.2rem;
}

.header-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  margin-top: 12px;
  width: 100%;
}

.main-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.vian-speed-blue {
  color: var(--primary);
}

.sub-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-color);
  letter-spacing: 0.2px;
  margin-top: 0.1rem;
  width: 100%;
  text-align: left;
  padding-left: 2px;
}

@media (max-width: 991.98px) {
  .main-title {
    font-size: 1.3rem;
  }

  .sub-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .header-bar {
    margin: 18px 0 16px;
    gap: 0.1rem;
  }

  .header-title {
    margin-top: 0.3rem;
    align-items: flex-start;
    text-align: left;
  }

  .main-title {
    font-size: 1.05rem;
    line-height: 1.15;
  }

  .sub-title {
    font-size: 0.85rem;
  }
}

.landing-page .header-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 2rem 0;
  margin: 0 0 2rem;
  box-shadow: 0 4px 20px rgba(13, 110, 253, 0.15);
  display: block;
}

.landing-page .header-title {
  color: #fff;
  text-align: center;
  align-items: center;
  margin-top: 0;
}

.landing-page .main-title {
  color: #fff;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.landing-page .sub-title {
  color: #fff;
  font-size: 1.2rem;
  opacity: 0.95;
  padding-left: 0;
  text-align: center;
}

@media (max-width: 767.98px) {
  .landing-page .main-title {
    font-size: 1.8rem;
  }

  .landing-page .sub-title {
    font-size: 1rem;
  }
}

.carousel-item img,
.carousel-item video {
  object-fit: cover;
  height: 45vw;
  min-height: 180px;
  max-height: 400px;
  width: 100%;
  transition: transform 0.7s cubic-bezier(.4, 2, .6, 1);
}

.carousel-item.active img,
.carousel-item.active video {
  animation: zoomIn 1.2s;
}

.info-section,
.why-section,
.contact-section {
  background: #e3f0ff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(13, 110, 253, 0.10), 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 2px solid var(--primary);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s, box-shadow 0.3s;
}

.info-section.visible,
.why-section.visible,
.contact-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-section {
  background: #f4faff;
  box-shadow: 0 4px 16px rgba(13, 110, 253, 0.08), 0 2px 8px rgba(0, 0, 0, 0.03);
}

.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  border-radius: 12px;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
}

.why-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: inline-block;
  line-height: 1;
  animation: bounceIn 1.2s;
}

.wa-btn {
  background: var(--whatsapp);
  color: #fff !important;
  border-radius: 24px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  transition: background 0.2s, transform 0.3s, box-shadow 0.3s;
  border: none;
  font-size: 1rem;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.wa-btn:hover,
.wa-btn:focus {
  background: #1ebe57;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.wa-btn .fa-whatsapp {
  font-size: 1.3em;
  vertical-align: middle;
}

.footer-anim {
  animation: fadeInUp 1.2s;
}

@keyframes zoomIn {
  from {
    transform: scale(1.08);
    opacity: 0.7;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

  60% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.breadcrumb {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.info-card {
  background: #e3f0ff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(13, 110, 253, 0.10);
  border: 2px solid var(--primary);
  animation: fadeInUp 0.8s;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(13, 110, 253, 0.15);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.price-tag {
  background: var(--whatsapp);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  margin-top: 0.5rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  margin: 3rem 0;
  box-shadow: 0 8px 32px rgba(13, 110, 253, 0.25);
}

.location-badge {
  background: #fff;
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
  margin: 0.25rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.why-section .col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

@media (max-width: 575.98px) {
  .why-section .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .why-section .row {
    row-gap: 1.5rem;
  }
}

