@charset "UTF-8";
/* Variables de color personalizadas */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e67e22;
  --light-gray: #ecf0f1;
  --dark-gray: #34495e;
}

/* Estilos globales */
body {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: var(--dark-gray);
}

/* Tipografía para títulos */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-title {
  font-family: "Oswald", sans-serif !important;
  font-weight: 600 !important;
}

/* Hero section con gradiente suave */
.hero-section {
  background: #000 url("img/home01.jpg") no-repeat center center/cover;
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: white;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Botones personalizados */
.btn-primary-custom {
  background-color: var(--accent-color);
  color: white;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary-custom:hover {
  background-color: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
}

/* Cards de servicios */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color), #5dade2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
  color: #fff;
}

/* Sección de beneficios */
.benefits-section {
  background-color: var(--light-gray);
  padding: 80px 0;
}

.benefit-item {
  text-align: center;
  padding: 30px 20px;
}

.benefit-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

/* Galería */
.gallery-item {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* CTA final */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-gray) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}
.cta-section h2,
.cta-section p {
  color: white;
}

/* Footer */
.footer-section {
  background-color: #1a252f;
  color: #ecf0f1;
  padding: 20px 0;
}

/* Responsive ajustes */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }
}