/* Estilos personalizados para M.I.I.C */
:root {
  --primary-color: #2c5aa0;     /* Azul cristiano */
  --secondary-color: #f4c542;   /* Amarillo/dorado */
  --light-color: #f8f9fa;
  --dark-color: #1a1a2e;
}

/* Hero section */
.hero-section {
  background: linear-gradient(rgba(26, 26, 46, 0.85), rgba(44, 90, 160, 0.9)),
              url('hero-bg.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('pattern-cross.png') repeat;
  opacity: 0.1;
}

/* Botones personalizados */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #234a8a;
  border-color: #234a8a;
}

.btn-warning {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #333;
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section .lead {
    font-size: 1.1rem;
  }
}

.brand-text {
    font-size: 0.95rem;
    line-height: 1.2;
    white-space: normal;
}

/* Ajustes SOLO para móviles */
@media (max-width: 576px) {
    .navbar-brand {
        max-width: 75%;
    }

    .brand-text {
        font-size: 0.8rem;
        line-height: 1.1;
    }
}
.hero-map {
    max-width: 100%;
    height: auto;
}

/* Ajuste específico móvil */
@media (max-width: 600px) {
    .hero-map {
        max-width: 85%;
        margin: 0 auto;
    }
}
@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero-section p {
        font-size: 1rem;
        text-align: center;
    }
}
@media (max-width: 576px) {
    .hero-section .d-flex {
        justify-content: center;
    }

    .hero-section .row.mt-5 {
        text-align: center;
    }
}
body {
  padding-top: 70px;
}

@media (max-width: 576px) {
  body {
    padding-top: 80px;
  }
}


