/* Import a modern, high-tech font */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

/* General Styles */
body {
  font-family: "Inter", sans-serif; /* Cleaner, more modern than Arial */
  margin: 0;
  padding: 0;
  line-height: 1.7;
  background-color: #f8fafc; /* Lighter, "Airy" background */
  color: #1e293b; /* Deep slate instead of pure #333 */
}

/* Header & Navigation Combined */
header {
  background: linear-gradient(
    100deg,
    #0f172a 0%,
    #1e3a8a 100%
  ); /* Premium Navy Gradient */
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.8em;
  letter-spacing: -1px;
  font-weight: 700;
}

.justify {
  text-align: justify;
}

nav {
  background-color: rgba(255, 255, 255, 0.05); /* Subtle transparency */
  backdrop-filter: blur(10px);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav a {
  color: #cbd5e1;
  text-decoration: none;
  margin: 0 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #60a5fa; /* Modern Electric Blue */
}

/* Sections */
section {
  /*padding: 80px 20px;*/
  padding: 2.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

section h2 {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 40px;
  color: #0f172a;
}

/* Service Grid - New Addition */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-10px); /* Modern lift effect */
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* List Styles */
ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.btn:hover {
  background-color: #1d4ed8;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
  transform: scale(1.02);
}

/* Footer */
footer {
  background-color: #0f172a;
  color: #94a3b8;
  text-align: center;
  padding: 50px 0;
  margin-top: 50px;
}

/* Add these to your CSS file */

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  padding: 40px 30px;
  background: white;
  border-radius: 12px;
  text-align: center; /* Center-aligns the icons and text */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #2563eb; /* Adds a small brand-color accent on top */
}

.card-icon {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #0f172a;
}

.logo-header {
  display: flex;
  flex-direction: column; /* Stack title-logo, tagline, button vertically */
  align-items: center; /* Center everything horizontally */
  text-align: center;
  padding: 50px 20px;
  gap: 20px;
  background-color: #f5f5f5; /* optional header background */
}
.title-logo {
  display: flex; /* Put company name and logo in a row */
  align-items: center; /* Vertical align between text and logo */
  gap: 20px; /* Space between name and logo */
}

.logo {
  width: 100px;
  height: 100px;
}

.company-name {
  font-size: 2.5em;
  margin: 0;
}
.tagline {
  font-size: 1.2em;
  color: #ffffff;
  margin: 0;
}

.slides-container {
  position: relative;
  width: 100%;
  max-width: 1400px; /* más ancho */
  margin: 0 auto;
  padding-top: 56.25%; /* 16:9 */
}

.slides-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.fa-message {
  color: #ffd700; /* gold */
}
