/* Reset y Variables */
:root {
  --color-yellow: #ffd700;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray: #333333;
  --color-blue: #4a90e2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  overflow-x: hidden;
  background-color: var(--color-black);
}

/* Header Section */
.header-section {
  background-color: var(--color-black);
  color: var(--color-white);
  border-bottom: 2px solid var(--color-yellow);
}

.logo-text {
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-white);
}

.header-logo {
  width: 60px;
  height: auto;
  background-color: var(--color-white);
  padding: 5px;
  border-radius: 5px;
}

/* Hero Section */
.hero-section {
  min-height: 600px;
}

.hero-left {
  background-color: var(--color-yellow);
  padding: 80px 60px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-black);
  margin-bottom: 30px;
  line-height: 1;
}

.hero-description {
  color: var(--color-black);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-mas-info {
  background-color: var(--color-white);
  color: var(--color-black);
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.btn-mas-info:hover {
  background-color: var(--color-black);
  color: var(--color-yellow);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-right {
  position: relative;
  min-height: 600px;
}

.hero-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-image: url("img/epi.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.3) 0%,
    rgba(118, 75, 162, 0.3) 100%
  );
}

/* Services Section */
.services-section {
  background-color: var(--color-black);
  padding: 100px 0;
}

.services-title {
  color: var(--color-yellow);
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 60px;
}

.service-card {
  background-color: var(--color-black);
  padding: 30px 20px;
  height: 100%;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.service-card-highlighted {
  border: 2px solid var(--color-blue);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.service-icon {
  font-size: 3rem;
  color: var(--color-yellow);
  margin-bottom: 20px;
}

.service-title {
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  min-height: 60px;
}

.service-list {
  list-style: none;
  padding: 0;
  color: var(--color-yellow);
}

.service-list li {
  padding: 8px 0;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  padding-left: 0;
}

.service-list li::before {
  content: "•";
  color: var(--color-yellow);
  font-weight: bold;
  margin-right: 10px;
}

/* Contact Section */
.contact-section {
  background-color: var(--color-black);
  padding-bottom: 50px;
}

.contact-image {
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info-wrapper {
  background-color: var(--color-yellow);
  display: flex;
  align-items: center;
  padding: 60px;
}

.contact-content {
  width: 100%;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-black);
  margin-bottom: 50px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--color-black);
}

.contact-item i {
  font-size: 2rem;
  margin-right: 20px;
  width: 40px;
}

.contact-item span {
  font-weight: 600;
}

/* Logo Footer */
.logo-footer {
  background-color: var(--color-black);
  padding: 30px;
  padding-left: 60px;
}

/* En móvil dejamos que Bootstrap centre */
@media (max-width: 767.98px) {
  .logo-footer {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.logo-footer img {
  width: 80px;
  height: auto;
  background-color: var(--color-white);
  padding: 10px;
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-left {
    padding: 60px 40px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .services-title {
    font-size: 2.5rem;
  }

  .contact-title {
    font-size: 2.5rem;
  }

  .contact-item {
    font-size: 1.2rem;
  }

  .contact-item i {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-left {
    padding: 40px 30px;
  }

  .hero-right {
    min-height: 400px;
  }

  .services-section {
    padding: 60px 0;
  }

  .services-title {
    font-size: 2rem;
  }

  .contact-info-wrapper {
    padding: 40px 30px;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-item {
    font-size: 1rem;
  }

  .logo-footer {
    padding-left: 30px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .service-card {
    padding: 20px 15px;
  }

  .contact-item {
    font-size: 0.9rem;
  }

  .contact-item i {
    font-size: 1.2rem;
    margin-right: 15px;
  }
}
