﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.icon-spin {
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.icon-bounce {
    animation: bounce 0.6s ease infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-5px);
    }
}

.hero-section {
    background-image: url('/images/hero.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 420px; /* ajusta según tu diseño */
}

.hero-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.hero-img {
    width: 100%;
    max-width: 1400px;
    height: auto;
    display: block;
}

/*.navbar {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    height: auto;
    min-height: 10px;*/ /* ajusta según el tamaño del logo */
/*}*/



.top-logo-bar {
    height: 120px; /* Ajusta según el tamaño del logo */
}

.logo-header {
    height: 100%; /* El logo ocupa toda la barra */
    object-fit: contain;
}

.navbar {
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
}


    .navbar-brand,
    .navbar-nav .nav-link,
    .navbar .btn {
        display: flex;
        align-items: center;
        white-space: nowrap; /* evita que el texto se parta */
    }

.btn {
    white-space: nowrap; /* evita que se parta en dos líneas */
}
