@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

:root {
    --bg-gray:#717171;
    --color-primary:#4D41C0;
    --white: #ffff;
    --text-gray: #4A4A4A;
    --text-light-gray: #aaa;
    --star-yellow:#FFBB3A;


}

* {
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

html, body {
    background-color: var(--bg-gray);
}


header {
    background-color: var(--color-primary);
    color: var(--white);
    height: 60px;
    display: flex;
    align-items: center;
    
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav h1 {
    font-size: 24px;
    font-weight: 700;
}

nav a {
    font-size: 12px;
    font-weight: 400;
}


a, a:hover {
    text-decoration: none;
    color: unset;
}

.dsmovie-contact-container {
    display: flex;
    align-items: center;

}

.dsmovie-contact-container img {
    margin-right: 10px;
}

/* Fim do cabeçalho */

#dsmovie-card-list {
    padding: 40px 0;

}

.dsmovie-card {
    width: 100%;
}

.dsmovie-card img {
    width: 100%;
    max-height:146.34px;
    border-radius: 8px 8px 0 0;
}

.dsmovie-card-description {
    background-color: var(--white);
    padding: 10px 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 0 0 8px 8px;
    height: 220px;
}

.dsmovie-card-description h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    margin-top:15px;
    width: 228px;
    height: 38px;
    
    
}

/* Inicio parte estrelas*/

.dsmovie-card-description-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 23px;
    
    
}

.dsmovie-card-description-bottom h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--star-yellow);
}

.dsmovie-card-description-bottom p {
    font-size: 12px;
    font-weight:400;
    color: var(--text-light-gray);
    margin-bottom: 4px;
}

.dsmovie-card-description-bottom a {
    margin-bottom: 31px;
}

.dsmovie-card-description-bottom img {
    width: 22px;
}





/* Fim parte das estrelas*/

.dsmovie-btn {
    width: 180px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 0;

    
}

.dsmovie-btn:hover {
    transform: scale(1.1);
    transition: all 0.4s;
    color: var(--white);
}




/* Fim do index*/

.dsmovie-form-container {
    padding: 40px 0;
    max-width: 480px;
}

.dsmovie-form {
    width: 100%;
}

.dsmovie-form-group {
    margin-bottom: 20px;
}

.dsmovie-form-group label {
    font-size: 12px;
    color: var(--text-light-gray);
}

.dsmovie-form-description {
    background-color: var(--white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius:0 0 8px 8px;
}

.dsmovie-form-btn-container {
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.dsmovie-form-description h3 {
    font-size: 13px;
    font-weight:700;
    margin-bottom: 20px;
}