
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}


body {
    min-height: 100vh;
    background: url('/assets/img_BBytes/491362538070.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: -1;
}


.container {
    width: 100%;
    max-width: 980px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 7%;
    background: #004786;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    z-index: 1000;
}
header .logo img {
    width: 100px;
    height: auto;
}
.navbar {
    display: flex;
    list-style: none;
    gap: 15px;
}
.navbar li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.navbar li a:hover {
    transform: translateY(-3px);
}

.menu > li {
    position: relative;
}
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 160px;
    border-radius: 5px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.menu > li:hover .submenu {
    display: block;
}
.submenu li a {
    display: block;
    padding: 10px 15px;
    color: #444;
    font-weight: 500;
}
.submenu li a:hover {
    background: #f3831f;
    color: #fff;
}


.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-icons i {
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}
.header-icons i:hover {
    transform: scale(1.15);
}


#contadorCarrinho {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    padding: 2px 6px;
}


.card {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 0;
}
.card .info {
    padding: 28px;
    background: linear-gradient(135deg, rgba(99,102,241,0.06), rgba(139,92,246,0.03));
    border-right: 1px solid rgba(0,0,0,0.05);
}
.info h2 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111;
}
.info p {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}
.info .badge {
    display: inline-block;
    padding: 6px 12px;
    background: #eef2ff;
    color: #004786;
    border-radius: 999px;
    font-weight: 600;
    font-size: 12px;
}


form {
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}
.input, select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e6e9f2;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}
.input:focus, select:focus {
    border-color: #f3831f;
    box-shadow: 0 4px 12px rgba(243,131,31,0.2);
}


.field-group {
    display: flex;
    gap: 12px;
}
.small { flex:1; }
.small.sm { max-width:120px; }


select {
    appearance: none;
    padding-right: 40px;
    background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}


.btn {
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
    border: none;
}
.btn-primary {
    background: #004786;
    color: #fff;
}
.btn-primary:hover {
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    border: 1px solid #e6e9f2;
    color: #0f172a;
}


.form-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}
.total {
    font-weight: 800;
    font-size: 18px;
}

.note {
    font-size: 13px;
    color: #64748b;
}
.input-icon {
    position: relative;
}
.input-icon i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #94a3b8;
}


@media (max-width:900px) {
    .card { grid-template-columns: 1fr; }
    header { padding: 12px 18px; }
    .container { padding: 12px; }
}