/*!*******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/components/footer.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************/
.site-footer {
    background: linear-gradient(180deg, #0d2238, #09192b);
    color: #ffffff;
    padding: 48px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* GRID PRINCIPAL */

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-gap: 36px;
    gap: 36px;
}

/* BRAND */

.footer-brand img {
    max-width: 130px;
}

.footer-brand p {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.6;
    color: #94a3b8;
}

/* TITULOS */

.footer-col h4 {
    font-size: 12px;
    margin-bottom: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #cbd5f5;
}

/* NAV */

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-gap: 8px 22px;
    gap: 8px 22px;
}

    .footer-nav a {
        font-size: 13px;
        color: #94a3b8;
        transition: 0.2s ease;
    }

        .footer-nav a:hover {
            color: #38bdf8;
            transform: translateX(2px);
        }

/* CONTATO */

.footer-contact {
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #e2e8f0;
}

/* SOCIAL */

.footer-social-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-social-icons a {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #94a3b8;
        transition: 0.2s ease;
    }

        .footer-social-icons a:hover {
            color: #38bdf8;
        }

/* ÍCONES */

.footer-icon {
    width: 18px;
    height: 18px;
    opacity: 0.85;
}

/* BASE (rodapé final) */

.footer-bottom {
    max-width: 1080px;
    margin: 36px auto 0;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #64748b;
}

/* esquerda */

.footer-copy {
    opacity: 0.8;
}

/* direita */

.footer-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* RESPONSIVO */

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.footer-legal-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal-nav a {
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
}

.footer-legal-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}
/*!*********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************/
:root {
    --bg: #0a0a0b;
    --bg-soft: #111214;
    --card: #15171a;
    --card-2: #1b1e22;
    --border: rgba(255, 255, 255, 0.08);
    --text: #f5f7fa;
    --muted: #a7b0ba;
    --primary: #d8ff3e;
    --primary-dark: #0b0d08;
    --success: #98ff6b;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 50;
    -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
    background: rgba(10, 10, 11, 0.78);
    border-bottom: 1px solid var(--border);
}

.site-header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

    .site-nav a {
        color: var(--muted);
        font-size: 0.95rem;
        transition: 0.2s ease;
    }

        .site-nav a:hover {
            color: var(--text);
        }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-outline {
    border-color: var(--border);
    color: var(--text);
    background: transparent;
}

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.04);
    }

.btn-primary {
    background: var(--primary);
    color: var(--primary-dark);
    box-shadow: 0 12px 30px rgba(216, 255, 62, 0.18);
}

    .btn-primary:hover {
        filter: brightness(1.02);
        transform: translateY(-1px);
    }

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(216, 255, 62, 0.1);
    border: 1px solid rgba(216, 255, 62, 0.18);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
}

    .feature-card h3 {
        margin: 0 0 10px;
        font-size: 1.2rem;
    }

    .feature-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
    }

.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 999;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.2s ease;
}

    .whatsapp-float:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
    }

.whatsapp-icon {
    width: 28px;
    height: 28px;
}


.settings-form {
    max-width: 560px;
    display: grid;
    grid-gap: 18px;
    gap: 18px;
    padding: 26px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.14);
    color: #fff;
}

.settings-form-header h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.settings-form-header p {
    margin: 0;
    color: #cbd5e1;
}

.settings-form label {
    display: grid;
    grid-gap: 8px;
    gap: 8px;
    color: #cbd5e1;
    font-weight: 700;
    font-size: 14px;
}

.settings-form input {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(2, 6, 23, 0.75);
    color: #fff;
    border-radius: 14px;
    padding: 13px 14px;
    outline: none;
}

.settings-form button {
    border: 0;
    border-radius: 999px;
    padding: 13px 20px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

    .settings-form button:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

.settings-success {
    color: #bbf7d0;
}

.settings-error {
    color: #fecaca;
}

.settings-form.danger {
    margin-top: 18px;
    border: 1px solid rgba(248, 113, 113, 0.28);
    background: rgba(127, 29, 29, 0.16);
}

.account-delete-button {
    background: rgba(220, 38, 38, 0.95) !important;
    color: #ffffff !important;
}

.account-delete-button:hover:not(:disabled) {
    filter: brightness(1.08);
}

@media (max-width: 980px) {
    .site-nav {
        display: none;
    }
}

/*!*********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/webview.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************/
/* WODGYM - MODO WEBVIEW */

html.webview,
body.webview {
    width: 100%;
    max-width: 100%;
    min-height: var(--wodgym-webview-height, 100vh);
    overflow-x: hidden;
    overscroll-behavior: none;
    touch-action: pan-y;
    text-size-adjust: 100%;
}

    body.webview * {
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }

    body.webview input,
    body.webview textarea,
    body.webview select {
        font-size: 16px !important;
    }

    body.webview button,
    body.webview a {
        touch-action: manipulation;
    }

    body.webview img,
    body.webview video,
    body.webview canvas,
    body.webview svg {
        max-width: 100%;
    }

body.webview .auth-page,
body.webview .cadastro-page,
body.webview .operador-shell,
body.webview .aluno-shell,
body.webview .operador-main,
body.webview .aluno-main,
body.webview .student-page,
body.webview .student-workouts-page,
body.webview .operator-settings-page,
body.webview .operator-financial-page {
    min-height: var(--wodgym-webview-height, 100vh);
}

