@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {
    scroll-behavior: smooth;
}

.base_primary {
    background-color: #000000;
}

.base_secondary {
    background-color: #202020;
}

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: #000;
}



.inicio .contenido-banner {
    padding: 20px;
    max-width: 350px;
    margin: auto;
    text-align: center;
    border-radius: 30px;
}

.inicio .contenido-banner img {
    margin-top: 40px;
    border: 10px solid #000;
    display: block;
    width: 80%;
    margin: auto;
    border-radius: 100%;
}

.inicio .contenido-banner h1 {
    margin-top: 40px;
    font-size: 42px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.inicio .contenido-banner h2 {
    font-size: 15px;
    font-weight: normal;
}

.navbar {
    /* Negro semi-transparente, 0.7 de opacidad */
    background-color: rgba(0, 0, 0, 0.5) !important;
    box-shadow: none !important;
}

.timeline {
    position: relative;
    margin-left: 20px;
    border-left: 2px solid #6c757d;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.timeline-dot {
    position: absolute;
    left: -11px;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: #0d6efd;
    border-radius: 50%;
    border: 2px solid #fff;
}

.timeline-content {
    border-radius: 12px;
}

.dark-input {
    background-color: #121212;
    color: #fff;
    border: 1px solid #555;
}

.dark-input::placeholder {
    color: #605f5f;
}

.dark-input:focus {
    background-color: #1e1e1e;
    border-color: #4285f4;
    /* Azul tipo Google */
    box-shadow: 0 0 0 0.2rem rgba(72, 72, 72, 0.25);
    color: #fff;
}

.inicio {

    background-color: #202020;
    background-size: cover;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}