/*
   Theme name: Lista de Presentes Matheus & Ana Paula
   Author: Matheus J. Enokida Rosa
   Version: 1.1
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(135deg, #d9eef7 0%, #b0ddf1 100%);
}

.container {
    max-width: 1250px;
    margin: auto;
}

.header {
    display: flex;
    justify-content: center;
    padding: 13px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .31);
    background-image: linear-gradient(to top, #f1f1f1 0%, white 100%);
}

.logo {
	transform: scale(.9);
}

.save-the-date {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	padding: 8px 21px;
	background: #d9eef7;
    border-radius: 8px;
}

.save-the-date .title {
	font-size: .875rem;
	color: #289bce;
	font-family: sans-serif;
	font-weight: bold;
}

.save-the-date .date {
	color: #289bce;
	font-size: .6275rem;
	font-family: sans-serif;
	font-weight: bold;
}

.webpage-content {
    padding: 55px 0 89px;
    margin-bottom: auto;
}

.title {
    text-align: center;
	font-size: 1.75rem;
}

.titulo-principal {
    font-size: 16px;
    width: 100%;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 21px;
}

.logo-em-construcao {
    width: 300px;
    height: 300px;
}

.copyright {
    background-color: #001415;
    padding: 8px 0;
}

.copyright-text {
    color: #fafafa;
    display: block;
    text-align: center;
    font-size: 10px;
}

/* Links da Home Page */
.links-presentes {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.preview-title {
    font-size: 1.5rem;
    font-family: sans-serif;
    text-align: center;
}

.preview-links {
    display: flex;
    justify-content: center;
    gap: 34px;
}

.link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background-image: linear-gradient(to top, #dfe9f3 0%, white 100%);
    box-shadow: 0 3px 13px rgba(0, 0, 0, .21);
    border-radius: 8px;
    padding: 21px 34px;
}

.link-title {
    font-size: .75rem;
    font-weight: bold;
    font-family: sans-serif;
    text-align: center;
}

.link-home {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.produtos-wrapper {
	padding: 55px;
	background-image: linear-gradient(to top, #f2f2f2ab 0%, #fafafaab 100%);
	border-radius: 16px;
	box-shadow: 0 5px 8px rgba(0,0,0,.21);
	margin-bottom: 89px;
}

@media (orientation: portrait) and (max-width: 500px) {
    .logo {
        transform: scale(.7);
    }

    .header {
        padding: 8px 13px;
		justify-content: space-between;
    }

    .titulo-principal {
        font-size: 16px;
    }

    .logo-em-construcao {
        width: 233px;
        height: 233px;
    }
	
	.produtos-wrapper {
		padding: 21px;
		padding-bottom: 34px;
	}
}

.link-home {
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 21px;
}

/* Páginas dos Produtos */
.produtos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-direction: column;
    align-items: center;
    gap: 34px;
    padding: 34px 0 89px;
    margin: auto;
}

.produto-item {
    border: 1px solid rgba(0, 0, 0, .21);
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .21);
    padding: 13px 0 13px 13px;
    display: flex;
    gap: 13px;
    align-items: center;
    background-color: #fafafa;
    position: relative;
    overflow: hidden;
	background: #FAFAFA;
	background: linear-gradient(144deg, rgba(250, 250, 250, 1) 70%, #e2e5e6 100%);
}

.produto-title {
    text-align: center;
    font-size: 1.5rem;
    font-family: sans-serif;
    font-weight: bold;
}

.produto-thumb {
    display: flex;
    justify-content: center;
}

.produto-thumb img {
    height: 89px;
    width: 89px;
}

.produto-icon {
    position: absolute;
    right: 0;
    transform: rotate(13deg);
    top: 55%;
    opacity: .13;
}


@media (orientation: portrait) and (max-width: 500px) {
    .webpage-content {
        padding: 34px 21px 50px;
    }

    .webpage-content .title {
        font-size: 1.125rem;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
		gap: 21px;
		padding-bottom: 0;
    }

    .produto-item {
        gap: 21px;
    }

    .produto-thumb img {
        height: 50px;
        width: 50px;
    }

    .produto-title {
        font-size: 1rem;
		text-align: left;
    }
	
	.produto-icon {
		top: 55%;
	}
	
	.produto-icon svg {
		height: 34px;
		width: 34px;
	}
}