@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800;900&display=swap');

/* ══ DESIGN TOKENS ══ */
:root {
    --bg: #040f0f;
    --bg2: #071a19;
    --bg3: #0c2825;
    --text: #fdf8ee;
    --muted: #a89060;
    --dim: #6b5a38;
    --accent: #c9a227;
    --accent2: #0d5c55;
    --green: #25D366;
    --glass: rgba(10, 36, 34, 0.65);
    --border: rgba(201, 162, 39, 0.2);
    --radius: 20px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ══ RESET ══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ══ TYPOGRAPHY ══ */
h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; line-height: 1.05; letter-spacing: -3px; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -1.5px; }
h3 { font-size: 1.3rem; font-weight: 700; }

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--accent) 60%, var(--accent2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ══ BUBBLES ══ */
.bubbles-container { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.bubble {
    position: absolute;
    bottom: -150px;
    background: radial-gradient(circle at 30% 30%, rgba(201, 162, 39, 0.25), rgba(201, 162, 39, 0.05));
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.15);
    animation: rise 15s infinite ease-in;
}
.bubble:nth-child(1) { width: 40px; height: 40px; left: 8%;  animation-duration: 12s; }
.bubble:nth-child(2) { width: 20px; height: 20px; left: 20%; animation-duration: 8s;  animation-delay: 1.5s; }
.bubble:nth-child(3) { width: 55px; height: 55px; left: 35%; animation-duration: 16s; animation-delay: 2s; }
.bubble:nth-child(4) { width: 30px; height: 30px; left: 50%; animation-duration: 10s; animation-delay: 0.5s; }
.bubble:nth-child(5) { width: 25px; height: 25px; left: 65%; animation-duration: 14s; animation-delay: 3.5s; }
.bubble:nth-child(6) { width: 45px; height: 45px; left: 78%; animation-duration: 11s; animation-delay: 1s; }
.bubble:nth-child(7) { width: 15px; height: 15px; left: 90%; animation-duration: 9s;  animation-delay: 4.5s; }
.bubble:nth-child(8) { width: 35px; height: 35px; left: 4%;  animation-duration: 13s; animation-delay: 2.5s; }

@keyframes rise {
    0%   { bottom: -150px; transform: translateX(0); opacity: 0; }
    10%  { opacity: 1; }
    50%  { transform: translateX(40px); }
    100% { bottom: 110%; transform: translateX(-40px); opacity: 0; }
}

/* ══ NAV ══ */
.premium-nav {
    position: fixed; top: 0; width: 100%;
    padding: 1.2rem 3rem;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
    backdrop-filter: blur(12px);
    transition: background 0.4s ease, border-bottom 0.4s ease;
}
.premium-nav.scrolled {
    background: rgba(0,0,0,0.95);
    border-bottom: 1px solid var(--border);
}

.nav-logo { display: flex; align-items: center; gap: 0.8rem; }
.nav-logo-img { width: 44px; height: 44px; border-radius: 12px; object-fit: cover; box-shadow: 0 0 14px rgba(0,240,255,0.3); }
.logo-title { font-size: 1rem; font-weight: 900; letter-spacing: 1.5px; display: block; }
.logo-sub { font-size: 0.6rem; font-weight: 700; letter-spacing: 3px; color: var(--accent); text-transform: uppercase; display: block; }

.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a {
    color: var(--muted); font-size: 0.88rem; font-weight: 600;
    transition: color 0.3s; padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--text); }
.nav-admin {
    background: var(--glass); border: 1px solid var(--border);
    padding: 0.4rem 1rem !important; border-radius: 30px;
    color: var(--muted) !important;
}
.nav-admin:hover { color: var(--text) !important; border-color: rgba(255,255,255,0.2) !important; }

/* ══ CART BUTTON (no nav) ══ */
.cart-float-btn {
    position: relative;
    background: var(--glass); border: 1px solid var(--border);
    color: var(--text); font-size: 1.2rem; cursor: pointer;
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.cart-float-btn:hover { border-color: var(--accent); box-shadow: 0 0 16px rgba(0,240,255,0.3); }
.cart-float-btn.cart-pop { transform: scale(1.2); }

.cart-badge {
    position: absolute; top: -5px; right: -5px;
    background: var(--accent); color: #000;
    font-size: 0.65rem; font-weight: 800;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* ══ HERO ══ */
.hero-3d {
    height: 200vh;
    position: relative;
}
.canvas-container {
    position: sticky; top: 0;
    width: 100%; height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
#fish-3d-model {
    /* Estilos agora controlados pela classe .animated-fish lá no final do arquivo */
    mix-blend-mode: screen;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.75) 40%, transparent 80%),
                linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
}
.hero-content {
    position: absolute; top: 50%; left: 8%;
    transform: translateY(-50%);
    z-index: 5; max-width: 600px;
}
.hero-badge {
    display: inline-block;
    background: rgba(0,240,255,0.1); border: 1px solid rgba(0,240,255,0.3);
    color: var(--accent); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 0.4rem 1rem; border-radius: 30px;
    margin-bottom: 1.2rem;
    animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0px rgba(0,240,255,0); }
    50% { box-shadow: 0 0 20px rgba(0,240,255,0.3); }
}
.hero-content p { font-size: 1.1rem; color: var(--muted); max-width: 430px; margin: 1.2rem 0 2rem; }

.hero-stats { display: flex; gap: 2.5rem; margin-bottom: 2rem; }
.hero-stat .stat-num { font-size: 2.2rem; font-weight: 900; background: linear-gradient(135deg, #fff, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stat .stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.btn-scroll {
    display: inline-block;
    background: transparent; border: 1px solid rgba(255,255,255,0.2);
    color: var(--text); padding: 0.8rem 2rem; border-radius: 30px;
    font-weight: 600; font-size: 0.9rem;
    transition: var(--transition);
    animation: bounce 2s ease-in-out infinite;
}
.btn-scroll:hover { border-color: var(--accent); color: var(--accent); }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ══ DETAILS ══ */
.details-section {
    padding: 12rem 10%; background: var(--bg2);
    position: relative; z-index: 10;
}
.detail-block p { font-size: 1.4rem; color: var(--muted); margin-top: 1.8rem; max-width: 600px; line-height: 1.8; }

/* ══ CATALOG SECTION ══ */
.catalog-section { padding: 8rem 5%; background: var(--bg); position: relative; z-index: 10; }
.catalog-header { text-align: center; margin-bottom: 4rem; }
.catalog-header p { color: var(--muted); margin-top: 0.8rem; }

.catalog-filters { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.filter-tabs { display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center; }
.filter-tab {
    background: var(--glass); border: 1px solid var(--border);
    color: var(--muted); padding: 0.6rem 1.4rem; border-radius: 30px;
    font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600;
    cursor: pointer; transition: var(--transition);
}
.filter-tab:hover { color: var(--text); border-color: rgba(255,255,255,0.15); }
.filter-tab.active { background: var(--text); color: #000; border-color: var(--text); }

.search-box {
    position: relative; display: flex; align-items: center;
    background: var(--glass); border: 1px solid var(--border);
    border-radius: 30px; padding: 0.6rem 1.2rem; gap: 0.7rem;
    width: 100%; max-width: 400px;
    transition: border-color 0.3s;
}
.search-box:focus-within { border-color: rgba(0,240,255,0.4); }
.search-box input {
    background: transparent; border: none; outline: none;
    color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.9rem; flex: 1;
}
.search-icon { font-size: 1rem; }
.results-count { font-size: 0.8rem; color: var(--muted); }

/* ══ CATALOG GRID ══ */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.8rem;
}
.loading-state { grid-column: 1/-1; text-align: center; padding: 4rem; color: var(--muted); font-size: 1.1rem; }

/* ══ FISH CARD ══ */
.fish-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    animation: cardFadeIn 0.5s ease both;
}
@keyframes cardFadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.fish-card::before {
    content: ''; position: absolute; inset: -1px;
    background: linear-gradient(135deg, rgba(0,240,255,0.4), transparent 50%, rgba(0,119,255,0.4));
    border-radius: calc(var(--radius) + 1px);
    opacity: 0; transition: opacity 0.5s ease;
    z-index: 0;
}
.fish-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,240,255,0.1); }
.fish-card:hover::before { opacity: 1; }

.fish-img-container {
    height: 220px; overflow: hidden; background: #0a0a0a;
    position: relative; z-index: 1;
}
.fish-img-container img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.fish-card:hover .fish-img-container img { transform: scale(1.08); }

.badge-category, .badge-stock {
    position: absolute; top: 12px;
    padding: 0.3rem 0.8rem; border-radius: 20px;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-category { left: 12px; background: rgba(0,0,0,0.7); border: 1px solid var(--border); color: var(--accent); }
.badge-stock { right: 12px; }
.badge-stock.in-stock { background: rgba(37, 211, 102, 0.15); border: 1px solid rgba(37,211,102,0.4); color: #25D366; }
.badge-stock.out-of-stock { background: rgba(255,68,68,0.15); border: 1px solid rgba(255,68,68,0.4); color: #ff4444; }

.fish-info { padding: 1.3rem; position: relative; z-index: 1; }
.fish-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.2rem; }
.fish-species { font-size: 0.78rem; color: var(--accent); font-style: italic; margin-bottom: 0.5rem; }
.fish-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; margin-bottom: 1rem; }
.fish-card-footer { display: flex; align-items: center; justify-content: space-between; }
.fish-price { font-size: 1.3rem; font-weight: 900; background: linear-gradient(135deg, #fff, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.fish-actions { display: flex; gap: 0.5rem; }

.btn-detail {
    background: var(--glass); border: 1px solid var(--border);
    color: var(--text); padding: 0.5rem 0.8rem; border-radius: 10px;
    cursor: pointer; font-size: 0.9rem; transition: var(--transition);
}
.btn-detail:hover { border-color: rgba(255,255,255,0.3); }

.btn-add-cart {
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    border: none; color: #000; padding: 0.5rem 1rem; border-radius: 10px;
    font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700;
    cursor: pointer; transition: var(--transition);
}
.btn-add-cart:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(0,240,255,0.4); }
.btn-add-cart:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* ══ SOBRE ══ */
.sobre-section { padding: 10rem 5%; background: var(--bg2); position: relative; z-index: 10; }
.sobre-inner { display: grid; grid-template-columns: 280px 1fr; gap: 5rem; max-width: 1100px; margin: 0 auto; align-items: center; }
.sobre-logo-wrap { display: flex; justify-content: center; }
.sobre-logo { width: 240px; height: 240px; border-radius: 30px; object-fit: cover; box-shadow: 0 0 60px rgba(0,240,255,0.25), 0 30px 60px rgba(0,0,0,0.5); border: 2px solid rgba(0,240,255,0.2); }
.sobre-text p { font-size: 1.05rem; color: var(--muted); margin: 1.5rem 0 2rem; line-height: 1.9; }
.sobre-cards { display: flex; flex-direction: column; gap: 1rem; }
.sobre-card {
    display: flex; align-items: flex-start; gap: 1rem;
    background: var(--glass); border: 1px solid var(--border);
    border-radius: 16px; padding: 1.2rem 1.5rem;
    transition: var(--transition);
}
.sobre-card:hover { border-color: rgba(0,240,255,0.2); }
.sobre-card-icon { font-size: 1.8rem; flex-shrink: 0; }
.sobre-card strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
.sobre-card span, .sobre-card a { font-size: 0.82rem; color: var(--muted); }
.sobre-card a { color: #c77dff; }
.sobre-card a:hover { opacity: 0.7; }

/* ══ CONTACT ══ */
.contact-section {
    padding: 10rem 5%;
    display: flex; justify-content: center;
    background: radial-gradient(ellipse at center, rgba(0,119,255,0.05) 0%, transparent 70%);
    position: relative; z-index: 10;
}
.contact-glass {
    background: var(--glass); backdrop-filter: blur(30px);
    border: 1px solid var(--border); border-radius: 30px;
    padding: 4rem; text-align: center; max-width: 600px;
    box-shadow: 0 0 80px rgba(0,240,255,0.05);
}
.contact-icon { font-size: 3rem; margin-bottom: 1rem; }
.contact-glass h2 { margin-bottom: 1rem; }
.contact-glass p { color: var(--muted); margin-bottom: 2rem; font-size: 1rem; }
.btn-premium {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--green), #128C7E);
    color: #fff; padding: 1rem 2.5rem; border-radius: 50px;
    font-weight: 700; font-size: 1rem; transition: var(--transition);
    box-shadow: 0 6px 30px rgba(37,211,102,0.4);
}
.btn-premium:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }

/* ══ FOOTER ══ */
.site-footer {
    background: var(--bg); border-top: 1px solid var(--border);
    text-align: center; padding: 3rem 2rem;
    position: relative; z-index: 10;
}
.footer-logo-wrap { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-bottom: 1rem; }
.footer-logo-img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.footer-brand { font-size: 1rem; font-weight: 800; letter-spacing: 1.5px; }
.site-footer p { color: var(--muted); font-size: 0.82rem; margin-top: 0.3rem; }
.footer-insta { display: inline-block; margin-top: 0.8rem; color: #c77dff; font-size: 0.85rem; font-weight: 600; transition: opacity 0.2s; }
.footer-insta:hover { opacity: 0.7; }
.footer-copy { margin-top: 0.8rem !important; color: var(--dim) !important; font-size: 0.75rem !important; }

/* ══ CART DRAWER ══ */
.cart-drawer-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
    display: none; justify-content: flex-end;
}
.cart-drawer-overlay.open { display: flex; }

.cart-drawer {
    width: 380px; max-width: 95vw;
    background: #0d0d0d; border-left: 1px solid var(--border);
    display: flex; flex-direction: column; height: 100%;
    animation: slideInRight 0.35s ease;
}
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }

.cart-drawer-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem; border-bottom: 1px solid var(--border);
}
.cart-drawer-header h3 { font-size: 1.1rem; font-weight: 700; }
.cart-close-btn { background: none; border: none; color: var(--muted); font-size: 1.2rem; cursor: pointer; transition: color 0.2s; }
.cart-close-btn:hover { color: var(--text); }

.cart-empty {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 1rem;
    color: var(--muted); text-align: center; padding: 2rem;
}
.cart-empty-icon { font-size: 3rem; }
.cart-empty h4 { font-size: 1rem; font-weight: 600; color: var(--text); }
.cart-empty p { font-size: 0.85rem; }

.cart-items-list { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.8rem; }

.cart-item {
    display: flex; align-items: center; gap: 0.8rem;
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    border-radius: 14px; padding: 0.8rem;
}
.cart-item-img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; background: #111; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.88rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: 0.8rem; color: var(--accent); font-weight: 700; }
.cart-item-controls { display: flex; align-items: center; gap: 0.5rem; }
.cart-qty-btn {
    background: rgba(255,255,255,0.05); border: 1px solid var(--border);
    color: var(--text); width: 26px; height: 26px; border-radius: 8px;
    cursor: pointer; font-size: 1rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.cart-qty-btn:hover { background: rgba(255,255,255,0.1); }
.cart-qty-value { font-size: 0.9rem; font-weight: 700; min-width: 20px; text-align: center; }
.cart-remove-btn { background: none; border: none; cursor: pointer; font-size: 1rem; opacity: 0.5; transition: opacity 0.2s; flex-shrink: 0; }
.cart-remove-btn:hover { opacity: 1; }

.cart-footer { padding: 1.2rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.8rem; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; }
.cart-total-row span:first-child { font-size: 0.85rem; color: var(--muted); }
#cart-total-value { font-size: 1.3rem; font-weight: 900; background: linear-gradient(135deg, #fff, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.cart-checkout-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: linear-gradient(135deg, var(--green), #128C7E);
    border: none; color: #fff; padding: 1rem; border-radius: 14px;
    font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 700;
    cursor: pointer; transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.cart-checkout-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.cart-clear-btn {
    background: none; border: 1px solid var(--border); color: var(--muted);
    padding: 0.6rem; border-radius: 10px; cursor: pointer;
    font-family: 'Inter', sans-serif; font-size: 0.8rem; transition: var(--transition);
}
.cart-clear-btn:hover { border-color: #ff4444; color: #ff4444; }

/* ══ CART TOAST ══ */
.cart-toast {
    position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px);
    background: rgba(20,20,20,0.95); border: 1px solid var(--border);
    color: var(--text); padding: 0.8rem 1.5rem; border-radius: 30px;
    font-size: 0.9rem; font-weight: 600; z-index: 3000;
    opacity: 0; transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px); white-space: nowrap;
}
.cart-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ══ MODAL PEIXE ══ */
.modal-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
    display: none; align-items: center; justify-content: center; padding: 2rem;
}
.modal-overlay.open { display: flex; }
.modal {
    background: #0d0d0d; border: 1px solid var(--border);
    border-radius: 24px; max-width: 800px; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr;
    overflow: hidden; position: relative;
    animation: scaleIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 90vh;
}
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.btn-close-modal {
    position: absolute; top: 1rem; right: 1rem; z-index: 10;
    background: rgba(0,0,0,0.6); border: 1px solid var(--border);
    color: var(--text); width: 36px; height: 36px; border-radius: 50%;
    cursor: pointer; font-size: 1rem; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.btn-close-modal:hover { background: rgba(255,255,255,0.1); }
.modal-img { overflow: hidden; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 2rem; overflow-y: auto; display: flex; flex-direction: column; }
.modal-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.3rem; }
.modal-species { color: var(--accent); font-style: italic; font-size: 0.88rem; margin-bottom: 1rem; }
.modal-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.7; flex: 1; }
.modal-meta { display: flex; gap: 1rem; margin: 1.2rem 0; flex-wrap: wrap; }
.modal-meta-item { font-size: 0.82rem; color: var(--muted); }
.modal-meta-item strong { color: var(--text); }
.modal-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }
.modal-price-big { font-size: 2rem; font-weight: 900; background: linear-gradient(135deg, #fff, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.btn-add-cart-modal {
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    border: none; color: #000; padding: 0.9rem 1.6rem; border-radius: 14px;
    font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer;
    transition: var(--transition);
}
.btn-add-cart-modal:hover { transform: scale(1.05); }
.btn-add-cart-modal:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* ══ WHATSAPP FLUTUANTE ══ */
.whatsapp-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 1500;
    background: linear-gradient(135deg, #25D366, #128C7E);
    width: 58px; height: 58px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
    transition: var(--transition);
    animation: floatWA 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.7); }
@keyframes floatWA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ══ VIDEO SECTION ══ */
.video-section {
    padding: 10rem 5%;
    background: var(--bg2);
    text-align: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
}
.video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(0,240,255,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.video-label {
    display: inline-block;
    background: rgba(0,240,255,0.08); border: 1px solid rgba(0,240,255,0.2);
    color: var(--accent); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 0.4rem 1.2rem; border-radius: 30px;
    margin-bottom: 1.5rem;
}
.video-section h2 { margin-bottom: 1rem; }
.video-section > p { color: var(--muted); font-size: 1rem; max-width: 500px; margin: 0 auto 3rem; }

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.video-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(0,240,255,0.4), rgba(0,119,255,0.2), rgba(0,240,255,0.4));
    border-radius: 26px;
    z-index: 0;
    animation: glowBorder 4s ease-in-out infinite alternate;
}
@keyframes glowBorder {
    from { opacity: 0.4; }
    to   { opacity: 1; box-shadow: 0 0 60px rgba(0,240,255,0.3); }
}
.video-frame {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 24px;
    overflow: hidden;
    z-index: 1;
    background: #000;
    box-shadow: 0 40px 80px rgba(0,0,0,0.7);
}
.video-frame iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* ══ CURTAIN DE ENTRADA ══ */
#page-curtain {
    position: fixed; inset: 0; z-index: 9999;
    background: #000;
    transform-origin: top center;
}

/* ══ BARRA DE PROGRESSO ══ */
#scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent));
    background-size: 200% 100%;
    z-index: 2000; width: 0%;
    transition: width 0.1s linear;
    animation: shiftGradient 3s linear infinite;
    box-shadow: 0 0 10px rgba(0,240,255,0.7);
}
@keyframes shiftGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* ══ CURSOR CUSTOMIZADO ══ */
#custom-cursor {
    position: fixed; pointer-events: none; z-index: 9998;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(0,240,255,0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    mix-blend-mode: difference;
}
#custom-cursor.hovering {
    width: 56px; height: 56px;
    background: rgba(0,240,255,0.08);
    border-color: rgba(0,240,255,0.9);
}
#custom-cursor-dot {
    position: fixed; pointer-events: none; z-index: 9999;
    width: 5px; height: 5px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px rgba(0,240,255,0.8);
}
@media (hover: none) {
    #custom-cursor, #custom-cursor-dot { display: none; }
}

/* ══ SOUND BUTTON ══ */
.btn-sound-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.btn-sound-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* ══ CONTACT SECTION CUSTOM STYLES (FROM SCREENSHOT) ══ */
.contact-icon-top {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.accent-yellow {
    color: #ffd700;
}
.contact-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}
.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    min-width: 200px;
    flex: 1;
    max-width: 250px;
    transition: all 0.3s ease;
}
.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}
.contact-card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.contact-card-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: white;
}
.contact-card-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}
.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #00e676; /* Bright WhatsApp Green */
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.4);
    transition: all 0.3s ease;
}
.btn-whatsapp-large:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 230, 118, 0.6);
    background: #00c853;
}

/* ══ SCROLL ANIMATIONS ══ */
@keyframes floatY {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
.floating-element { animation: floatY 6s ease-in-out infinite; }

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
    .sobre-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .modal { grid-template-columns: 1fr; }
    .modal-img { height: 220px; }
    .premium-nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
}

@media (max-width: 768px) {
    /* Ajustes Gerais */
    h1 { font-size: clamp(2.5rem, 10vw, 4rem); letter-spacing: -1.5px; }
    h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    
    /* Hero Section */
    .hero-content {
        top: auto;
        bottom: 25%; /* Sobe bem mais para aparecer de primeira */
        left: 5%; right: 5%;
        transform: none;
        text-align: center;
    }
    .hero-content p { margin: 1rem auto 1.5rem; font-size: 1.15rem; } /* Increase description size */
    .hero-stats { justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; }
    .hero-stat .stat-num { font-size: 1.8rem; }
    
    .animated-fish {
        width: 100% !important; /* Reduz a logo para não ocupar toda a tela */
        max-width: 400px !important;
        margin-top: -55% !important; /* Puxa ela bem para o topo */
    }

    /* Espaçamentos e Seções */
    .catalog-section, .sobre-section, .contact-section, .video-section, .details-section {
        padding: 5rem 5%;
    }

    /* Filtros e Busca */
    .filter-tabs { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 10px; scrollbar-width: none; }
    .filter-tabs::-webkit-scrollbar { display: none; }
    .filter-tab { white-space: nowrap; font-size: 0.8rem; padding: 0.5rem 1rem; }
    
    /* Grade de Peixes */
    .catalog-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    
    /* Modal */
    .modal { margin: 1rem; max-height: 85vh; }
    .modal-body { padding: 1.5rem; }
    .modal-actions { flex-direction: column; gap: 1rem; }
    .btn-add-cart-modal { width: 100%; text-align: center; }

    /* Seção de Contato - Empilhar cartões */
    .contact-glass { padding: 2rem 1.5rem; }
    .contact-features { flex-direction: column; gap: 1rem; margin: 2rem 0; }
    .contact-card { min-width: 100%; max-width: 100%; padding: 1.2rem; }
    .btn-whatsapp-large { width: 100%; font-size: 1rem; padding: 1rem; }

    /* Menu Superior */
    .premium-nav { padding: 0.8rem 1rem; }
    .nav-logo-img { width: 36px; height: 36px; }
    .logo-title { font-size: 0.9rem; }
}

@media (max-width: 400px) {
    .hero-stats { gap: 1rem; }
    .hero-stat .stat-num { font-size: 1.5rem; }
}

.animated-fish {
    width: 55%;
    max-width: 900px;
    height: auto;
    object-fit: contain;
    image-rendering: high-quality;
    animation: cinematicFloat 12s ease-in-out infinite, gentleBreathe 8s ease-in-out infinite alternate;
    transform-origin: center center;
    filter: drop-shadow(0 0 30px rgba(13, 92, 85, 0.4)) contrast(1.1) brightness(1.1);
}

@keyframes cinematicFloat {
    0% { transform: translateY(0) scale(1) rotate(0deg); }
    25% { transform: translateY(-15px) scale(1.02) rotate(1deg); }
    50% { transform: translateY(0) scale(1.05) rotate(0deg); }
    75% { transform: translateY(15px) scale(1.02) rotate(-1deg); }
    100% { transform: translateY(0) scale(1) rotate(0deg); }
}

@keyframes gentleBreathe {
    0% { filter: drop-shadow(0 0 30px rgba(13, 92, 85, 0.4)) contrast(1.1) brightness(1.1) hue-rotate(0deg); }
    100% { filter: drop-shadow(0 0 60px rgba(201, 162, 39, 0.5)) contrast(1.2) brightness(1.2) hue-rotate(15deg); }
}
