/* Servicios Page Styles - Diseño similar a imagen de referencia */
.services-page {
  padding: 0;
  background-color: #000;
  min-height: 100vh;
  color: #fff;
}

/* Hero Background Section */
.services-hero-bg {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../media/services/productora.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
}

.services-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
  z-index: 1;
}

.services-hero-bg .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Hero Content Layout */
.services-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 80vh;
}

/* Services Intro */
.services-intro {
  max-width: 500px;
}

.services-main-title {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 30px 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 0.9;
}

.services-subtitle {
  font-size: 2.2rem;
  font-weight: 300;
  color: #ccc;
  margin: 0;
  line-height: 1.2;
}

.highlight-text {
  color: #fff;
  font-weight: 700;
}

/* Services Menu */
.services-menu {
  justify-self: end;
}

.services-nav {
  width: 100%;
  max-width: 450px;
}

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

.service-item {
  transition: all 0.3s ease;
}

.service-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
}

.service-link:hover {
  color: #fff;
  padding-left: 20px;
}

/* Remove empty hover ruleset since it's not needed */
  /* Sin fondo en hover para coincidir con la imagen de referencia */
/* Remove empty hover ruleset */

.service-text {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.service-arrow {
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.7;
  transition: all 0.3s ease;
  transform: translateX(0);
}

.service-link:hover .service-arrow {
  opacity: 1;
  transform: translateX(10px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .services-menu {
    justify-self: center;
  }
  
  .services-nav {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .services-hero-bg .container {
    padding: 0 20px;
  }
  
  .services-hero-content {
    gap: 40px;
    min-height: 90vh;
  }
  
  .services-main-title {
    font-size: 3rem;
  }
  
  .services-subtitle {
    font-size: 1.8rem;
  }
  
  .service-text {
    font-size: 1.1rem;
  }
  
  .service-link {
    padding: 18px 0;
  }
}

@media (max-width: 480px) {
  .services-main-title {
    font-size: 2.5rem;
  }
  
  .services-subtitle {
    font-size: 1.5rem;
  }
  
  .service-text {
    font-size: 1rem;
  }
  
  .service-link {
    padding: 15px 0;
  }
  
  .service-arrow {
    font-size: 1.2rem;
  }
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-item {
  animation: fadeInUp 0.6s ease forwards;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }
.service-item:nth-child(7) { animation-delay: 0.7s; }

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .service-item,
  .service-link,
  .service-arrow {
    animation: none !important;
    transition: none !important;
  }
}

/* Focus states */
.service-link:focus {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
}

/* Estados hover mejorados */
@media (hover: hover) {
  .service-item:hover {
    transform: translateX(5px);
  }
}

@media (hover: none) {
  .service-item:active {
    background: rgba(255, 255, 255, 0.1);
  }
}

/* Sección Cotiza con Nosotros */
.cotiza-section {
  padding: 80px 0;
  background: #ffffff;
  color: #000;
  position: relative;
}

.cotiza-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cotiza-content {
  max-width: 500px;
}

.cotiza-title {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 900;
  color: #000000;
  margin: 0 0 30px 0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}

.cotiza-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 30px;
}

.cotiza-features {
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feature-icon {
  font-size: 1.2rem;
  color: #ffd700;
  font-weight: bold;
  margin-right: 15px;
  min-width: 20px;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.feature-icon:hover {
  color: #ffb300;
  transform: scale(1.2);
  text-shadow: 0 3px 6px rgba(255, 179, 0, 0.4);
}

.feature-text {
  font-size: 1rem;
  color: #333333;
  line-height: 1.4;
}

.cotiza-btn {
  background: linear-gradient(135deg, #ffd700, #ffb300);
  color: #333;
  padding: 14px 32px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cotiza-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.cotiza-btn:hover::before {
  left: 100%;
}

.cotiza-btn:hover {
  background: linear-gradient(135deg, #ffb300, #ff8f00);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 179, 0, 0.5);
  color: #333;
  text-decoration: none;
}

.cotiza-btn:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 15px rgba(255, 179, 0, 0.4);
}

.cotiza-image {
  justify-self: end;
}

.cotiza-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.cotiza-image img:hover {
  transform: scale(1.02);
}

/* Responsive para sección cotiza */
@media (max-width: 1024px) {
  .cotiza-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .cotiza-image {
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .cotiza-section {
    padding: 60px 0;
  }
  
  .cotiza-layout {
    gap: 40px;
  }
  
  .cotiza-title {
    font-size: 2.5rem;
  }
  
  .cotiza-description {
    font-size: 1rem;
  }
  
  .cotiza-btn {
    padding: 12px 28px;
    font-size: 15px;
    border-radius: 10px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .cotiza-btn:hover {
    transform: translateY(-2px) scale(1.01);
  }
}

@media (max-width: 480px) {
  .cotiza-section {
    padding: 40px 0;
  }
  
  .cotiza-title {
    font-size: 2rem;
  }
  
  .cotiza-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}