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

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
    background: #111;
    color: white;
    overflow-x: hidden;
}

/* =========================
   HEADER
========================= */
.header{

    position: relative;

    width: 100%;

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

    padding: 20px 8%;

    background: rgba(12,12,12,0.92);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(212,163,115,0.12);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.25);

    z-index: 999;

}

/* =========================
   LOGO
========================= */
.logo-area{
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area img{
    width: 65px;
    height: 65px;

    object-fit: contain;
}

.mini-title{
    font-size: 12px;
    letter-spacing: 3px;
    color: #d4a373;
}

.logo-area h2{
    font-size: 1.3rem;
    font-weight: 700;
}

/* =========================
   NAVBAR
========================= */
.navbar{
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar a{
    text-decoration: none;
    color: white;

    font-weight: 500;

    transition: 0.3s;
}

.navbar a:hover{
    color: #d4a373;
}

.btn-menu{
    background: #d4a373;

    color: white !important;

    padding: 12px 20px;

    border-radius: 12px;

    transition: 0.3s;
}

.btn-menu:hover{
    background: #c48b58;

    transform: translateY(-3px);
}

/* =========================
   HERO
========================= */
.hero-encomenda{
    min-height: 70vh;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    text-align: center;

    padding: 160px 20px 80px;

    background:
    linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.8)
    ),
    url('../img/bolo2.png');

    background-size: cover;
    background-position: center;
}

.overlay{
    position: absolute;
    inset: 0;

    background:
    radial-gradient(
        circle at center,
        rgba(212,163,115,0.2),
        rgba(0,0,0,0.8)
    );
}

.hero-content{
    position: relative;
    z-index: 2;

    max-width: 750px;
}

.tag{
    display: inline-block;

    padding: 12px 20px;

    background: rgba(255,255,255,0.08);

    border-radius: 30px;

    border: 1px solid rgba(255,255,255,0.1);

    margin-bottom: 25px;

    color: #d4a373;

    backdrop-filter: blur(10px);
}

.hero-content h1{
    font-size: 4rem;

    line-height: 1.1;

    margin-bottom: 25px;
}

.hero-content p{
    color: #ddd;

    font-size: 1.1rem;

    line-height: 1.9;
}

/* =========================
   SECTIONS
========================= */
.section{
    padding: 80px 8% 60px;
}

.dark{
    background: #161616;
}

/* =========================
   TITLES
========================= */
.section-title{
    text-align: center;

    margin-bottom: 70px;
}

.section-title span{
    color: #d4a373;

    font-size: 14px;

    letter-spacing: 3px;
}

.section-title h2{
    font-size: 3rem;

    margin-top: 15px;
}

/* =========================
   CARDS
========================= */
.pedido-card{
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 30px;

    padding: 35px;

    backdrop-filter: blur(12px);

    transition: 0.4s;
}

.pedido-card:hover{
    transform: translateY(-8px);

    border-color: #d4a373;
}

/* =========================
   INPUTS
========================= */
.input-group{
    margin-bottom: 25px;
}

.input-group label{
    display: block;

    margin-bottom: 10px;

    font-weight: 500;

    color: #ddd;
}

.input-group select,
.input-group input{
    width: 100%;

    padding: 16px;

    border-radius: 15px;

    border: 1px solid rgba(255,255,255,0.08);

    background: rgba(255,255,255,0.05);

    color: white;

    outline: none;

    font-size: 15px;

    transition: 0.3s;
}

.input-group select:focus,
.input-group input:focus{
    border-color: #d4a373;
}

/* =========================
   SELECT CUSTOM
========================= */

.input-group select{

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;

    background:
    rgba(255,255,255,0.05)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23d4a373' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 5.646a.5.5 0 0 1 .708 0L8 11.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E")
    no-repeat right 15px center;

    padding-right: 50px;

}

/* OPTIONS */
.input-group select option{

    background: #1c1c1c;
    color: #fff;

    padding: 15px;

}

/* OPTGROUP */
.input-group select optgroup{

    background: #111;
    color: #d4a373;

    font-weight: bold;

}

/* =========================
   VALUE BOX
========================= */
.valor-box{
    margin-top: 35px;

    text-align: center;

    padding: 30px;

    border-radius: 20px;

    background:
    linear-gradient(
        135deg,
        #5c3a21,
        #2b1d13
    );
}

.valor-box span{
    color: #ddd;
}

.valor-box h3{
    font-size: 3rem;

    margin-top: 10px;

    color: #fff;
}

/* =========================
   DOCINHOS GRID
========================= */
.docinhos-grid{
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;
}

.pedido-card h3{
    font-size: 2rem;

    margin-bottom: 15px;
}

.pedido-card p{
    color: #bbb;

    line-height: 1.8;

    margin-bottom: 20px;
}

.valor-unit{
    display: inline-block;

    margin-bottom: 25px;

    color: #d4a373;

    font-weight: 600;
}

.subtotal{
    margin-top: 20px;

    font-size: 1.1rem;

    color: #ddd;
}

.subtotal strong{
    color: #d4a373;
}

/* =========================
   PRODUTOS
========================= */
.produto-img{
    width: 100%;
    height: 280px;

    object-fit: cover;

    border-radius: 20px;

    margin-bottom: 25px;
}

/* =========================
   FORM
========================= */
.formulario-section{
    padding: 120px 8%;

    background:
    linear-gradient(
        135deg,
        #1a1a1a,
        #101010
    );
}

.formulario-card{
    max-width: 850px;

    margin: auto;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 30px;

    padding: 50px;
}

/* =========================
   TOTAL
========================= */
.total-geral{
    margin-top: 40px;

    padding: 35px;

    border-radius: 25px;

    background:
    linear-gradient(
        135deg,
        #5c3a21,
        #2b1d13
    );

    text-align: center;
}

.total-geral span{
    color: #ddd;
}

.total-geral h2{
    font-size: 3rem;

    margin-top: 10px;
}

/* =========================
   BUTTON
========================= */
.btn-finalizar{
    width: 100%;

    margin-top: 35px;

    padding: 20px;

    border: none;

    border-radius: 18px;

    background: #d4a373;

    color: white;

    font-size: 18px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}

.btn-finalizar:hover{
    background: #c48b58;

    transform: translateY(-4px);
}

/* =========================
   MODAL
========================= */
.modal-topo{
    position: fixed;

    inset: 0;

    background: rgba(0,0,0,0.8);

    display: none;

    align-items: center;
    justify-content: center;

    z-index: 9999;

    padding: 20px;
}

.modal-content-topo{
    width: 100%;
    max-width: 750px;

    background: #1b1b1b;

    border-radius: 30px;

    padding: 50px;

    border: 1px solid rgba(255,255,255,0.08);

    text-align: center;
}

.modal-content-topo h2{
    font-size: 2.5rem;

    margin-bottom: 40px;
}

/* =========================
   TOPOS
========================= */
.topos-grid{
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 20px;
}

.topos-grid button{
    padding: 30px 20px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 20px;

    background: rgba(255,255,255,0.05);

    color: white;

    cursor: pointer;

    transition: 0.3s;

    font-size: 16px;

    font-weight: 500;
}

.topos-grid button span{
    display: block;

    margin-top: 10px;

    color: #d4a373;

    font-size: 14px;
}

.topos-grid button:hover{
    transform: translateY(-5px);

    border-color: #d4a373;

    background: rgba(255,255,255,0.08);
}

/* =========================
   RESPONSIVO
========================= */
@media(max-width: 1000px){

    .header{
        flex-direction: column;
        gap: 20px;
    }

    .navbar{
        flex-wrap: wrap;
        justify-content: center;
    }

}

@media(max-width: 768px){

    .hero-content h1{
        font-size: 2.5rem;
    }

    .section-title h2{
        font-size: 2.2rem;
    }

    .valor-box h3,
    .total-geral h2{
        font-size: 2.2rem;
    }

    .formulario-card{
        padding: 30px;
    }

    .modal-content-topo{
        padding: 35px 25px;
    }

    .modal-content-topo h2{
        font-size: 2rem;
    }

}

/* =========================
   FOOTER DEV
========================= */

.footer-dev{

    width: 100%;

    padding: 20px;

    background: #080808;

    border-top: 1px solid rgba(255,255,255,0.06);

    text-align: center;

}

.footer-dev p{

    color: #888;

    margin-bottom: 12px;

    font-size: 14px;

}

.footer-dev strong{

    color: #d4a373;

}

.dev-links{

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 18px;

}

.dev-links a{

    text-decoration: none;

    color: #bbb;

    font-size: 14px;

    transition: 0.3s;

}

.dev-links a:hover{

    color: #d4a373;

}

.btn-voltar-topo{
    width:100%;

    margin-top:10px;

    background:transparent !important;

    border:2px solid rgba(255,255,255,0.15);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    transition:.3s;
}

.btn-voltar-topo:hover{
    background:rgba(255,255,255,0.08) !important;

    transform:translateY(-2px);
}

@media(max-width: 768px){

    .dev-links{

        flex-direction: column;

        gap: 10px;

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

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
    background: #111;
    color: white;
    overflow-x: hidden;
}

/* =========================
   HEADER
========================= */
.header{

    position: relative;

    width: 100%;

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

    padding: 20px 8%;

    background: rgba(12,12,12,0.92);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(212,163,115,0.12);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.25);

    z-index: 999;

}

/* =========================
   LOGO
========================= */
.logo-area{
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area img{
    width: 65px;
    height: 65px;

    object-fit: contain;
}

.mini-title{
    font-size: 12px;
    letter-spacing: 3px;
    color: #d4a373;
}

.logo-area h2{
    font-size: 1.3rem;
    font-weight: 700;
}

/* =========================
   NAVBAR
========================= */
.navbar{
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar a{
    text-decoration: none;
    color: white;

    font-weight: 500;

    transition: 0.3s;
}

.navbar a:hover{
    color: #d4a373;
}

.btn-menu{
    background: #d4a373;

    color: white !important;

    padding: 12px 20px;

    border-radius: 12px;

    transition: 0.3s;
}

.btn-menu:hover{
    background: #c48b58;

    transform: translateY(-3px);
}

/* =========================
   HERO
========================= */
.hero-encomenda{
    min-height: 70vh;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    text-align: center;

    padding: 160px 20px 80px;

    background:
    linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.8)
    ),
    url('../img/bolo2.png');

    background-size: cover;
    background-position: center;
}

.overlay{
    position: absolute;
    inset: 0;

    background:
    radial-gradient(
        circle at center,
        rgba(212,163,115,0.2),
        rgba(0,0,0,0.8)
    );
}

.hero-content{
    position: relative;
    z-index: 2;

    max-width: 750px;
}

.tag{
    display: inline-block;

    padding: 12px 20px;

    background: rgba(255,255,255,0.08);

    border-radius: 30px;

    border: 1px solid rgba(255,255,255,0.1);

    margin-bottom: 25px;

    color: #d4a373;

    backdrop-filter: blur(10px);
}

.hero-content h1{
    font-size: 4rem;

    line-height: 1.1;

    margin-bottom: 25px;
}

.hero-content p{
    color: #ddd;

    font-size: 1.1rem;

    line-height: 1.9;
}

/* =========================
   SECTIONS
========================= */
.section{
    padding: 80px 8% 60px;
}

.dark{
    background: #161616;
}

/* =========================
   TITLES
========================= */
.section-title{
    text-align: center;

    margin-bottom: 70px;
}

.section-title span{
    color: #d4a373;

    font-size: 14px;

    letter-spacing: 3px;
}

.section-title h2{
    font-size: 3rem;

    margin-top: 15px;
}

/* =========================
   CARDS
========================= */
.pedido-card{
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 30px;

    padding: 35px;

    backdrop-filter: blur(12px);

    transition: 0.4s;
}

.pedido-card:hover{
    transform: translateY(-8px);

    border-color: #d4a373;
}

/* =========================
   INPUTS
========================= */
.input-group{
    margin-bottom: 25px;
}

.input-group label{
    display: block;

    margin-bottom: 10px;

    font-weight: 500;

    color: #ddd;
}

.input-group select,
.input-group input{
    width: 100%;

    padding: 16px;

    border-radius: 15px;

    border: 1px solid rgba(255,255,255,0.08);

    background: rgba(255,255,255,0.05);

    color: white;

    outline: none;

    font-size: 15px;

    transition: 0.3s;
}

.input-group select:focus,
.input-group input:focus{
    border-color: #d4a373;
}

/* =========================
   SELECT CUSTOM
========================= */

.input-group select{

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;

    background:
    rgba(255,255,255,0.05)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23d4a373' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 5.646a.5.5 0 0 1 .708 0L8 11.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E")
    no-repeat right 15px center;

    padding-right: 50px;

}

/* OPTIONS */
.input-group select option{

    background: #1c1c1c;
    color: #fff;

    padding: 15px;

}

/* OPTGROUP */
.input-group select optgroup{

    background: #111;
    color: #d4a373;

    font-weight: bold;

}

/* =========================
   VALUE BOX
========================= */
.valor-box{
    margin-top: 35px;

    text-align: center;

    padding: 30px;

    border-radius: 20px;

    background:
    linear-gradient(
        135deg,
        #5c3a21,
        #2b1d13
    );
}

.valor-box span{
    color: #ddd;
}

.valor-box h3{
    font-size: 3rem;

    margin-top: 10px;

    color: #fff;
}

/* =========================
   DOCINHOS GRID
========================= */
.docinhos-grid{
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;
}

.pedido-card h3{
    font-size: 2rem;

    margin-bottom: 15px;
}

.pedido-card p{
    color: #bbb;

    line-height: 1.8;

    margin-bottom: 20px;
}

.valor-unit{
    display: inline-block;

    margin-bottom: 25px;

    color: #d4a373;

    font-weight: 600;
}

.subtotal{
    margin-top: 20px;

    font-size: 1.1rem;

    color: #ddd;
}

.subtotal strong{
    color: #d4a373;
}

/* =========================
   PRODUTOS
========================= */
.produto-img{
    width: 100%;
    height: 280px;

    object-fit: cover;

    border-radius: 20px;

    margin-bottom: 25px;
}

/* =========================
   FORM
========================= */
.formulario-section{
    padding: 120px 8%;

    background:
    linear-gradient(
        135deg,
        #1a1a1a,
        #101010
    );
}

.formulario-card{
    max-width: 850px;

    margin: auto;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 30px;

    padding: 50px;
}

/* =========================
   TOTAL
========================= */
.total-geral{
    margin-top: 40px;

    padding: 35px;

    border-radius: 25px;

    background:
    linear-gradient(
        135deg,
        #5c3a21,
        #2b1d13
    );

    text-align: center;
}

.total-geral span{
    color: #ddd;
}

.total-geral h2{
    font-size: 3rem;

    margin-top: 10px;
}

/* =========================
   BUTTON
========================= */
.btn-finalizar{
    width: 100%;

    margin-top: 35px;

    padding: 20px;

    border: none;

    border-radius: 18px;

    background: #d4a373;

    color: white;

    font-size: 18px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}

.btn-finalizar:hover{
    background: #c48b58;

    transform: translateY(-4px);
}

/* =========================
   MODAL
========================= */
.modal-topo{
    position: fixed;

    inset: 0;

    background: rgba(0,0,0,0.8);

    display: none;

    align-items: center;
    justify-content: center;

    z-index: 9999;

    padding: 20px;
}

.modal-content-topo{
    width: 100%;
    max-width: 750px;

    background: #1b1b1b;

    border-radius: 30px;

    padding: 50px;

    border: 1px solid rgba(255,255,255,0.08);

    text-align: center;
}

.modal-content-topo h2{
    font-size: 2.5rem;

    margin-bottom: 40px;
}

/* =========================
   TOPOS
========================= */
.topos-grid{
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 20px;
}

.topos-grid button{
    padding: 30px 20px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 20px;

    background: rgba(255,255,255,0.05);

    color: white;

    cursor: pointer;

    transition: 0.3s;

    font-size: 16px;

    font-weight: 500;
}

.topos-grid button span{
    display: block;

    margin-top: 10px;

    color: #d4a373;

    font-size: 14px;
}

.topos-grid button:hover{
    transform: translateY(-5px);

    border-color: #d4a373;

    background: rgba(255,255,255,0.08);
}

/* =========================
   RESPONSIVO
========================= */
@media(max-width: 1000px){

    .header{
        flex-direction: column;
        gap: 20px;
    }

    .navbar{
        flex-wrap: wrap;
        justify-content: center;
    }

}

@media(max-width: 768px){

    .hero-content h1{
        font-size: 2.5rem;
    }

    .section-title h2{
        font-size: 2.2rem;
    }

    .valor-box h3,
    .total-geral h2{
        font-size: 2.2rem;
    }

    .formulario-card{
        padding: 30px;
    }

    .modal-content-topo{
        padding: 35px 25px;
    }

    .modal-content-topo h2{
        font-size: 2rem;
    }

}

/* =========================
   FOOTER DEV
========================= */

.footer-dev{

    width: 100%;

    padding: 20px;

    background: #080808;

    border-top: 1px solid rgba(255,255,255,0.06);

    text-align: center;

}

.footer-dev p{

    color: #888;

    margin-bottom: 12px;

    font-size: 14px;

}

.footer-dev strong{

    color: #d4a373;

}

.dev-links{

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 18px;

}

.dev-links a{

    text-decoration: none;

    color: #bbb;

    font-size: 14px;

    transition: 0.3s;

}

.dev-links a:hover{

    color: #d4a373;

}

.btn-voltar{

    margin-top:20px;
    width:100%;
    padding:14px;

    border:none;
    border-radius:12px;

    background:#f1f1f1;
    color:#333;

    cursor:pointer;

    font-weight:600;

    transition:.3s;

}

.btn-voltar:hover{

    background:#e4e4e4;

}

@media(max-width: 768px){

    .dev-links{

        flex-direction: column;

        gap: 10px;

    }

}
}