/* usar la fuente de Segoe UI */
@import url("https://fonts.googleapis.com/css2?family=Segoe+UI:wght@400;600;700&display=swap");

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #242424;
  color: #242424;
  margin: 0;
  padding: 0;
}

/* Footer */
footer {
  background: #242424;
  padding: 3rem 0 2rem 0;
  border: none !important;
  border-radius: 0 !important;
}

/* Clickable Elements (Phone, Email, Location) */
.phone-clickable,
.email-clickable,
.location-clickable {
  cursor: pointer;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(92, 92, 92, 0.6);
  z-index: 1000;
  transition: all 0.3s ease;
}

header .navbar {
  background-color: transparent !important;
  padding: 1rem 0;
}

header .navbar-brand img {
  height: 40px;
}

header .navbar-nav .nav-link {
  color: white;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

header .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

header .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

header .btn-agenda {
  background-color: white;
  border: 2px solid white;
  color: #333;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

header .btn-login {
  background-color: #242424;
  border: 2px solid #242424;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Nav buttons container */
header .nav-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: auto;
}

/* Hero Wrapper */
.hero-wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* Hero Banner */
.hero-banner {
  flex-shrink: 0;
  background-color: #232324;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.7) 40%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 60%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 3rem 0;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

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

.hero-cta .btn-hero {
  background-color: white;
  color: #333;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-cta .btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  background-color: #f8f9fa;
}

.hero-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  flex-direction: row;
}

.hero-contact .divider {
  color: white;
  font-size: 1rem;
  white-space: nowrap;
}

.hero-contact .phone-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.hero-contact .phone-text {
  display: flex;
  flex-direction: column;
}

.hero-contact .phone-number {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.hero-contact .phone-label {
  font-size: 0.7rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  opacity: 0.9;
}

.hero-contact .phone-icon > img {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-contact .phone-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

/* Service Section */
.service-section {
  background: #fff;
  padding: 5rem 0;
}

.service-section-container {
  padding: 2rem;
  background-color: #202020;
  border-radius: 12px;
}

.service-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.service-section .lead-text {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 3rem;
  line-height: 1.6;
}

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

.service-feature {
  color: white;
  background-color: #343434;
  border-radius: 15px;
  padding: 0.75rem;
  font-weight: normal;
}

.service-feature h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0;
}

.service-feature h3::after {
  display: none;
}

.service-feature h3::before {
  display: none;
}

.service-feature p {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.6;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.service-footer .tagline {
  color: #b0b0b0;
  font-size: 1.1rem;
}

.btn {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  transform: translateY(-2px) !important;
  background-color: none !important;
}

.btn-service {
  background-color: white;
  color: #333;
  padding: 1rem 3rem;
  border-radius: 30px;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  background-color: #f8f9fa;
}

.brands-section {
  background: #fff;
}

.brands-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #2c2c2e;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  align-items: center;
  justify-items: center;
}

.brand-logo {
  max-width: 150px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Services Offered Section */
.services-offered-section {
  background: #202020;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.services-offered-section .container {
  position: relative;
  z-index: 2;
}

.services-offered-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card-content {
  flex: 1;
  max-width: 70%;
}

.service-card-image {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -15px;
  height: 270px;
}

.service-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c2c2e;
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  color: #666;
  padding-left: 1.5rem;
  position: relative;
  font-size: 16px;
}

.service-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #242424;
  font-weight: bold;
  font-size: 1.2rem;
}

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

/* Estilos específicos para Mecánica General */
.service-card-mecanica {
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.service-card-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: #2563eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.service-card-mecanica .service-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c2c2e;
  margin: 0;
  line-height: 1.2;
}

.service-card-mecanica .service-card-content {
  width: 100%;
  max-width: 100%;
}

.service-card-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.service-card-columns:has(.service-card-list-left:only-child),
.service-card-columns:has(.service-card-list-left:first-child:last-child) {
  grid-template-columns: 1fr;
}

.service-card-list-left,
.service-card-list-right {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card-list-left li,
.service-card-list-right li {
  color: #666;
  padding-left: 1.5rem;
  position: relative;
  font-size: 16px;
}

.service-card-list-left li::before,
.service-card-list-right li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #242424;
  font-weight: bold;
  font-size: 1.2rem;
}

.services-cta {
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.services-cta-text {
  color: white;
  flex: 1;
}

.services-cta-text h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.services-cta-text p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

.services-cta .btn-contact {
  background-color: white;
  color: #333;
  padding: 1rem 3rem;
  border-radius: 30px;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services-cta .btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  background-color: #f8f9fa;
}

/* Agenda Section */
.agenda-section {
  background: #202020;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.agenda-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000px;
  height: 800px;
  background: radial-gradient(circle, #223765 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-30%, 30%);
  z-index: 1;
}

.agenda-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1000px;
  height: 800px;
  background: radial-gradient(circle, #223765 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, 30%);
  z-index: 1;
}

.agenda-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  justify-content: center;
}

.agenda-content {
  color: white;
}

.agenda-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.agenda-label img {
  width: 24px;
  height: 24px;
}

.agenda-content h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.agenda-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  padding: 12px;
}

.contact-icon img {
  width: 46px !important;
  height: 46px !important;
  object-fit: contain;
}

.contact-details h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-details p {
  font-size: 1rem;
  margin: 0;
  opacity: 1;
  color: white;
}

.agenda-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.agenda-form-wrapper h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c2c2e;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.agenda-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

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

.form-group label {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
}

.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: white;
  transition: border-color 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 9L1 4h10z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  background-image: none;
  padding-right: 1rem;
  resize: vertical;
  min-height: 100px;
}

.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4a90e2;
}

.agenda-form .btn-submit {
  background: #2c2c2e;
  color: white;
  padding: 1.2rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 0.5rem;
}

.agenda-form .btn-submit:hover {
  background: #1c1c1e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Pitbox Section */
.pitbox-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.pitbox-header {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.pitbox-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c2c2e;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pitbox-content h3 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #2c2c2e;
  margin-bottom: 1.5rem;
}

.pitbox-content p {
  font-size: 1.1rem;
  color: #242424;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-pitbox {
  background-color: #242424;
  color: white;
  border-radius: 30px;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 318px;
  text-align: center;
}

.btn-pitbox:hover {
  background-color: #1c1c1e;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  color: white;
}

.pitbox-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.pitbox-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 15px;
}

.pitbox-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pitbox-feature-card {
  background-color: #242424;
  border-radius: 15px;
  padding: 1.5rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pitbox-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pitbox-feature-content {
  flex: 1;
  text-align: left;
}

.pitbox-feature-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
  line-height: 1.3;
}

.pitbox-feature-content p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.pitbox-feature-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.pitbox-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Reviews Section */
.reviews-section {
  background: #f8f9fa;
  padding: 5rem 0;
  overflow: hidden;
}

.reviews-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.reviews-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c2c2e;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.reviews-header p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.reviews-slider-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 60px;
}

.reviews-slider {
  position: relative;
  width: 100%;
}

.review-card {
  background: #242528;
  color: white;
  padding: 2.5rem;
  border-radius: 20px;
  outline: none;
  box-sizing: border-box;
}

.review-quote-icon {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.9;
  font-family: Georgia, serif;
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.review-author {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.review-date {
  font-size: 0.9rem;
  color: #999;
}

/* Slick Slider Custom Arrows */
.reviews-slider-wrapper .slick-arrow {
  width: 40px;
  height: 40px;
  z-index: 10;
  background: white;
  border: 2px solid #333;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.reviews-slider-wrapper .slick-arrow:before {
  display: none;
}

.reviews-slider-wrapper .slick-prev:hover,
.reviews-slider-wrapper .slick-next:hover {
  background: #2c2c2e;
  border-color: #2c2c2e;
}

.reviews-slider-wrapper .slick-prev {
  left: 0;
}

.reviews-slider-wrapper .slick-next {
  right: 0;
}

.reviews-slider-wrapper .slick-prev img,
.reviews-slider-wrapper .slick-next img {
  width: 16px;
  height: 16px;
  display: block;
}

.reviews-slider-wrapper .slick-prev:hover img,
.reviews-slider-wrapper .slick-next:hover img {
  filter: brightness(0) invert(1);
}

/* Slick Dots */
.reviews-slider-wrapper .slick-dots {
  bottom: -40px;
  position: relative !important;
  display: flex !important;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
  margin-top: 1.5rem;
}

.reviews-slider-wrapper .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}

.reviews-slider-wrapper .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0;
}

.reviews-slider-wrapper .slick-dots li button:before {
  display: none;
}

.reviews-slider-wrapper .slick-dots li.slick-active button {
  background: #2c2c2e;
  width: 30px;
  border-radius: 5px;
}

/* Fix Slick Track */
.reviews-slider .slick-list {
  overflow: hidden;
}

.reviews-slider .slick-track {
  display: flex;
  align-items: center;
}

.reviews-slider .slick-slide {
  height: auto;
}

.reviews-slider .slick-slide > div {
  height: 100%;
}

/* Benefits Section */
.benefits-section {
  position: relative;
  padding: 5rem 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.benefits-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.benefits-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) blur(2px);
}

.benefits-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits-card {
  background: rgb(130 130 133 / 60%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  line-height: 1.2;
  text-align: center;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.benefits-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.benefit-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-color: #29a959;
  color: #29a959;
  fill: #29a959;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  color: #29a959;
}

.benefit-text {
  color: white;
  flex: 1;
}

.benefits-cta {
  text-align: center;
  margin-top: 2rem;
}

.benefits-cta p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: white;
}

.benefits-cta p:last-child {
  margin-bottom: 0;
}

.benefits-cta a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.benefits-cta a:hover {
  opacity: 0.8;
}

/* Empresas Section */
.empresas-section {
  background: #f8f9fa;
  padding: 5rem 0;
}

.empresas-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.empresas-header-content {
  flex: 1;
  min-width: 300px;
}

.empresas-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c2c2e;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

.empresas-header p {
  font-size: 1.1rem;
  color: #2c2c2e;
  line-height: 1.6;
  margin: 0;
}

.empresas-header .btn-register {
  background: #2c2c2e;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.empresas-header .btn-register:hover {
  background: #1c1c1e;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.empresas-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.empresas-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.empresas-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.empresas-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.empresas-feature-card {
  background: #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.empresas-feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2e;
  margin: 0;
  line-height: 1.3;
}

.empresas-feature-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.servicios-principales-section {
  padding: 2rem 0 2rem 0 !important;
}

.servicios-principales-wrapper {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.servicios-principales-item {
  flex: 0 0 calc(50% - 0.75rem);
  display: flex;
}

.footer-contact-banner {
  background: #383838;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
}

.footer-contact-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-contact-info {
  flex: 1;
}

.footer-contact-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
}

.footer-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-info-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-info-item p {
  font-size: 1rem;
  color: #e0e0e0;
  margin: 0;
}

.footer-contact-btn {
  background: white;
  color: #2c2c2e;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.footer-contact-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  color: #2c2c2e;
}

.step-number {
  position: relative;
  color: black;
}

.process-timeline .process-timeline-item:not(:last-child) .step-number:after {
  content: " ";
  background: #ffffff;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(36, 36, 36, 1) 100%
  );
  height: 3px;
  width: 400%;
  left: 100%;
  position: absolute;
}

.red-confianza-section {
  background: #242424 !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 1rem 0 1rem 0 !important;
}

.red-confianza-content {
  background: #353535;
  padding: 2rem;
  border-radius: 16px;
  color: white;
}

.red-confianza-section h2 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: white;
}

.beneficio-item {
  background: rgba(36, 37, 40, 1);
  padding: 0.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(255, 255, 255, 0.1);
}

.beneficio-icon {
  flex-shrink: 0;
  color: #fff;
}

.beneficio-item p {
  font-size: 0.95rem;
  color: #fff;
  margin: 0;
}

#menuSwitcher a {
  font-size: 14px;
  padding: 5px 25px;
  border-radius: 7px;
}

#menuSwitcher {
  background-color: rgba(255, 255, 255, 0.15) !important;
  border-radius: 7px;
}

#menuSwitcher .active a {
  background-color: #000;
  color: #fff !important;
}

/* Socios Estratégicos Section */
.socios-estrategicos-section {
  background: rgba(36, 36, 36, 1);
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.socios-header {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  padding: 2rem 0rem;
  gap: 1rem;
}

.socios-header-text {
  font-size: 1.1rem;
  color: white;
}

.socios-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  flex-grow: 1;
}

.socios-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-feature-card {
  background: rgba(36, 37, 40, 1);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
}

.pitbox-title-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
}

.pitbox-go {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  font-style: italic;
}

.by-drift {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 20px !important;
}

.express-feature-card-columns {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.express-feature-card-column {
}

.express-feature-card {
  background: #242528;
  border-radius: 16px;
  padding: 1.5rem;
  width: 366px;
  max-height: 100px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.express-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.express-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.express-feature-icon svg {
  width: 32px;
  height: 32px;
}

.express-feature-content {
  flex: 1;
  text-align: left;
}

.express-feature-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.express-feature-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin: 0;
}

/* Mantenimiento Express Section */
.mantenimiento-express-section {
  background-color: var(--color-primary);
  padding: 60px 0;
}

.mantenimiento-express-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.mantenimiento-express-section > .container > .text-center > p {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 0;
}

/* ¿Por qué elegir Pitbox? Section */
.porque-pitbox-section {
  background: rgba(36, 36, 36, 1);
  padding: 60px 0;
}

.porque-pitbox-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.como-funciona-section-title {
  color: white !important;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
}

.como-funciona-section-description {
  color: white !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
}

/* Programa de Lealtad Section */
.programa-lealtad-section {
  background: linear-gradient(180deg, #1b1b1b 0%, #29a959 100%);
  padding: 2rem 0;
}

.programa-lealtad-section-title {
  color: white !important;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
}

.programa-lealtad-section-description {
  color: white !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
}

.loyalty-card {
  background: #3e3e3e;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loyalty-icon {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.loyalty-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loyalty-icon img,
.loyalty-icon svg {
  width: 48px;
  height: 48px;
}

.loyalty-card-title {
  color: white !important;
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  margin-bottom: 0 !important;
}

.loyalty-card-description {
  color: white !important;
}
/* ============================================
   MEDIA QUERIES
   ============================================
   Breakpoints estándar:
   - 576px: Extra Small (xs)
   - 768px: Small (sm)
   - 992px: Medium (md)
   ============================================ */

/* ============================================
   MEDIA QUERIES - 576px (Extra Small)
   ============================================ */

@media (max-width: 576px) {
  #menuSwitcher a {
    padding: 1rem;
  }

  .process-timeline .process-timeline-item:not(:last-child) .step-number:after {
    display: none !important;
  }

  .loyalty-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 1rem !important;
  }

  .loyalty-icon {
    width: 50px;
    margin-bottom: 0.5rem !important;
  }

  .loyalty-icon svg {
    width: 32px;
    height: 32px;
  }

  .loyalty-card-content {
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }

  .loyalty-card-title {
    text-align: start;
    font-size: 1.2rem !important;
  }

  .loyalty-card-description {
    text-align: start;
    font-size: 1rem !important;
  }

  .programa-lealtad-section {
    padding: 1rem 0 !important;
  }

  .programa-lealtad-section-title {
    font-size: 1.6rem !important;
  }

  .programa-lealtad-section-description {
    font-size: 1rem !important;
  }

  .porque-pitbox-section h2 {
    font-size: 1.6rem !important;
  }

  .porque-pitbox-section > .container > .text-center > p {
    font-size: 1rem !important;
  }

  .mantenimiento-express-section {
    padding: 2rem 0 !important;
  }

  .panel-tiempo-real-section-title {
    font-size: 1.6rem !important;
  }

  .panel-tiempo-real-section-description {
    font-size: 1rem !important;
  }

  /* ¿Cómo funciona? Section */
  .como-funciona-section {
    background: #1a1a1a;
    padding: 2rem 0;
  }

  .como-funciona-section-title {
    color: white !important;
    font-size: 1.6rem !important;
  }

  .como-funciona-section-description {
    color: white !important;
    font-size: 1rem !important;
  }

  .express-feature-card-column {
    width: 100%;
    padding: 0 1rem !important;
  }

  .pitbox-title-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: start !important;
    justify-content: center !important;
    text-align: start;
    gap: 0;
  }

  .pitbox-go {
    font-size: 2rem !important;
    margin-bottom: 0 !important;
  }

  .by-drift {
    margin-bottom: 0 !important;
    font-size: 2rem !important;
  }

  .hero-subtitle {
    font-size: 1.5rem !important;
  }

  .socios-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
  }

  .socios-logos {
    gap: 2rem;
  }

  .process-timeline .process-timeline-item .step-number:after {
    display: none !important;
  }

  .red-confianza-section {
    padding: 1rem 0 1rem 0 !important;
  }

  .red-confianza-content {
    padding: 1rem !important;
  }

  .red-confianza-section .cta-banner .btn-in-banner {
    border-radius: 0 !important;
    width: 100% !important;
  }

  .red-confianza-section h2 {
    font-size: 24px !important;
  }

  .empresas-header {
    text-align: start;
    align-items: start;
  }

  .empresas-header h2 {
    font-size: 2rem;
  }

  .benefits-image {
    margin-top: -300px;
  }

  .benefits-list li {
    margin-bottom: 24px;
  }

  .benefits-content h2 {
    font-size: 24px;
  }

  .reviews-slider-wrapper {
    padding: 0;
  }

  .reviews-container {
    display: flex;
    flex-direction: column;
  }

  .agenda-content h2 {
    font-size: 26px;
  }

  .agenda-content p {
    font-size: 16px;
  }

  .services-cta .btn-contact {
    width: 100%;
    justify-content: center;
  }

  .service-card {
    align-items: start;
  }

  .service-section {
    padding: 1rem;
  }

  .service-section-container {
    padding: 1rem;
  }

  .brands-section h2 {
    font-size: 30px;
  }

  .service-footer .btn-service {
    width: 100%;
  }

  .service-feature h3 {
    font-size: 16px;
  }

  .service-section .lead-text {
    font-size: 14px;
  }

  .service-section h2 {
    font-size: 20px;
  }

  .servicios-principales-section {
    padding: 0 !important;
  }

  .footer-contact-banner {
    padding: 2rem;
  }

  .footer-contact-info h3 {
    font-size: 1.5rem;
  }

  .footer-info-item {
    text-align: start;
    align-items: start;
  }

  .footer-info-item h4 {
    font-size: 0.9rem;
  }

  .footer-info-item p {
    font-size: 0.9rem;
  }

  header .navbar {
    padding: 10px 0;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 16px;
    font-weight: normal;
  }

  .hero-content {
    padding: 0;
  }

  .hero-cta .btn-hero {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .btn-pitbox {
    width: 100% !important;
  }
}

/* ============================================
   MEDIA QUERIES - 768px (Small)
   ============================================ */

@media (max-width: 768px) {
  .hero-wrapper {
    height: 100vh;
  }

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

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .hero-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .hero-contact .divider {
    display: none;
  }

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

  .service-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-footer {
    flex-direction: column;
    text-align: center;
  }

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

  .brand-logo {
    max-width: 100px;
  }

  .service-card-columns {
    grid-template-columns: 1fr;
    gap: 0 !important;
  }

  .service-card-mecanica {
    padding: 1.5rem;
  }

  .service-card-mecanica .service-card-title {
    font-size: 1.3rem;
  }

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

  .service-card {
    flex-direction: column;
    text-align: center;
  }

  .service-card-image {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }

  .service-card ul li {
    text-align: left;
  }

  .services-cta {
    flex-direction: column;
    text-align: center;
  }

  .services-offered-section {
    padding: 2rem 0;
  }

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

  .pitbox-section {
    padding: 3rem 0;
  }

  .pitbox-content h2 {
    font-size: 2rem;
  }

  .pitbox-content h3 {
    font-size: 1.3rem;
  }

  .pitbox-content p {
    font-size: 1rem;
  }

  .pitbox-feature-card {
    padding: 1.25rem;
    gap: 1.25rem;
  }

  .pitbox-feature-icon {
    width: 45px;
    height: 45px;
  }

  .pitbox-feature-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
  }

  .pitbox-feature-content p {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .servicios-principales-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .servicios-principales-item {
    flex: 0 0 100% !important;
    width: 100% !important;
  }

  .footer-contact-content {
    align-items: start;
    justify-content: start;
  }
}

/* ============================================
   MEDIA QUERIES - 992px (Medium)
   ============================================ */

@media (max-width: 992px) {
  header {
    background-color: rgba(92, 92, 92, 0.95);
  }

  header .navbar-collapse {
    background-color: rgba(35, 35, 36, 0.98);
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
  }

  header .nav-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  header .btn-agenda,
  header .btn-login {
    width: 100%;
    justify-content: center;
  }

  .agenda-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .agenda-content h2 {
    font-size: 2.2rem;
  }

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

  .agenda-form-wrapper {
    padding: 2rem;
  }

  .agenda-section::before {
    width: 80%;
    right: -20%;
  }

  .pitbox-header {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pitbox-image {
    order: 1;
  }

  .pitbox-content {
    order: 2;
  }

  .pitbox-content h2 {
    font-size: 2.5rem;
  }

  .pitbox-content h3 {
    font-size: 1.5rem;
  }

  .pitbox-features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reviews-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .reviews-header {
    text-align: center;
  }

  .reviews-header h2 {
    font-size: 2rem;
  }

  .reviews-slider-wrapper {
    max-width: 100%;
    padding: 0 50px;
  }

  .review-card {
    padding: 2rem;
  }

  .review-text {
    font-size: 0.95rem;
  }

  .benefits-card {
    padding: 2rem;
    max-width: 100%;
  }

  .benefits-card h2 {
    font-size: 2rem;
  }

  .benefits-list li {
    font-size: 1rem;
  }

  .benefit-icon {
    width: 28px;
    height: 28px;
  }

  .benefit-icon svg {
    width: 16px;
    height: 16px;
  }

  .empresas-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .empresas-header-content {
    width: 100%;
  }

  .empresas-header h2 {
    font-size: 2rem;
  }

  .empresas-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .empresas-features {
    gap: 1.5rem;
  }

  .footer-contact-banner {
    padding: 2.5rem;
  }

  .footer-contact-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-contact-info h3 {
    font-size: 1.8rem;
  }
}
