/* === Why Renovate Cards === */
.card {
  border: none;
  border-radius: 0.75rem;
  background-color: #aca2a2; /* o el color que prefieras */
  box-shadow: 0 8px 16px rgba(253, 107, 107, 0.1); /* ← sombra agregada */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000000;
}

.card-text {
  font-size: 0.95rem;
  color: #555555;
}

.service-row {
  padding-left: 12px; /* o el valor que prefieras */
  padding-right: 12px;
}

/* === Consultation Form === */
form input,
form textarea {
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  padding: 0.75rem;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.btn-2 {
  background-color: #ffdd8e;
  color: #000000;
  border-radius: 2rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-2:hover {
  background-color: #80775b;
}

.btn-2 {
  margin-bottom: 3rem; /* Espacio debajo del botón */
}

/* === Section Headings === */
h3, h4 {
  font-weight: 700;
  text-align: center;
  color: #fff; /* Mejor contraste sobre fondo oscuro o imagen */
  text-shadow: 0 2px 4px rgb(0, 0, 0); /* Añade profundidad y legibilidad */
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

/* Ajuste para evitar que el contenido se encime con el navbar */
body {
  padding-top: 80px; /* Ajusta según la altura real de tu navbar */
}

body {
  background-color: #a3aab0; /* Un gris claro elegante */
  /* O bien, para textura: */
  background-image: url('images/bg.png')
  /* background-size: cover; */
}

/* Encabezado principal */
.appliances-section h1 {
  color: #e2d5d5;
  text-shadow: 0 2px 6px rgb(0, 0, 0);
}

/* Subtítulo */
.appliances-section h2 {
  color: #e2d5d5;
  text-shadow: 0 2px 6px rgb(0, 0, 0);
}

/* Párrafo introductorio */
.appliances-section p.lead {
  color: #e2d5d5;
  text-shadow: 0 2px 6px rgb(0, 0, 0);
  
}

.text-pearl-overlay {
  position: relative;
  display: inline-block; /* Para que el overlay se ajuste al contenido */
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  z-index: 1;
}

.text-pearl-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45); /* Ajusta opacidad según imagen */
  border-radius: 0.5rem;
  z-index: -1;
}

.text-pearl-overlay p.lead {
  color: #e2d5d5;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.6),
    0 0 1px rgba(0, 0, 0, 0.4);
  margin: 0;
}

/* Fondo con imagen */
.appliances-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
  color: #fff;
  overflow: hidden;
}

/* Overlay semitransparente */
.appliances-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.6); /* Ajusta opacidad según tu imagen */
  z-index: 1;
}

/* Contenido encima del overlay */
.appliances-section .content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
}



/* Sombra para encabezados y párrafo */
.appliances-section h1,
.appliances-section h2,
.appliances-section p.lead {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}



/* Footer */
.footer {
  background: linear-gradient(135deg, #2b2b2b, #000000);
  color: #f5f5f5;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.4);
}

.footer-title {
  font-size: 1.1rem;
  color: #F5B76B;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-link {
  color: #C5C5C5;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: #F5B76B;
}

.social-icon {
  font-size: 1.5rem;
  color: #C5C5C5;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #F5B76B;
}

/* Responsivo */
@media (max-width: 768px) {
  .header-content h1 {
    font-size: 2.2rem;
  }

  .footer-title,
  .footer-link {
    text-align: center;
  }

  .footer .col-md-3 {
    text-align: center;
  }

  .social-icon {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .footer-title {
    font-size: 0.95rem;
  }

  .footer-link {
    font-size: 0.85rem;
  }

  .social-icon {
    font-size: 1.2rem;
    margin: 0 6px;
  }

  .footer img {
    max-width: 80px;
  }

  .footer .row > div {
    margin-bottom: 30px;
  }
}


