/* Ajustes generales */
body {
  margin: 0;
  padding: 0;
}
html {
    scroll-behavior: smooth;
}
.navbar {
  padding: 1rem 2rem;
}

.header, .footer {
  padding: 4rem 0;
}

h2 {
  font-weight: 700;
  color: #333;
}

img {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    border-radius: 8px; /* Opcional, añade esquinas redondeadas si lo deseas */
}
.card {
  border: none;
}

.card-title {
  color: #007bff;
}

.card-text {
  color: #555;
}

/* Hero Section */
.hero {
    background: url('../images/ai/hero.jpg') no-repeat center center;
    background-size: cover;
    background-color: green;
    height: 100vh; /* Ocupa toda la altura de la ventana */
    width: 100%; /* Ocupa toda la anchura de la ventana */
}
header {
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #069;
  text-shadow: 1px 1px 2px #ccc; /* Ajusta los valores según necesites */
}

header .display-3 {
  font-size: 4rem;
  font-weight: 700;
  color: black;
}

header p {
  font-size: 3em !important;
  color: white;
  text-shadow:none;
}

header a {
  margin-top: 2rem;
}

/* Igualar altura de todas las tarjetas con una altura mínima */
#funcionalidades .card {
  min-height: 350px; /* Ajusta esta altura según sea necesario */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#funcionalidades .card-img-top {
  height: 200px;
  object-fit: cover;
}

#funcionalidades .card-body {
  flex-grow: 1; /* Mantiene el contenido del cuerpo flexible */
}

#funcionalidades .card:hover {
  transform: translateY(-10px);
}


/* Carrusel */
.carousel img {
  border-radius: 10px;
}

/* Sección Contacto */
form {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
}

/* Footer */
footer {
  background-color: #343a40;
}

footer h5, footer p {
  color: #ddd;
}

footer img {
  max-width: 120px;
}

#appMovil{
  background-color: #eee;
}
#appMovil .carousel-inner img {
  height: 300px; /* Ajustar según las imágenes */
  object-fit: cover;
}

#appMovil h2 {
  color: #29303b;
  font-weight: bold;
}

#appMovil p {
  font-size: 1rem;
  color: #555;
}

#appMovil .carousel-control-prev-icon,
#appMovil .carousel-control-next-icon {
  background-color: #29303b; /* Color de los controles */
  border-radius: 50%;
}

#contacto h2 {
  color: #29303b;
  margin-bottom: 20px;
  font-weight: bold;
}

#contacto p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

#contacto .form-control {
  font-size: 1rem;
}

#contacto .btn {
  background-color: #29303b;
  border: none;
  padding: 10px 30px;
}

#contacto .btn:hover {
  background-color: #4c566a;
}
