:root {
    --ut-color: #00AB84
}

*{
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 500;
    color: #1E1E1E;
    min-height: 100vh;
    margin: 0
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo img {
    width: 30px;
}

nav a {
    color: #ffffff;
}

.logo span {
    font-family: 'Alike', serif;
    font-size: 16px;
    color: #ffffff;
}

.hero{
    background-image: url(/assets/hero.png);
    height: 60vh;
    background-size: cover;
    background-position: center center;
}

.hero-container{
    color: #ffffff;
    margin-top: 46px;
}

.hero-container h1{
    display: flex;
    justify-content: center;
    font-family: 'Alike', serif;
    font-weight: 100;
    margin-bottom: 15px;
    font-size: 48px;
    text-align: center;
}

.h2-container{    
    margin: 30px auto;
    max-width: 50vw;
    min-width: 300px;

}

.h2-container p{
    font-size: 22px;
    font-weight: 100;
    text-align: center;
}


.catalogo{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    margin: 0px auto;
    height: 36px;
    border-radius: 6px;
    color: #fff;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.catalogo:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--ut-color);
    z-index: -2;
}

.catalogo:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #039472;
    transition: all .3s;
    border-radius: 6px;
    z-index: -1;
}

.catalogo:hover{
    color: #fff;
}

.catalogo:hover:before{
    width: 100%;
}

.footer {
    background-color: var(--ut-color);
    padding: 30px 47px 17px 47px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 100;
}

.group{
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
}

.group a{
    color: #ffffff;
}


*{
    box-sizing: border-box;
}

.slide img {
    width: 200px;
    height: 200px;
    border-radius: 6px;
    object-fit: cover;
    transition: all 0.4s;
}

h3 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 20px;
    font-weight: 400px;
    transition: all 100ms;
}

.slide:hover h3{
    transform:scale(1.1);
    transition: all 100ms;
}

.slide:hover img{
    transform:scale(0.95);
    transition: all 0.4s;
}

.slider {
    position: relative;
    text-align: center;
    overflow: hidden;
    margin: 20px;
}

.slider h2{
    margin-top: 40px;
    margin-bottom: 15px;
}

.slider a{
    margin-top: 20px;
}


.slider-container {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.slide {
    flex-shrink: 0
}

.arrow {
    position: absolute;
    top: 50%;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    background-color: var(--ut-color);
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.arrow:hover {
    color: black;
    background-color: #ffffff;
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}

.center-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #4CAF50;
            color: white;
            padding: 15px 30px;
            font-size: 16px;
            cursor: pointer;
            border: none;
            border-radius: 5px;
        }

@media (max-width: 640px) {
    .hero {
        height: 70vh;
    }
}