@import url("fontawesome-all.min.css");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic,700,900");

/* Minimal landing page CSS — solo reglas usadas por la landing page */

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Source Sans Pro", sans-serif;
  color: #919499;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* Header wrapper */
.landing__page-container {
  width: 100%;
}

.landing__header {
  padding: 0;
}

.landing__header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ------------------
Hero 
--------------------*/
.landing-hero {
  width: 100%;
}

.landing-hero--vh70 {
  height: 70vh;
  min-height: 480px;
  background-image: url("../img/landing-img/hero-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #f5f6f7; /* fallback gris claro */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.landing-hero h1,
.landing-hero .display-4 {
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.landing-hero p,
.landing-hero .lead {
  color: #ffffff;
  margin: 0;
}

/* ------------------
Expertice
--------------------*/
.expertice__presentation {
  background-color: #ea5151;
}
.expertice__presentation h2 {
  color: #ffffff;
  font-weight: 800;
}

/* ------------------
devices
--------------------*/
.devices__title-container h3 {
  color: #ea5151;
  font-weight: 700;
}

.devices-section {
  background-color: #eeeeee;
}

.devices__catalog {
  padding-top: 1rem;
}

.device-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.device-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.device-card-img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 240px;
  margin: 1rem auto 0;
  object-fit: contain;
}

.device-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.device-card-body h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 0.75rem;
}

.device-card-body p {
  color: #6b6b6b;
  margin: 0;
  flex: 1;
}

.device-card-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.device-card-actions .btn {
  border-radius: 0.75rem;
}

.device-card-actions .btn-primary {
  min-width: 110px;
}

.device-card-actions .btn-outline-secondary {
  min-width: 110px;
}

/* Footer */
.landing__footer {
  padding: 2rem 0;
  background: #f8f8f8;
}

.landing__footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

/* ------------------
Services
--------------------*/

.services-section h2 {
  color: #000000;
  font-weight: 700;
}

.services__grid {
  gap: 1.5rem;
}

.service-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  min-height: 100%;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #1b1b1b;
  color: #ffffff;
  font-size: 1.2rem;
}

.service-card-header h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #ea5151;
  font-weight: 700;
}

.service-card-list {
  margin: 0;
  padding-left: 4rem;
  list-style-position: outside;
  color: #6b6b6b;
}

.service-card-list li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* ------------------
Contact Section
--------------------*/
.contact-section {
  background-color: #000000;
  color: #f3f3f3;
}

.contact-section h2 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 2rem;
}

.landing-contact__form {
  max-width: 760px;
  margin: 0 auto;
}

.landing-contact__label {
  display: block;
  margin-bottom: 0.5rem;
  color: #f3f3f3;
  font-weight: 600;
}

.landing-contact__input,
.landing-contact__textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #d3d3d3;
  border-radius: 0.75rem;
  padding: 1rem;
  color: #f3f3f3;
}

.landing-contact__input::placeholder,
.landing-contact__textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.landing-contact__textarea {
  min-height: 170px;
  resize: vertical;
}

.landing-contact__error {
  display: block;
  margin-top: 0.5rem;
  min-height: 1rem;
  color: #f6b3b3;
  font-size: 0.95rem;
}

.landing-contact__field-invalid {
  border-color: #ff6b6b;
}

.landing-contact__input:focus,
.landing-contact__textarea:focus {
  outline: none;
  border-color: #f3f3f3;
  box-shadow: 0 0 0 0.25rem rgba(243, 243, 243, 0.12);
}

.landing-contact__submit {
  min-width: 180px;
}

/* Keep Bootstrap utility classes untouched (they come from bootstrap files). */
