:root {
  --primary-orange: #f38230;
  --dark-text: #333;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

/* Hero Section con Logo de Fondo */
.hero-section {
  min-height: 80vh;
  background-image: url("img/LOGO\ COLOR\ SAINT\ TO\ JHON.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: relative;
}

.text-content h1 {
  font-size: 1.8rem;
  color: #000;
  letter-spacing: 1px;
}

.description {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  max-width: 400px;
}

/* Botón personalizado */
.btn-orange {
  background-color: var(--primary-orange);
  color: white;
  border-radius: 25px;
  padding: 10px 35px;
  font-weight: bold;
  border: none;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 130, 48, 0.3);
}

.btn-orange:hover {
  background-color: #d66d24;
  color: white;
  transform: translateY(-2px);
}
/* Contact Section */
.contact-section {
  background-color: var(--primary-orange);
}

.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;
}
@media (max-width: 576px) {
  .contact-item {
    font-size: 0.9rem;
  }

  .contact-item i {
    font-size: 1.2rem;
    margin-right: 15px;
  }
}
@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;
  }
}

/* Info Section */
.info-section {
  background-color: #fff;
}

.footer {
  border-top: 1px solid #eee;
  font-size: 0.85rem;
}

.footer a {
  color: #5bc0de;
}

/* Ajustes Responsivos */
@media (max-width: 992px) {
  .hero-section {
    background-size: 100%;
    background-position: center;
    text-align: center;
  }
  .description {
    margin: 0 auto;
  }
  .text-content {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 15px;
  }
}
