/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --color-primary: #016F8E;
  --color-secondary: #6AA9BA;
  --color-dark: #333333;
  --color-light: #F8F6EA;
  --color-white: #ffffff;
}

body {
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden;
  background-color: var(--color-light);
  color: var(--color-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.bg-menu {
  background: var(--color-primary);
  background: linear-gradient(90deg, rgba(106, 169, 186, 1) 0%, rgba(44, 143, 170, 1) 48%, rgba(1, 110, 142, 1) 100%);
  transition: all 0.3s ease;
}

.bg-menu.scrolled {
  background: rgba(1, 111, 142, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.color-blue-1 {
  color: var(--color-primary);
}

.text-justify {
  text-align: justify;
}

/* Utilities */
.section-padding {
  padding: 80px 0;
}

.card-custom {
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  /* Opcion 1: Imagen Abstracta Generada */
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/home/hero-abstract.png');

  /* Opcion 2: Solo Gradiente (Si prefieres quitar la imagen) */
  /* background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%); */

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.5rem;
  font-weight: 300;
}

/* WhatsApp Button */
.btn-whats {
  display: block;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  transition: transform 0.3s ease;
}

.btn-whats:hover {
  transform: scale(1.1);
}

/* Footer */
footer {
  color: var(--color-white);
  padding-top: 50px;
  padding-bottom: 20px;
}

footer a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity: 0.8;
  color: var(--color-secondary);
  text-decoration: none;
}