/* Import Fonts */
@import url(http://fonts.googleapis.com/css?family=Coustard|Open+Sans);

@import url(https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    color: #fff;
    background-color: #111;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

/* Cabeçalhos */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Coustard', serif;
    color: #fff;
    font-weight: normal;
    letter-spacing: 1px;
}

h1 {
    font-size: 63px;
    line-height: 70px;
    padding: 0;
    margin: 0 0 20px 0;
}

h5 {
    font-size: 28px;
    line-height: 35px;
    color: #fff;
    margin-bottom: 15px;
}

/* Links */
a {
    color: #fc6;
    text-decoration: none;
    font-weight: normal;
    transition: color 0.3s;
}

a:hover {
    text-decoration: underline;
    color: #ffd700;
}


.content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    width: 30rem;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    line-height: 1.6;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px) contrast(1.0);
	border: 2px solid transparent;
	
}

.full_btn{
	display: fixed;
	margin-left: 2rem;
	margin-top: 2rem;
	padding: 0;
	border: 0;
	width: 2rem;
	height: 2rem;
}

.full_btn:hover{
	cursor: pointer;
}


.main-nav {
    position: fixed;
    top: 0;
    right: 2rem;
    z-index: 1001;
    width: fit-content;
    max-width: 800px;
    padding: 10px;
	margin-top: 2rem;
	border-radius: 50px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px) contrast(1) ; 
	border: 2px solid transparent;
}

.main-nav ul {
    display: flex;
    justify-content: space-between;
	align-items: center;
    margin: 0;
    padding: 0;
	
}

.main-nav ul li {
    list-style: none;
    padding: 0 15px;
}

.main-nav ul li a {
	font-family: "Bebas Neue", sans-serif;
    color: #fff;
    font-weight: 400;
	font-size: 18px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    background-color: rgb(255, 255, 255);
    color: #111;
}

/* Social Navigation */
.social-nav {
    position: fixed;
    bottom: 0;
    right: 20px;
}

.social-nav ul {
    display: flex;
    justify-content: space-between;
	align-items: center;
    margin: 0;
    padding: 0;
}

.social-nav ul li {
    list-style: none;
    
    padding: 1rem;
    margin: 1px;
    border-radius: 4px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-nav ul li:hover {
    opacity: 1;
}

button.full-screen {
    position: absolute;
    top: 10px;
    left: 1000px;
    width: 31px;
    height: 31px;
    background: url("../images/full-screen-btn.png") no-repeat center center;
    border: 0;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

button.full-screen:hover {
    opacity: 1;
}

/* Arrow Navigation */
#arrow_left,
#arrow_right {
    position: absolute;
    bottom: 30px;
    height: 42px;
    width: 42px;
    z-index: 1000;
    cursor: pointer;
}

#arrow_left {
    right: 95px;
}

#arrow_right {
    right: 40px;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem; /* 40px */
        line-height: 2.75rem; /* 44px */
        margin-bottom: 1rem; /* 16px */
    }

    h5 {
        font-size: 1.5rem; /* 24px */
        line-height: 2rem; /* 32px */
        margin-bottom: 0.75rem; /* 12px */
    }

    .content {
        width: 95%;
        padding: 1rem; /* 16px */
    }

    .full_btn {
        width: 1.5rem;
        height: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem; /* 32px */
        line-height: 2.5rem; /* 40px */
        margin-bottom: 0.75rem; /* 12px */
    }

    h5 {
        font-size: 1.25rem; /* 20px */
        line-height: 1.75rem; /* 28px */
        margin-bottom: 0.5rem; /* 8px */
    }

    .content {
        width: 100%;
        padding: 0.75rem; /* 12px */
    }

    .full_btn {
        width: 1.25rem;
        height: 1.25rem;
    }
}