@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

:root { --pax-orange: #ff8800; --pax-orange-dark: #cc5500; }

html { font-size: 14px; -webkit-tap-highlight-color: transparent; scroll-behavior: smooth; }
@media (min-width: 768px) { html { font-size: 16px; } }

body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: #fff7ed; color: #4a332d; overflow-x: hidden; }

/* 3D BUTTONS STYLE */
.btn-pax { background: linear-gradient(to bottom, #faa307, #f48c06); color: white; border: none; border-bottom: 5px solid #d00000; border-radius: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.1s ease; box-shadow: 0 10px 20px -5px rgba(244, 140, 6, 0.4); position: relative; top: 0; }
.btn-pax:hover:not(:disabled) { background: linear-gradient(to bottom, #ffba08, #faa307); transform: translateY(-2px); box-shadow: 0 15px 25px -5px rgba(244, 140, 6, 0.5); }
.btn-pax:active:not(:disabled) { border-bottom-width: 2px; transform: translateY(3px); box-shadow: 0 2px 5px rgba(0,0,0,0.2); }

.btn-sec { background: linear-gradient(to bottom, #f8f9fa, #e9ecef); color: #495057; border-bottom: 4px solid #ced4da; border-radius: 12px; font-weight: 700; transition: all 0.1s; }
.btn-sec:active { border-bottom-width: 1px; transform: translateY(3px); }

/* CARDS */
.pax-card { background: white; border-radius: 24px; border: 2px solid #ffffff; box-shadow: 0 8px 30px rgba(0,0,0,0.04), 0 4px 0 rgba(0,0,0,0.02); transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; overflow: hidden; }
.pax-card:hover { transform: translateY(-5px) scale(1.01); box-shadow: 0 20px 40px -10px rgba(242, 145, 48, 0.15); border-color: #ffedd5; }

.carousel-slide { opacity: 0; transition: opacity 1s ease-in-out; z-index: 1; }
.carousel-slide.active { opacity: 1; z-index: 10; }

input[type="text"], input[type="password"], input[type="number"], input[type="email"], select, textarea, input[type="date"] { border: 2px solid #e5e7eb; background-color: #f9fafb; border-radius: 16px; transition: all 0.2s; font-weight: 600; color: #4b5563; }
input:focus, select:focus, textarea:focus { border-color: #f97316; background-color: white; box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1); outline: none; }

.hidden-app { display: none !important; }
.modal-overlay { background: rgba(45, 27, 20, 0.7); backdrop-filter: blur(12px); z-index: 100; display: none; align-items: center; justify-content: center; position: fixed; inset: 0; animation: fadeIn 0.2s ease; padding: 1rem; }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.loading-overlay { position: fixed; inset: 0; background: rgba(255,255,255,0.9); backdrop-filter: blur(5px); display: none; align-items: center; justify-content: center; z-index: 200; }

.menu-btn { margin-bottom: 8px; border-radius: 12px; transition: all 0.2s; font-weight: 700; color: #64748b; border: 2px solid transparent; }
.menu-btn:hover { background: #fff1f2; color: #e11d48; transform: translateX(5px); }
.menu-btn.active-view { background: linear-gradient(90deg, #fff7ed 0%, white 100%); color: #ea580c; border: 2px solid #fed7aa; box-shadow: 4px 4px 0 #fed7aa; transform: translateX(2px); }

.status-badge { padding: 4px 10px; border-radius: 12px; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; border-width: 1px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.status-pendente { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }
.status-entregue { background: #f0fdf4; color: #15803d; border-color: #bbf7d0; }

.float-btn { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); border: 2px solid white; }
.float-btn:hover { transform: scale(1.15) rotate(5deg); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

.file-upload-wrapper { position: relative; overflow: hidden; display: inline-block; width: 100%; transition: all 0.2s; }
.file-upload-wrapper:hover { border-color: #f97316; background-color: #fff7ed; }
.file-upload-wrapper input[type=file] { font-size: 100px; position: absolute; left: 0; top: 0; opacity: 0; cursor: pointer; }
.preview-img { width: 100%; height: 100px; object-fit: contain; background: white; border: 2px dashed #fed7aa; border-radius: 16px; margin-top: 0.5rem; display: none; box-shadow: inset 0 0 20px rgba(0,0,0,0.02); }
.preview-img.show { display: block; }

/* GALLERY GRID STYLE */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; margin-top: 10px; }
.gallery-item { position: relative; width: 100%; height: 80px; border-radius: 12px; overflow: hidden; border: 2px solid #eee; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-remove { position: absolute; top: 2px; right: 2px; background: rgba(255,0,0,0.8); color: white; border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 10px; cursor: pointer; z-index: 10; }

.toast-enter { transform: translateX(100%); opacity: 0; }
.toast-enter-active { transform: translateX(0); opacity: 1; transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28); }
.toast-exit { transform: translateX(0); opacity: 1; }
.toast-exit-active { transform: translateX(100%); opacity: 0; transition: all 0.3s ease; }

.landing-hero { background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%); position: relative; overflow: hidden; }
.landing-hero::before { content: ''; position: absolute; top: -50px; right: -50px; width: 300px; height: 300px; background: rgba(255, 136, 0, 0.1); border-radius: 50%; blur: 50px; }
.lp-nav-link { font-weight: 700; color: #4a332d; transition: color 0.2s; font-size: 0.9rem; text-transform: uppercase; }
.lp-nav-link:hover { color: #f97316; }
.lp-section-title { font-weight: 900; font-size: 2rem; color: #4a332d; text-transform: uppercase; margin-bottom: 1rem; text-align: center; }
.lp-service-card { background: white; padding: 2rem; border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s; border: 2px solid transparent; }
.lp-service-card:hover { transform: translateY(-5px); border-color: #ffedd5; }

.lp-team-card { background: white; border-radius: 24px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: transform 0.3s; text-align: center; padding-bottom: 1.5rem; border: 1px solid #f3f4f6; }
.lp-team-card:hover { transform: translateY(-5px); border-color: #ffedd5; }
.lp-team-img { width: 100%; height: 250px; object-fit: cover; border-bottom: 4px solid #fff7ed; }

.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

.category-tab { padding: 8px 16px; border-radius: 12px; font-weight: 700; font-size: 0.8rem; color: #64748b; background: white; border: 1px solid #e2e8f0; cursor: pointer; white-space: nowrap; transition: all 0.2s; }
.category-tab.active-cat { background: #ffedd5; color: #ea580c; border-color: #fed7aa; }

.lp-extra-card { display: flex; flex-direction: column; background: white; border-radius: 24px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #f3f4f6; transition: transform 0.3s; }
.lp-extra-card:hover { transform: translateY(-5px); }
.lp-extra-img { height: 250px; object-fit: cover; width: 100%; }
@media (min-width: 768px) { .lp-extra-card { flex-direction: row; } .lp-extra-img { width: 45%; height: auto; min-height: 300px; } }

/* ESTILO DO CARROSSEL DE PARCEIROS */
.partners-scroll-container { display: flex; overflow-x: auto; gap: 1rem; padding-bottom: 0.5rem; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; }
.partners-scroll-container::-webkit-scrollbar { display: none; }
.partner-card-mini { flex: 0 0 auto; width: 100px; height: 60px; background: white; border-radius: 12px; border: 1px solid #f3f4f6; display: flex; align-items: center; justify-content: center; padding: 0.5rem; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); scroll-snap-align: start; transition: all 0.2s; }
.partner-card-mini:hover { transform: translateY(-2px); border-color: #ffedd5; box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.1); }
.partner-card-mini img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%); opacity: 0.6; transition: all 0.3s; }
.partner-card-mini:hover img { filter: grayscale(0%); opacity: 1; }
@media (min-width: 768px) { .partner-card-mini { width: 120px; height: 70px; } }