:root {
    --text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000;
    --dark-grey: #1f1f1f;
    --white-font: #e0e0e0;
    --amarillo: #f9d000;
    --rojo: #ff0057;
}
@font-face {
    font-family: Montserrat;
    src: url(../res/fonts/Montserrat.ttf);
}
@font-face {
    font-family: Poppins;
    src: url(../res/fonts/Poppins.ttf);
}
@font-face {
    font-family: HotPizza;
    src: url(../res/fonts/HotPizza.otf);
}
@font-face {
    font-family: Nunito;
    src: url(../res/fonts/NunitoSans.ttf);
}
@font-face {
    font-family: Pasta;
    src: url(../res/fonts/Pasta.ttf);
}
@font-face {
    font-family: GExpanded;
    src: url(../res/fonts/GothicExpanded.ttf);
}
* {
    box-sizing: border-box;
}
body {
    padding: 0;
    margin: 0;
    background: url(../res/images/backgr.jpg) center / 100% no-repeat, #121619;
    font-family: Poppins;
    overflow-x: hidden;
}
#loader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 999999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #f9d000;
    font-family: 'Poppins', sans-serif;
    background: url(../res/images/loader2.gif) center / 70px no-repeat;
}
.loader-spinner {
    width: 70px;
    height: 70px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-top-color: #f9d000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.loader-text {
    font-size: 1.1em;
    letter-spacing: 1px;
    color: #5f5f5f;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.navBar {
    width: 100%;
    height: 8vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    position: relative;
    top: 0;
    transition: all .5s cubic-bezier(1, 0, 0, 1);
    position: sticky;
    z-index: 890;
    background: #121619;
    box-shadow: 0px 3px 8px 0 #0000002f;
}
.nav-left-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.org-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.org-name img {
    max-width: 25px;
    max-height: 25px;
    border-radius: 8px;
}
.org-name h1 {
    color: var(--amarillo);
    font-size: 16px;
}
.org-name b  {
    color: #fff;
    text-shadow: var(--text-shadow);
}
#burger {
    display: none;
}
.burguer {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 3px;
    position: relative;
    z-index: 899;
}
.part {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 1s cubic-bezier(1,0,0,1);
    opacity: 1;
}
#burger:checked + .burguer .part:nth-child(1){
    transform: rotate(45deg) translate(5px, 6px);
}
#burger:checked + .burguer .part:nth-child(2){
    transform: rotate(-45deg);
    opacity: 0;
}
#burger:checked + .burguer .part:nth-child(3){
    transform: rotate(-45deg) translate(5px, -6px);
}
#canvas {
    position: absolute;
    right: 0;
    top: 0;
}
.descontainer {
    width: 100%;
}
#pizza_title {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.5rem;
    overflow: hidden;
    color: #fff;
    font-family: HotPizza;
    font-weight: 100;
    letter-spacing: 2px;
}
#pizza_title b {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
}
#pizza_title b.enter-up {
    opacity: 1;
    transform: translateY(0);
    animation: enterUp 0.4s forwards;
}
#pizza_title b.enter-down {
    opacity: 1;
    transform: translateY(0);
    animation: enterDown 0.4s forwards;
}
#pizza_title b.exit-up {
    opacity: 0;
    animation: exitUp 0.4s forwards;
}
#pizza_title b.exit-down {
    opacity: 0;
    animation: exitDown 0.4s forwards;
}
@keyframes enterUp {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
@keyframes enterDown {
    from { transform: translateY(-30px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
@keyframes exitUp {
    from { transform: translateY(0); opacity: 1; }
    to   { transform: translateY(-30px); opacity: 0; }
}
@keyframes exitDown {
    from { transform: translateY(0); opacity: 1; }
    to   { transform: translateY(30px); opacity: 0; }
}
.header-section {
    height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../res/images/bk4.jpg) bottom / cover no-repeat;
}
.slide-control {
    width: 40px;
    aspect-ratio: 1 / 1;
    position: absolute;
    transform: translateY(40px);
    z-index: 880;
    border-radius: 50%;
}
.left-control {
    background: #b5b5b5d1 url(../res/icons/left.svg) center / 100% no-repeat;
    left: 10px;
    display: none;
}
.right-control {
    background: #b5b5b5d1 url(../res/icons/right.svg) center / 100% no-repeat;
    right: 10px;
}
.main-container {
    overflow-x: hidden;
}
.main-section {
    width: 100%;
    display: flex;
    position: relative;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;/*Para que el scroll sea más suave*/
    scrollbar-width: 0;
}
.main-section::-webkit-scrollbar {
    height: 0;
    width: 0;
    color: #00000000;
}
.img-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;/*Elementos no se encojen*/
    scroll-snap-align: center;/*PROPIEDAD PARA SCROLL PÁGINA A PÁGINA*/
}
.img-container div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0s ease;
}
.big-pizza {
    width: 60% !important;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 95%;
    background-position: center;
    background-repeat: no-repeat;
}
.separator {
    width: 100%;
    height: 8vh;
}
.srotat {
    background-color: #121619;
    background-image: url();
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    position: relative;
}
.srotat::before {
    content: "";
    width: 100%;
    height: 40px;
    background: #fff;
    position: absolute;
    bottom: -1px;
    clip-path: polygon(100% 100%, 0% 100%, 50% 0%, 50% 0%);
}
.swhite {
    background: url(../res/images/white-separator.png) center / cover no-repeat;
}
.sdark {
    background: url(../res/images/dark-separator.png) center / cover no-repeat;
}
.descript {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}
.props {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 5px;
    background: #fff;
    padding: 30px;
}
.up_scont {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px 0 0;
}
.add_cart_btn {
    margin: 0;
    width: 45px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid var(--dark-grey);
    background: #eee url(../res/icons/add-cart.svg) center / 25px no-repeat;
}
.props h2 {
    color: #121619;
    font-family: GExpanded;
    font-size: 1.4rem;
    margin: 0;
}
.props b {
    font-family: GExpanded;
    font-size: 2rem;
    color: #121619;
    font-weight: 600;
    text-shadow: 1px 1px 0px #eee, 1px -1px 0px #ffffff;
}
.props span {
    font-size: 13px;
    color: #121619;
}
.props ul {
    font-size: 13px;
    color: #363636;
    padding: 0 0 0 16px;
    margin: 0;
}
.props p {
    font-size: 14px;
    color: #121619;
    margin: 0;
}
.modal {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    position: fixed;
    background: #121619;
    border-top: 4px solid #f9d000;
    z-index: 889;
    top: 8vh;
    left: 0;
}
@keyframes exit {
    from {transform: translateX(0%);opacity: 1;}
    to {transform: translateX(-100%);opacity: 0.9;}
}
.exit {
    animation: exit .5s linear both;
    transition: all .5s cubic-bezier(1, 0, 0, 1);
}
.my-cart {
    width: 30px;
    aspect-ratio: 1/1;
    border: 0;
    background: #00000000 url(../res/icons/empty-cart.svg) center / 30px no-repeat;
    position: relative;
    margin: 0;
}
#cartCount {
    font-size: 10px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 50%;
    border: 2px solid var(--dark-grey);
    color: var(--dark-grey);
    font-weight: 600;
    position: absolute;
    top: -5px;
    right: -5px;
}
.modal-option {
    width: 95%;
    height: 40px;
    background: #00000000;
    border: 0;
    margin: 0;
    font-size: 1.3rem;
    color: #fff;
}
.content-sec {
    width: 100%;
    min-height: 350px;
    background: #121619;
}
.message-com {
    color: #dbdbdb;
}
@keyframes showcart {
    to {transform: scaleY(1);}
}
@keyframes hiddecart {
    from {transform: scaleY(1);}
    to {transform: scaleY(0);}
}
.shopping-cart {
    width: 100%;
    min-height: 350px;
    background: #fff;
    border-top: 4px solid #f9d000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 8vh;
    left: 0;
    z-index: 999;
    box-shadow: inset 0px -4px 0 0 #0000002e;
    transition: all .3s cubic-bezier(1, 0, 0, 1);
    transform-origin: top;
    transform: scaleY(0.01);
    animation: showcart .3s linear both;
}
.hidde-shopping-cart {
    animation: hiddecart .3s linear both;
}
.shopping-cart .table-container {
    width: 100%;
    height: 47vh;
    display: flex;
    padding: 0px 0px 15px 0px;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: auto;
}
.shopping-cart .table-container table {
    width: 100%;
}
.caroptions {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    box-shadow: 0px -2px 8px 0 #00000026;
}
.cartotal {
    display: flex;
    align-items: flex-end;
}
.cartotal span {
    font-size: 12px;
}
.cartotal span:nth-child(2) {
    font-size: 25px;
    line-height: 1;
    font-weight: 600;
    font-family: Montserrat;
}
.btcart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.vaciarbtn {
    width: 35px;
    aspect-ratio: 1 / 1;
    border: 1px solid #e91e63;
    border-radius: 6px;
    background: #e91e6370 url(../res/icons/clear-all.svg) center / 15px no-repeat;
}
.checkoutbtn {
    border: 1px solid var(--dark-grey);
    background: var(--amarillo) url(../res/icons/checkout-cart.svg) 5px / 20px no-repeat;
    color: var(--dark-grey);
    font-size: 12px;
    padding: 5px 5px 5px 35px;
    height: 35px;
    border-radius: 6px;
}
#categoriesContainer,
#categs,
.someprod {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 40px 15px;
}
#categs {
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
}
#categoriesContainer h2,
.secmark {
    font-size: 13px;
    border-radius: 35px;
    padding: 10px 15px 10px 35px;
    box-shadow: 2px 3px 11px 0 #00000070, -1px -1px 5px 0 #ffffff14;
    background: #121619 url(../res/icons/categories.svg) 15px / 15px no-repeat;
    color: #c3c3c3;
}
.someprod {
    align-items: flex-start;
}
.someprod .secmark {
    background: #121619 url(../res/icons/rocket.svg) 15px / 15px no-repeat;
}
.cat_card {
    width: 45%;
    height: 80px;
    background-color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 8px 0 #00000030;
    position: relative;
    overflow: hidden;
}
.catnom {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #2929297a;
    backdrop-filter: blur(3px);
    position: absolute;
    bottom: 0;
    border-radius: 9% 90% 0% 0%;
    padding: 0px 15px;
}
.catnom span {
    color: #fff;
    font-size: 12px;
}
.catimage {
    width: 80%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.table-container table {
    border-collapse: collapse;
}
.table-container table thead tr {
    background: var(--dark-grey);
}
.table-container table thead tr th {
    padding: 8px 8px;
    color: var(--white-font);
    font-size: 12px;
}
.table-container table tbody tr {
    cursor: pointer;
}
.table-container table tbody tr:nth-last-of-type(even) {
    background: #e7e7e7;
}
.table-container table tbody tr:hover {
    background: var(--amarillo);
}
.table-container table tbody tr td {
    font-size: 11px;
    padding: 15px 5px 15px 15px;
    text-align: center;
    position: relative;
}
.table-container table tbody tr td:nth-child(2){
    text-align: left;
}
.delprod {
    width: 30px;
    aspect-ratio: 1/1;
    border: 0;
    background: transparent url(../res/icons/delete-red.svg) center / 20px no-repeat;
}
@keyframes hidecart {
    from {transform: translateY(0);}
    to {transform: translateY(-100%);}
}
.hiddecart {
    transition: all .3s cubic-bezier(1, 0, 0, 1);
    animation: hidecart .4s linear both;
}
.vacont {
    width: 100%;
    height: 45vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
.vacont h3 {
    color: #535353;
}
.pizzawalk {
    width: 150px;
    aspect-ratio: 1/1;
    object-fit: contain;
}
.pizzaWinner {
    width: 100%;
    height: 65vh;
}
.infoprod-w {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.photos_container,
.portada_cont {
    width: 100%;
    display: flex;
    overflow: hidden;
}
.portada_cont {
    width: 80%;
    border: 1px solid var(--amarillo);
    border-radius: 6px;
}
.otherphotos {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
.fotocolumns {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    padding: 5px;
    border: 1px solid var(--amarillo);
    border-radius: 6px;
}
#portada_product,
.fotocolumns img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}
.descript {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
}
.infoprod-w .descript {
    padding: 10px 0px 0px 0px;
}
.descript h2 {
    margin: 0;
    line-height: 1;
}
.descript h2 b {
    font-size: 12px;
}
.descript span {
    text-align: left;
    font-size: 13px;
}
.addbt {
    width: 100%;
    height: 45px;
    border: 1px solid var(--dark-grey);
    background: var(--amarillo) url(../res/icons/add-cart.svg) 30px / 20px no-repeat;
    color: var(--dark-grey);
    border-radius: 6px;
    margin-top: 15px;
}
.prod-card {
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dark-grey);
    border-radius: 6px;
    padding: 8px;
    gap: 8px;
    background: #fff;
}
.up-to-card,
.price-cont {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.price-cont {
    justify-content: flex-start;
}
.price-cont span {
    display: flex;
    flex-direction: column;
    line-height: 1;
    padding: 0 0 5px 0px;
}
.up-to-card h3 {
    margin: 0;
}
.prod-image {
    width: 80%;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.prod-form {
    width: 100%;
}
.makont {
    width: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
}
.lfcon {
    display: flex;
    flex-direction: column;
    position: relative;
}
.car_add_button {
    width: 25px;
    aspect-ratio: 1/1;
    border: 0;
    background: url(../res/icons/add-cart.svg) center / 25px no-repeat;
}
.completbt {
    font-size: 9px;
    position: absolute;
    left: -25px;
    top: -35px;
    background: #03a9f433;
    border: 1px solid #03A9F4;
    color: #03A9F4;
    border-radius: 6px;
}
#sell_this {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.counter-cont {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.counter-cont input[type='number'] {
    width: 30px;
    height: 25px;
    text-align: center;
    outline: none;
}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.counter-bt {
    width: 25px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    background: #cbcbcb;
    cursor: pointer;
    user-select: none;
}
.send-button {
    width: 290px;
    height: 40px;
    border: 1px solid var(--dark-grey);
    border-radius: 6px;
    color: var(--dark-grey);
    background: var(--amarillo) url(../res/icons/send.svg) 95% / 25px no-repeat;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
}
.send-button {
    width: 120px;
    background: var(--amarillo) url(../res/icons/add-cart.svg) 5px / 20px no-repeat;
}
input[type='number'] {
    height: 35px;
    text-align: left;
    border: 0;
    background: #fff;
    font-size: 16px;
    color: var(--dark-grey);
    -moz-appearance: none;
    appearance: none;
}
.some-pizzas {
    width: 100%;
    display: flex;
    gap: 15px;
    overflow: auto;
    padding: 0px 15px;
    margin: 20px 0px;
}
.smlt {
    font-size: 9px;
}
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.form-container form {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    gap: 25px;
}
.oneInput {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.inputContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--amarillo);
    border-radius: 4px;
    background-position: 8px;
    background-size: 20px;
    background-repeat: no-repeat;
    padding: 0 0 0 40px;
}
.send-button {
    width: 290px;
    height: 40px;
    border: 1px solid var(--dark-grey);
    border-radius: 6px;
    color: var(--dark-grey);
    background: var(--amarillo) url(../res/icons/send.svg) 95% / 25px no-repeat;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
}
.inputContainer input,
.inputContainer select,
#ingredientSelect {
    width: 250px;
    height: 40px;
    border: 0;
    background: #00000000;
    font-size: 13px;
    color: #fff;
    outline: none;
}
.inputContainer label {
    font-size: 14px;
    position: absolute;
    left: 0;
    transform: translate(45px, 0px);
    transition: all .5s cubic-bezier(1, 0, 0, 1);
    cursor: text;
    color: #fff;
}
.send-button {
    width: 290px;
    height: 40px;
    border: 1px solid var(--dark-grey);
    border-radius: 6px;
    color: var(--dark-grey);
    background: var(--amarillo) url(../res/icons/send.svg) 95% / 25px no-repeat;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    transition: all .4s cubic-bezier(1, 0, 0, 1);
}
.inputContainer select + label,
.inputContainer input[type='date'] + label,
.active-label {
    transform: translate(25px, -20px) !important;
    font-size: 12px !important;
    background: #1d2026;
    padding: 5px 5px;
}
.inputContainer input:focus + label {
    transform: translate(25px, -20px);
    transition: all .5s cubic-bezier(1, 0, 0, 1);
    font-size: 12px;
    background: #1d2026;
    padding: 5px 5px;
}
.active-input-field + label {
    transition: all .3s cubic-bezier(1, 0, 0, 1);
    transform: translate(25px, -20px);
    font-size: 12px;
    background: #1d2026;
    padding: 5px 5px;
}
.textarea-container textarea {
    width: 250px;
    height: 100px;
    padding: 10px;
    resize: none;
    border: 0;
    outline: none;
    background: #1d2026;
    color: #fff;
}
.textarea-container label {
    transform: translate(10px, -52px);
    font-size: 12px;
    color: #fff;
    background: #1d2026;
    padding: 5px 5px;
}
.prod-form .send-button {
    width: 140px !important;
}
.footer {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 15px;
    background: #121619;
}
.footersquare {
    width: 80%;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 15px;
    border-radius: 18px;
    background: #fff url(../res/images/loader.gif) 120% 15px / 50% no-repeat;
}
.btcontent {
    display: flex;
    flex-direction: column;
}
.footersquare h3 {
    margin: 0;
    font-size: 14px;
}
.footersquare span {
    font-size: 12px;
}
.dwapp {
    width: 145px;
    height: 40px;
    border: 1px solid var(--dark-grey);
    border-radius: 8px;
    background: var(--amarillo) url(../res/icons/download.svg) 5px / 20px no-repeat;
    color: #1f1f1f;
    font-size: 12px;
    padding: 0 0 0 15px;
    margin-top: 10px;
}
.footercontent {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
.powered {
    font-size: 12px;
    color: #fff;
}
.sourcelist {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sourcecontainer {
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 10px;
}
.sourcecontainer .source {
    font-size: 12px;
    text-decoration: none;
    color: var(--amarillo);
}
.socialcon {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
}
.datatext {
    font-size: 11px;
    color: #ababab;
    text-align: left;
    padding: 0 0 0 40px;
}
.social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.socialsource {
    width: 30px;
    display: flex;
    aspect-ratio: 1/1;
    text-decoration: none;
}
.facebook {
    background: url(../res/icons/facebook.svg) center / 28px no-repeat;
}
.whatsapp {
    background: url(../res/icons/whatsapp.svg) center / 28px no-repeat;
}
.instagram {
    background: url(../res/icons/instagram.svg) center / 28px no-repeat;
}
.tiktok {
    background: url(../res/icons/tiktok.svg) center / 28px no-repeat;
}
.picont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
}
.ifimage {
    width: 90%;
    height: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: url(../res/images/amigos.webp) center / 100% no-repeat;
}
.message-com {
    font-size: 13px;
    padding: 40px 80px;
    text-align: center;
}
.delivery-desc {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
    background: #121619;
}
.delivery-text {
    font-size: 12px;
    color: #ababab;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 15px;
}
.delivery-text h3 {
    color: var(--amarillo);
}
.delivery-text span {
    font-size: 11px;
    padding: 5px 5px 5px 30px;
}
.delivery-text span:nth-child(2) {
    background: url(../res/icons/clock-white.svg) 5px / 20px no-repeat;
}
.delivery-text span:nth-child(3) {
    background: url(../res/icons/hoja-white.svg) 5px / 20px no-repeat;
}
.delivery-text span:nth-child(4) {
    background: url(../res/icons/click-white.svg) 5px / 20px no-repeat;
}
.deliveryman {
    height: 100%;
    width: 50%;
    display: flex;
    background: #fff;
    border-radius: 230% 0% 90% 190%;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    box-shadow: inset 7px -1px 6px 0 #00000052;
}
.deliveryman img {
    height: 100%;
    filter: drop-shadow(3px 3px 4px #00000056);
}
#mapContainer {
    padding: 20px 0px;
}
#mapa {
    width: 90%;
    height: 250px;
    border-radius: 8px;
    margin: 0 auto;
    box-shadow: 2px 2px 10px 0 #0000003b;
}
#sucinfo {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
}
#sucinfo h2 {
    margin: 0;
    color: #d9d9d9;
}
.dircontainer {
    font-size: 13px;
    color: #c1c1c1;
    padding: 2px 2px 2px 25px;
    background: url(../res/icons/address.svg) left / 20px no-repeat;
}
.sppm {
    width: 100%;
    aspect-ratio: 1/1;
    background: url(../res/images/default_logo.png) center / 80% no-repeat;
}
.sucs_section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0px;
}
#aboutus {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #fff url(../res/images/p3.png) 120% 120% / 50% no-repeat;
    position: relative;
}
#aboutus::before {
    content: "";
    width: 100%;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(180deg, #121619, #121619ed, #11161999, #12161900);
}
#aboutus::after {
    content: "";
    width: 100%;
    height: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(0deg, #121619, #121619ed, #11161999, #12161900);
}
#aboutus img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 2px 2px 10px 0 #0000003b;
}
#aboutus h2 {
    color: #fff;
    margin: 0;
    text-shadow: var(--text-shadow);
}
#aboutus p {
    font-size: 13px;
    text-align: center;
    line-height: 1.6;
    margin: 0;
    padding: 30px 40px;
    color: #ffffff;
    background: linear-gradient(322deg, #000000a1, #ffffff3d);
    border-radius: 40px;
    backdrop-filter: blur(5px);
    box-shadow: -1px -1px 5px 0 #ffffff6b, 2px 2px 5px 0 #00000099;
}
#aboutus video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover; /* Asegura que cubra todo el div */
  z-index: 0;
  filter: brightness(0.6); /* Oscurece un poco el video (opcional) */
}
#whatsappbt {
    width: 35px;
    height: 35px;
    border: 0;
    background: url(../res/icons/whatsapp-logo.svg) center / 100% no-repeat;
    position: fixed;
    bottom: 10px;
    right: 5px;
}

@media screen and (min-width: 1000px) {
	body {
		background-attachment: fixed;
	}
	.main-container {
		width: 80%;
	    margin: 30px auto 0px auto;
	    border-radius: 30px;
	    box-shadow: -5px -5px 16px 0 #0000008a;
	}
	.navBar {
		width: 80%;
		margin: 0px auto 0 auto;
		border-radius: 0px 0px 15px 15px;
		box-shadow: 1px 7px 8px 0 #00000080;
	}
	.big-pizza {
		width: 30% !important;
	}
}
