.content-container::-webkit-scrollbar {
    width: 10px;
}

.content-container::-webkit-scrollbar-thumb {
    background-color: #2f2f3d;
    border-radius: 10px;
}

.content-container::-webkit-scrollbar-track {
    background-color: #1a1a2a00;
}

body {
    background: #1a1a2a;
    color: #ffffff;
}

.navbar {
    background: #00000066;
    min-height: 80px;
}

.navbar-nav .nav-item {
    text-align: center;
}

.content-container {
    padding: 40px;
    overflow-y: auto;
    max-height: calc(100vh - var(--navbar-height));
}

#dynamic-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
   
}

.card:first-child {
    flex: 0 0 calc(35% - 10px);
}

.section-title {
    font-size: 50px;
    color: #007bff;
    margin-top: 80px;
    margin-bottom: 60px;
}

.section-title-first {
    font-size: 60px;
    color: #007bff;
    margin-top: 20px;
    margin-bottom: 60px;
}

.paragraph {
    font-size: 18px;
    margin-bottom: 0px;
    text-align: justify;
}

.card {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
    background-color: #ffffff11;
    border-radius: 25px;
    border: #ffffff22 3px solid;
    padding: 50px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    flex: 0 0 calc(65% - 20px);
    box-sizing: border-box;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.card:hover {
    background-color: #ffffff22;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.card-row {
    margin-bottom: 0px;
}

.introduction {
    background-color: #ffffff11;
    border-radius: 25px;
    border: #ffffff22 3px solid;
    padding: 40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transition: background-color 1s, box-shadow 2s, transform 2s;
}

.introduction:hover {
    background-color: #ffffff22;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-10px);
}

.image-container {
    margin-top: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 25px;
    border: #ffffff22 3px solid;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.image-container:hover {
    background-color: #ffffff22;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

hr {
    border-top: 2px solid #ffffff;
}

.spacerline {
    border-top: 2px solid #ffffff;
    margin-bottom: 60px;
}

/*Pagina Intro*/

.intro-paragraph {
    font-size: 25px;
    margin-bottom: 20px;
}

.intro-container {
    background-color: #ffffff11;
    width: 900px;
    border-radius: 25px;
    border: #ffffff22 3px solid;
    padding: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.intro-hr {
    border-top: 3px solid #ffffff22;
}

.btn-primary {
    font-size: 26px;
    padding: 15px 60px;
    margin-top: 20px;
    border-radius: 15px;
    background-color: #1a1a2a;
    border: 2px solid #007bff00;
    color: #ffffff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background-color: #2a2a45;
    border: 2px solid #007bff00;
}