@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --color-ink: #0f1115;
    --color-ink-2: #161a20;
    --color-cream: #f9f4ea;
    --color-sand: #f1e3cd;
    --color-gold: #d4a258;
    --color-gold-strong: #b9782e;
    --shadow-soft: 0 12px 32px rgba(15, 17, 21, 0.18);
    --shadow-hard: 0 24px 60px rgba(15, 17, 21, 0.32);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-ink);
    background-color: var(--color-cream);
    background-image:
        radial-gradient(circle at 20% 10%, rgba(212, 162, 88, 0.18), transparent 45%),
        radial-gradient(circle at 80% 0%, rgba(15, 17, 21, 0.12), transparent 40%),
        linear-gradient(180deg, #fbf6eb 0%, #f1e3cd 100%);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

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

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: inherit;
    border: none;
    background: none;
}

.whatsapp {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 28px;
    right: 28px;
    background: linear-gradient(135deg, #2dd36f, #1ea35a);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 14px 30px rgba(30, 163, 90, 0.35);
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(30, 163, 90, 0.45);
}

.my-whatsapp {
    font-size: 28px;
}

.max-width {
    max-width: 1200px;
    padding: 0 32px;
    margin: 0 auto;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    padding: 22px 0;
    color: var(--color-ink);
    background: linear-gradient(90deg, rgba(249, 244, 234, 0.98) 0%, rgba(241, 227, 205, 0.9) 100%);
    border-bottom: 1px solid rgba(15, 17, 21, 0.08);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.sticky {
    background: rgba(249, 244, 234, 0.98);
    padding: 14px 0;
    box-shadow: var(--shadow-soft);
}

.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-texto {
    height: 44px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-imagem {
    height: 42px;
    width: auto;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar.sticky .logo-texto,
.navbar.sticky .logo-imagem {
    transform: scale(0.94);
    opacity: 0.85;
}

.nav-emblems {
    display: flex;
    gap: 14px;
    align-items: center;
}

.menu {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}

.menu li {
    list-style: none;
}

.menu li a {
    color: var(--color-ink);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--color-gold-strong);
    opacity: 0;
    transform: scaleX(0.6);
    transform-origin: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu li a:hover {
    color: var(--color-gold-strong);
}

.menu li a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.menu-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(15, 17, 21, 0.12);
    background: rgba(15, 17, 21, 0.05);
    color: var(--color-ink);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.menu-btn ion-icon {
    font-size: 24px;
}

.menu-btn.active {
    background: var(--color-gold);
    color: #1a1308;
    border-color: transparent;
}

.home {
    display: flex;
    min-height: 100vh;
    color: #f8f2e7;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
    position: relative;
    overflow: hidden;
}

.home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 17, 21, 0.9) 0%, rgba(15, 17, 21, 0.4) 50%, rgba(15, 17, 21, 0.95) 100%);
}

.home::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 162, 88, 0.35), transparent 50%),
        radial-gradient(circle at 80% 0%, rgba(212, 162, 88, 0.2), transparent 45%);
    opacity: 0.6;
}

.home .max-width {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: center;
}

.home-content .kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: rgba(248, 242, 231, 0.7);
    margin-bottom: 18px;
}

.home-content .text-1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 2rem + 2vw, 3.6rem);
    letter-spacing: 0.08em;
}

.home-content .text-2 {
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 3rem + 3vw, 5.6rem);
    letter-spacing: 0.06em;
}

.home-content .text-3 {
    font-size: clamp(1.2rem, 1rem + 0.8vw, 1.6rem);
    margin-top: 12px;
    color: rgba(248, 242, 231, 0.85);
}

.home-content .text-3 span {
    color: var(--color-gold);
    font-weight: 600;
}

.hero-subtitle {
    margin-top: 18px;
    font-size: 1.05rem;
    color: rgba(248, 242, 231, 0.82);
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
    background: var(--color-gold);
    color: #1b140a;
    border: 1px solid transparent;
    box-shadow: 0 12px 30px rgba(212, 162, 88, 0.35);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(212, 162, 88, 0.45);
}

.btn.ghost {
    background: transparent;
    border: 1px solid rgba(248, 242, 231, 0.5);
    color: #f8f2e7;
}

.btn.ghost:hover {
    transform: translateY(-2px);
    background: rgba(248, 242, 231, 0.08);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-badges span {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    background: rgba(15, 17, 21, 0.55);
    border: 1px solid rgba(248, 242, 231, 0.2);
}

.hero-panel {
    background: rgba(15, 17, 21, 0.6);
    border: 1px solid rgba(248, 242, 231, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-hard);
    backdrop-filter: blur(12px);
    animation: float 6s ease-in-out infinite;
}

.panel-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(248, 242, 231, 0.6);
    margin-bottom: 12px;
}

.hero-panel h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.hero-panel p {
    color: rgba(248, 242, 231, 0.8);
}

.hero-panel .panel-subline {
    display: block;
    margin-top: 6px;
    color: rgba(248, 242, 231, 0.7);
}

.panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.panel-tags span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(212, 162, 88, 0.12);
    border: 1px solid rgba(212, 162, 88, 0.5);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

section {
    padding: 120px 0;
    position: relative;
    scroll-margin-top: 120px;
}

section .title {
    font-family: var(--font-display);
    text-align: center;
    font-size: clamp(2.4rem, 2rem + 2.3vw, 3.8rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 70px;
    position: relative;
}

section .title::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

section .title::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-gold-strong);
}

.about .title::after {
    content: 'Dojo';
}

.about {
    background: var(--color-cream);
}

.about .about-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.about .left img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.about .right .text {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.about .right p {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(15, 17, 21, 0.7);
}

.about .right .btn {
    margin-top: 24px;
}

.services {
    background: linear-gradient(160deg, #0f1115 0%, #1b2029 100%);
    color: #f5eee1;
}

.services .title {
    color: #f5eee1;
}

.services .title::before {
    background: linear-gradient(90deg, transparent, rgba(212, 162, 88, 0.8), transparent);
}

.services .title::after {
    content: 'That we offer';
    color: rgba(212, 162, 88, 0.9);
}

.services .serv-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.services .card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.services .card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 162, 88, 0.6);
    box-shadow: 0 18px 40px rgba(15, 17, 21, 0.4);
}

.services .card ion-icon {
    font-size: 52px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.services .card .text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.skills {
    background: linear-gradient(180deg, #fbf6eb 0%, #f1e3cd 100%);
}

.skills .title::after {
    content: 'Brazilian Jiu-Jitsu';
}

.skills .skills-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}

.skills .column.right img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.skills .column .text {
    font-family: var(--font-display);
    font-size: 1.9rem;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.skills .column.full {
    grid-column: 1 / -1;
}

.bushido {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid rgba(15, 17, 21, 0.08);
    box-shadow: var(--shadow-soft);
}

.bushido-line {
    margin-top: 8px;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold-strong);
}

.teams {
    background: linear-gradient(160deg, #141820 0%, #0f1115 100%);
    color: #f5eee1;
}

.teams .title {
    color: #f5eee1;
}

.teams .title::after {
    content: 'Overview';
    color: rgba(212, 162, 88, 0.9);
}

.teams .teams-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
}

.teams .teams-imagem,
.imagem-equipe-right {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.teams .teams-text {
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.teams .teams-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    margin: 24px 0 12px;
}

.teams .teams-content span {
    color: var(--color-gold);
    font-weight: 600;
}

.link {
    color: var(--color-gold);
    font-weight: 600;
}

.teams-mission {
    text-align: center;
    margin-top: 40px;
}

.teams-mission h3 {
    font-family: var(--font-display);
    letter-spacing: 0.12em;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.cta-band {
    background: linear-gradient(120deg, #d4a258 0%, #b9782e 100%);
    color: #1b140a;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 65%);
}

.cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 1.6rem + 2vw, 3rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cta-band p {
    font-size: 1.05rem;
    max-width: 520px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-band .btn.primary {
    background: #1b140a;
    color: #f1e3cd;
    box-shadow: 0 16px 36px rgba(27, 20, 10, 0.3);
}

.cta-band .btn.primary:hover {
    box-shadow: 0 18px 40px rgba(27, 20, 10, 0.4);
}

.cta-band .btn.ghost {
    border-color: rgba(27, 20, 10, 0.6);
    color: #1b140a;
}

.quick-access {
    background: linear-gradient(180deg, #fff8ee 0%, #f3e8d3 100%);
}

.quick-access .title::after {
    content: 'Scan';
}

.quick-access-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: center;
}

.quick-access-copy h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.quick-access-copy p {
    max-width: 520px;
    color: rgba(15, 17, 21, 0.75);
}

.quick-access-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.quick-access-list span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(212, 162, 88, 0.16);
    border: 1px solid rgba(212, 162, 88, 0.45);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.quick-access-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 17, 21, 0.08);
}

.quick-access-card img {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 16px;
    border-radius: 16px;
    padding: 12px;
    background: #f9f4ea;
    border: 1px solid rgba(15, 17, 21, 0.08);
}

.quick-access-card p {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(15, 17, 21, 0.6);
}

.social {
    background: linear-gradient(140deg, #151922 0%, #10131a 100%);
    color: #f5eee1;
    text-align: center;
}

.social .title {
    color: #f5eee1;
}

.social .title::after {
    content: 'Instagram';
    color: rgba(212, 162, 88, 0.9);
}

.social-content a {
    color: var(--color-gold);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.social-content ion-icon {
    font-size: 26px;
}

.instagram-feed {
    margin-top: 30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.instagram-feed iframe {
    width: 100%;
    height: 420px;
}

.contact {
    background: var(--color-cream);
}

.contact .title::after {
    content: '';
}

.contact .contact-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.contact .text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.contact .icons {
    margin-top: 24px;
}

.contact .row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.contact .row ion-icon {
    font-size: 24px;
    color: var(--color-gold-strong);
}

.contact .row .info .head {
    font-weight: 600;
    margin-bottom: 4px;
}

.contact .row .info .sub-title {
    color: rgba(15, 17, 21, 0.65);
}

.contact form .fields {
    display: flex;
    gap: 16px;
}

.contact form .field,
.contact form .fields .field {
    width: 100%;
    margin-bottom: 16px;
}

.contact form input,
.contact form textarea {
    width: 100%;
    border: 1px solid rgba(15, 17, 21, 0.15);
    border-radius: 14px;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: #fff;
}

.contact form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact form .button button {
    width: 100%;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--color-gold);
    color: #1b140a;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 30px rgba(212, 162, 88, 0.35);
}

.contact form .button button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(212, 162, 88, 0.45);
}

footer {
    background: #0f1115;
    color: #d4c2a1;
    text-align: center;
    padding: 24px 16px;
}

footer a {
    color: var(--color-gold);
}

#preloader {
    position: fixed;
    background: radial-gradient(circle at top, rgba(212, 162, 88, 0.15), rgba(15, 17, 21, 1));
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-container {
    text-align: center;
}

.spinner {
    width: 52px;
    height: 52px;
    border: 2px solid rgba(212, 162, 88, 0.3);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

.glow-loading {
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    animation: glow 2s infinite ease-in-out;
}

.glow-logo {
    width: 320px;
    height: auto;
    animation: glow 2s infinite ease-in-out;
    margin-bottom: 20px;
}

#loading-text {
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 5px rgba(212, 162, 88, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(212, 162, 88, 0.9));
    }
    100% {
        filter: drop-shadow(0 0 5px rgba(212, 162, 88, 0.6));
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 520px;
    }

    .nav-emblems {
        display: none;
    }
}

@media (max-width: 900px) {
    .menu-btn {
        display: inline-flex;
    }

    .menu {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 26px;
        background: rgba(249, 244, 234, 0.98);
        backdrop-filter: blur(14px);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .menu.active {
        transform: translateX(0);
    }

    .menu li a {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 90px 0;
    }

    .max-width {
        padding: 0 24px;
    }

    .about .about-content,
    .skills .skills-content,
    .teams .teams-content,
    .contact .contact-content {
        grid-template-columns: 1fr;
    }

    .services .serv-content {
        grid-template-columns: 1fr;
    }

    .contact form .fields {
        flex-direction: column;
    }

    .hero-badges {
        justify-content: flex-start;
    }

    .cta-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-access-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .home-content .text-2 {
        font-size: clamp(2.8rem, 2.4rem + 4vw, 4rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-panel {
        padding: 24px;
    }

    .glow-logo {
        width: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation: none !important;
        transition: none !important;
    }
}
