@charset "UTF-8";

.bebas-neue-regular {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	font-style: normal;
}



.poppins-regular {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
}



.poppins-semibold {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
}

.poppins-bold {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
}

:root {
	--font-title: "Bebas Neue", sans-serif;
	--font-text: "Poppins", sans-serif;
}

html {
	background-color: black;
}

.btn-pedir {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FF5500;

    color: #FFFFFF;

    font-family: 'Arial', sans-serif;
    font-size: 32px;
    font-weight: normal;
    letter-spacing: 1px;
    padding: 10px 15px 10px 20px;
	margin-left: 35%;

    border: none;
    border-radius: 100px;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    margin: 18px auto 0;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-icone {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    color: #000000;

    font-size: 28px;
    font-weight: bold;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-left: 20px;
}

.btn-pedir:hover {
    background-color: #E64A00;
    transform: scale(1.02);
}

.nome-produto {
	font-family: var(--font-title);
}

.descricao-produto,
.btn-pedir {
	font-family: var(--font-text);
}


.text-gigante {
	font-family: var(--font-title);
}

.footer {
	margin-top: 120px;
	background: #080808;
	border-top: 1px solid #242424;
	padding: 80px 10% 30px;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 60px;
}

.logo {
	color: #fff;
	font-size: 2rem;
	margin-bottom: 20px;
}

.footer-column p {
	color: #9b9b9b;
	line-height: 1.8;
}

.footer-column h3 {
	color: white;
	margin-bottom: 25px;
	font-size: 1.2rem;
}

.footer-column ul {
	list-style: none;
}

.footer-column li {
	margin-bottom: 15px;
	color: #a6a6a6;
}

.footer-column a {
	color: #a6a6a6;
	text-decoration: none;
	transition: .3s;
}

.footer-column a:hover {
	color: #ff5b00;
}

.socials {
	display: flex;
	gap: 15px;
	margin-top: 25px;
}

.socials a {
	width: 45px;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #333;
	border-radius: 50%;
	color: white;
	font-size: 18px;
	transition: .3s;
}

.socials a:hover {
	background: #ff5b00;
	border-color: #ff5b00;
}

.payments {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
}

.payments span {
	padding: 10px 18px;
	border: 1px solid #333;
	border-radius: 30px;
	color: white;
}

.footer-button {
	display: inline-block;
	background: #000;
	color: #ff5b00;
	padding: 8px 18px;
	border: 2px solid #ff5b00;
	border-radius: 50px;
	font-weight: 600;
	transition: .3s;
	cursor: pointer;
	font-family: inherit;
}

.footer-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 0 20px rgba(255, 91, 0, .4);
	background: #ff5b00;
	color: #000;
}

.footer-bottom {
	margin-top: 70px;
	padding-top: 30px;
	border-top: 1px solid #222;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
}

.footer-bottom p {
	color: #777;
}

.footer-bottom span {
	color: #ff5b00;
	font-weight: 600;
}

@media(max-width:1000px) {
	.footer-container {
		grid-template-columns: 1fr 1fr;
	}

	.navbar-hero {
		flex-direction: column;
		gap: 18px;
		padding-top: 18px;
	}
}

@media (max-width:768px) {
	.navbar-hero {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		width: min(1400px, 92vw);
		margin: 0 auto;
		padding: 24px 0 0;
		z-index: 5;
		position: relative;
	}

	.navbar {
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 1100;
		position: fixed;
		padding: 10px;
		top: 10px;
		left: 50%;
		transform: translateX(-50%);
		border-radius: 20px;
		background: rgba(0, 0, 0, .75);
		backdrop-filter: blur(12px);
		min-height: 58px;
		width: 95%;
		max-width: 500px;
	}

	.navbar article {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
	}

	.menu-toggle {
		display: inline-flex;
		position: absolute;
		left: 10px;
		width: 48px;
		height: 48px;
		font-size: 1.6rem;
		top: 50%;
		transform: translateY(-50%);
	}

	.empresa {
		margin-right: 0;
		font-size: 1.6rem;
		text-align: center;
		padding-left: 36px;
	}

	.menu {
		position: fixed;
		top: 0;
		left: 0;
		width: min(82vw, 320px);
		height: 100vh;
		padding: 92px 22px 24px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		background: rgba(5, 5, 5, 0.98);
		border-right: 1px solid rgba(255, 255, 255, 0.08);
		box-shadow: 20px 0 50px rgba(0, 0, 0, 0.35);
		transform: translateX(-101%);
		visibility: hidden;
		transition: transform 0.28s ease, visibility 0.28s;
		z-index: 1200;
	}

	.navbar.menu-open .menu {
		transform: translateX(0);
		visibility: visible;
	}

	.menu li {
		display: block;
		margin: 0;
	}

	.menu .pedido {
		margin-left: 0;
		margin-top: 15px;
	}

	.menu a {
		display: block;
		padding: 12px 0;
		font-size: 1.05rem;
	}

	.menu-backdrop {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.55);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.28s ease;
		z-index: 1150;
	}

	.menu-backdrop.visible {
		opacity: 1;
		pointer-events: auto;
	}

	body.menu-open {
		overflow: hidden;
	}
	

}

@media(max-width:650px) {
	.footer-container {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.navbar-hero .menu {
		flex-wrap: wrap;
		justify-content: center;
		gap: 14px 18px;
	}
}
.pedido-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 1000;
    overflow-y: auto;
}

.pedido-modal.open {
    display: flex;
}

.pedido-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
}

.pedido-modal-panel {
    position: relative;
    width: min(840px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 26px;
    padding: 36px 34px 30px;
    z-index: 1;
}

.pedido-modal-address {
    display: none;
    margin-bottom: 22px;
}

.pedido-modal-address.visible {
    display: block;
}

.pedido-modal-subtitle-address {
    margin-bottom: 18px;
}

.pedido-modal-address-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pedido-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    font-size: 2rem;
    cursor: pointer;
}

.pedido-modal-title {
    max-width: 360px;
    margin-bottom: 34px;
    color: #fff;
    font-family: var(--font-text);
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 500;
}

.pedido-modal-client {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.pedido-modal-input {
    width: 100%;
    height: 58px;
    border-radius: 16px;
    border: 2px solid #ff5b00;
    background: #111;
    color: #fff;
    padding: 0 20px;
    font-family: var(--font-text);
    font-size: 1.2rem;
    outline: none;
}

.pedido-modal-input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.pedido-modal-delivery {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.pedido-modal-label {
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-text);
    font-size: 1.35rem;
    font-weight: 600;
}

.pedido-choice {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #ff5b00;
    background: transparent;
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--font-text);
    font-size: 0.95rem;
    cursor: pointer;
}

.pedido-choice.active {
    background: #111;
    color: #fff;
    box-shadow: 0 0 0 1px rgba(255, 91, 0, 0.25) inset;
}

.pedido-modal-subtitle {
    color: #fff;
    font-family: var(--font-title);
    font-size: 3rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pedido-modal-textarea {
    width: 100%;
    min-height: 180px;
    resize: none;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: #151515;
    color: rgba(255, 255, 255, 0.9);
    padding: 22px 24px;
    font-family: var(--font-text);
    font-size: 1.08rem;
    line-height: 1.6;
    outline: none;
    margin-bottom: 32px;
}

.pedido-modal-submit {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-width: 320px;
    height: 72px;
    padding: 0 10px 0 34px;
    border: none;
    border-radius: 999px;
    background: #ff5b00;
    color: #fff;
    font-family: var(--font-text);
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(255, 91, 0, 0.22);
}

.pedido-modal-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    font-size: 1.8rem;
    font-weight: 700;
}

@media(max-width:768px) {
    .pedido-modal-panel {
        max-height: calc(100vh - 32px);
        padding: 28px 20px 24px;
    }
    .pedido-modal-address-grid {
        grid-template-columns: 1fr;
    }

    .pedido-modal-title {
        max-width: 100%;
        font-size: 1.8rem;
    }

    .pedido-modal-subtitle {
        font-size: 2.2rem;
    }

    .pedido-modal-submit {
        width: 100%;
        min-width: 0;
    }
	.btn-pedir{
		width: 90%;
		margin-left: 5%;
	}
}
@media(min-width:769px){
	.btn-pedir{
		margin-left: 35%;
	}
}