/* Heros Base (Escritorio) */

.hero-arando {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.51), rgba(0, 0, 0, 0.32)), url("../img/mvelez/arando-campo.webp");
  background-position: center center;
  background-size: cover;
}

.hero-cosechadora {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.48)), url("../img/mvelez/Hero-cosechadora.webp");
  background-position: center bottom;
  background-size: cover;
}

.hero-cochera {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.44), var(--background, #000000)), url("../img/mvelez/cochera-maquinaria-agricola.webp");
  background-position: center center;
  background-size: cover;
}

/* Manteniendo los estilos anteriores */

:root {
  --primary: #01821e;
  --secondary: #edd501;
  --accent: #ffcc7c;
  --background: black;
  --text: #FFFFFF;
}

body {
  background-color: var(--background);
  color: var(--text);
}

.custom-card {
  background: rgba(107, 43, 137, 0.1);
  border-radius: 15px;
  padding: 20px;
  margin: 15px;
  transition: transform 0.3s ease;
  border: 1px solid var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-primary {
  background-color: var(--primary);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--accent);
  transform: scale(1.05);
}

.section-title {
  color: var(--secondary);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50%;
  height: 3px;
  background: var(--accent);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.profile-image {
  border-radius: 50%;
  border: 4px solid var(--primary);
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.price-card {
  background: linear-gradient(145deg, var(--primary), var(--background));
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  margin: 20px 0;
}

.check-item {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

.check-icon {
  color: var(--secondary);
  margin-right: 10px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Hero Design System Elements */

.hero-tag {
  display: inline-block;
  color: var(--secondary, #edd501);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-title {
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.hero-buttons-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-hero-primary {
  height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary, #edd501);
  color: #000000 !important;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(237, 213, 1, 0.25);
  text-decoration: none;
}

.btn-hero-primary:hover {
  background-color: #fff200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 213, 1, 0.4);
}

.btn-hero-secondary {
  height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Mobile Hero Redesign (< 768px) */

@media (max-width: 767.98px) {
  .hero-arando, .hero-cosechadora {
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 640px !important;
    aspect-ratio: auto !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }
}

@media (max-width: 767.98px) {
  .hero-arando {
    background-image: linear-gradient( 180deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.30) 35%, rgba(0, 0, 0, 0.55) 100% ), url("../img/mvelez/hero-index-mobile.webp") !important;
    background-position: center top !important;
  }
}

@media (max-width: 767.98px) {
  .hero-cosechadora {
    background-image: linear-gradient( 180deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.30) 35%, rgba(0, 0, 0, 0.55) 100% ), url("../img/mvelez/hero-servicios-mobile.webp") !important;
    background-position: center top !important;
  }
}

@media (max-width: 767.98px) {
  .hero-arando > .container.hero-content-container, .hero-cosechadora > .container.hero-content-container {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding-top: clamp(125px, 27vh, 185px) !important;
    padding-bottom: 24px !important;
  }
}

@media (max-width: 767.98px) {
  .hero-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .hero-tag {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    line-height: 1.3;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: clamp(1.6rem, 7.2vw, 2.15rem);
    line-height: 1.15;
    font-weight: 800;
    max-width: 340px;
    margin-bottom: 14px;
    word-break: break-word;
  }
}

@media (max-width: 767.98px) {
  .hero-description {
    font-size: 0.92rem;
    line-height: 1.42;
    max-width: 340px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.92);
  }
}

@media (max-width: 767.98px) {
  .hero-buttons-wrapper {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
    max-width: 340px;
  }
}

@media (max-width: 767.98px) {
  .btn-hero-primary, .btn-hero-secondary {
    height: 54px;
    flex: 1 1 0%;
    width: 50%;
    padding: 0 12px;
    font-size: 0.92rem;
    white-space: nowrap;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .hero-cochera {
    background-image: linear-gradient(rgba(0,0,0,0.44) 68%, var(--background) 100%), url("../img/mvelez/hero-contacto-mobile.webp") !important;
    background-position: 80% center !important;
    background-size: auto, cover !important;
  }
}

