/* ============================================
   VECTIS MARTIAL ACADEMY - Stylesheet Final
   ============================================ */

/* ===== VARIÁVEIS ===== */
:root {
    --color-gunmetal: #2F2F2F;
    --color-gunmetal-deep: #1f1f1f;
    --color-steel: #555555;
    --color-steel-light: #7a7a7a;
    --color-stone: #E6E1D9;
    --color-stone-light: #f0ece4;
    --color-stone-dark: #d4cec3;
    --color-bronze: #8C6A3E;
    --color-white: #ffffff;
    --color-text: #2F2F2F;
    --color-text-light: #6b6b6b;
    --color-border: rgba(47, 47, 47, 0.12);

    --font-display: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.65;
    background: var(--color-stone);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.1;
    color: var(--color-gunmetal);
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: all var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--color-gunmetal);
    color: var(--color-white);
    border-color: var(--color-gunmetal);
}

.btn--primary:hover {
    background: var(--color-steel);
    border-color: var(--color-steel);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background: transparent;
    color: var(--color-gunmetal);
    border-color: var(--color-gunmetal);
}

.btn--secondary:hover {
    background: var(--color-gunmetal);
    color: var(--color-white);
}

.btn--large {
    padding: 20px 48px;
    font-size: 0.95rem;
}

.btn--block {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(230, 225, 217, 0.92);
    backdrop-filter: blur(12px);
    transition: all var(--transition);
    border-bottom: 1px solid var(--color-border);
}

.header.scrolled {
    background: rgba(230, 225, 217, 0.98);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 30px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-gunmetal);
}

.nav__logo-mark {
    width: 32px;
    height: 32px;
    color: var(--color-gunmetal);
}

.nav__logo-mark svg {
    width: 100%;
    height: 100%;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--color-gunmetal);
}

.nav__menu {
    display: flex;
    gap: 38px;
    margin-left: auto;
    margin-right: 30px;
}

.nav__link {
    color: var(--color-gunmetal);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: color var(--transition);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gunmetal);
    transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--color-gunmetal);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all var(--transition);
}

.nav__cta:hover {
    background: var(--color-steel);
    transform: translateY(-2px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav__toggle span {
    width: 28px;
    height: 2px;
    background: var(--color-gunmetal);
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-gunmetal);
    color: var(--color-white);
    overflow: hidden;
    padding-top: 80px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-gunmetal-deep) 0%, var(--color-gunmetal) 100%);
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.6;
}

/* Padrão sutil de triângulos (V) no fundo */
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cpath d='M100 160 L130 110 L70 110 Z' fill='none' stroke='rgba(255,255,255,0.025)' stroke-width='1'/%3E%3Cpath d='M40 40 L70 90 L100 40 Z' fill='none' stroke='rgba(255,255,255,0.025)' stroke-width='1'/%3E%3Cpath d='M160 40 L130 90 L100 40 Z' fill='none' stroke='rgba(255,255,255,0.025)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

.hero__grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.hero__lines {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 8%;
    pointer-events: none;
}

.hero__line {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
}

.hero__container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    animation: fadeInUp 1s ease;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    font-weight: 400;
}

.hero__badge-line {
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 12vw, 9.5rem);
    font-weight: 700;
    letter-spacing: clamp(8px, 2vw, 18px);
    line-height: 0.95;
    margin-bottom: 24px;
    color: var(--color-white);
    text-transform: uppercase;
}

.hero__subtitle-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
}

.hero__subtitle-line {
    flex: 0 0 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.hero__subtitle {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.hero__tagline {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 28px;
}

.hero__description {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 44px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero .btn--secondary {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn--secondary:hover {
    background: var(--color-white);
    color: var(--color-gunmetal);
    border-color: var(--color-white);
}

.hero__stats {
    display: flex;
    gap: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero__stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    font-weight: 500;
}

/* ===== EMBLEMA ANIMADO COM A LOGO REAL (formato V) ===== */
.hero__emblem {
    display: flex;
    justify-content: center;
    align-items: center;
}

.emblem {
    position: relative;
    width: 460px;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.4s ease-out;
}

.emblem__ring {
    position: absolute;
    border-radius: 50%;
}

.emblem__ring--outer {
    inset: 0;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    animation: rotate 40s linear infinite;
}

.emblem__ring--middle {
    inset: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: rotate 60s linear infinite reverse;
}

.emblem__logo {
    width: 70%;
    height: 70%;
    position: relative;
    z-index: 2;
    filter:
        drop-shadow(0 12px 30px rgba(0, 0, 0, 0.6)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.emblem__logo svg {
    width: 100%;
    height: 100%;
}

.emblem__triangle {
    transform-origin: center;
    animation: triangleGlow 4s ease-in-out infinite;
}

.emblem__triangle--bottom {
    animation-delay: 0s;
}

.emblem__triangle--left {
    animation-delay: 0.6s;
}

.emblem__triangle--right {
    animation-delay: 1.2s;
}

.emblem__corner {
    position: absolute;
    width: 36px;
    height: 36px;
    border-color: rgba(255, 255, 255, 0.4);
    transition: all var(--transition);
}

.emblem__corner--tl {
    top: 0;
    left: 0;
    border-top: 2px solid;
    border-left: 2px solid;
}

.emblem__corner--tr {
    top: 0;
    right: 0;
    border-top: 2px solid;
    border-right: 2px solid;
}

.emblem__corner--bl {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid;
    border-left: 2px solid;
}

.emblem__corner--br {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

.emblem:hover .emblem__corner {
    border-color: rgba(255, 255, 255, 0.7);
    width: 44px;
    height: 44px;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 1;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
    animation: scrollLine 2s ease-in-out infinite;
}

/* ===== MANIFESTO ===== */
.manifesto {
    padding: 120px 0;
    background: var(--color-stone);
    position: relative;
}

.manifesto__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.manifesto__label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-steel);
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.manifesto__text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-gunmetal);
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.manifesto__text em {
    font-style: italic;
    color: var(--color-steel);
}

.manifesto__text strong {
    font-weight: 700;
    color: var(--color-gunmetal);
}

.manifesto__divider {
    width: 60px;
    height: 2px;
    background: var(--color-gunmetal);
    margin: 0 auto;
}

/* ===== PILARES ===== */
.pillars {
    padding: 100px 0;
    background: var(--color-stone-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.pillars__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.pillar {
    padding: 50px 36px;
    text-align: left;
    border-right: 1px solid var(--color-border);
    transition: background var(--transition);
    position: relative;
}

.pillar:last-child {
    border-right: none;
}

.pillar:hover {
    background: var(--color-white);
}

.pillar__num {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--color-steel);
    margin-bottom: 32px;
    font-weight: 500;
}

.pillar__icon {
    width: 56px;
    height: 56px;
    color: var(--color-gunmetal);
    margin-bottom: 28px;
}

.pillar__icon svg {
    width: 100%;
    height: 100%;
}

.pillar__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pillar__text {
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===== SECTION HEADER ===== */
.section__header {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
}

.section__tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-steel);
    margin-bottom: 20px;
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border);
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 600;
    color: var(--color-gunmetal);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section__divider {
    width: 50px;
    height: 2px;
    background: var(--color-gunmetal);
    margin: 0 auto 28px;
}

.section__description {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.section__header--light .section__title {
    color: var(--color-white);
}

.section__header--light .section__tag {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

.section__header--light .section__divider {
    background: var(--color-white);
}

.section__header--light .section__description {
    color: rgba(255, 255, 255, 0.65);
}

/* ===== SOBRE ===== */
.about {
    padding: 130px 0;
    background: var(--color-stone);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--color-border);
}

.about__card {
    padding: 64px 56px;
    background: var(--color-white);
    transition: transform var(--transition);
    position: relative;
}

.about__card:first-child {
    border-right: 1px solid var(--color-border);
}

.about__card--dark {
    background: var(--color-gunmetal);
    color: var(--color-white);
}

.about__num {
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-steel);
    margin-bottom: 36px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
    font-weight: 500;
}

.about__card--dark .about__num {
    color: rgba(255, 255, 255, 0.5);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.about__title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--color-gunmetal);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.about__card--dark .about__title {
    color: var(--color-white);
}

.about__text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-text);
}

.about__card--dark .about__text {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== PRINCÍPIOS ===== */
.values {
    padding: 130px 0;
    background: var(--color-gunmetal);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-card {
    padding: 40px 32px;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
    position: relative;
}

.value-card:nth-child(4n) {
    border-right: none;
}

.value-card:nth-last-child(-n+4) {
    border-bottom: none;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-white);
    transition: width 0.5s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.03);
}

.value-card:hover::before {
    width: 100%;
}

.value-card__head {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-card__num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
}

.value-card__title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.value-card__text {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
}

/* ===== TATAMES ===== */
.mats {
    padding: 130px 0;
    background: var(--color-stone-light);
}

.mats__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.mat-card {
    padding: 56px 44px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    position: relative;
    transition: all var(--transition);
}

.mat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gunmetal);
}

.mat-card--elite {
    background: var(--color-gunmetal);
    color: var(--color-white);
    border-color: var(--color-gunmetal);
}

.mat-card--elite:hover {
    border-color: var(--color-steel);
}

.mat-card__label {
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-steel);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
    font-weight: 500;
}

.mat-card--elite .mat-card__label {
    color: rgba(255, 255, 255, 0.6);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.mat-card__title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-gunmetal);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mat-card--elite .mat-card__title {
    color: var(--color-white);
}

.mat-card__subtitle {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-steel);
    margin-bottom: 36px;
    font-weight: 400;
}

.mat-card--elite .mat-card__subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.mat-card__list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
    color: var(--color-text);
}

.mat-card--elite .mat-card__list li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
}

.mat-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 1px;
    background: var(--color-gunmetal);
}

.mat-card--elite .mat-card__list li::before {
    background: var(--color-white);
}

.mat-card__list li:last-child {
    border-bottom: none;
}

/* ===== CTA ===== */
.cta {
    padding: 140px 0;
    background: var(--color-gunmetal-deep);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.cta__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta__label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
    line-height: 1.15;
}

.cta__text {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.cta .btn--primary {
    background: var(--color-white);
    color: var(--color-gunmetal);
    border-color: var(--color-white);
}

.cta .btn--primary:hover {
    background: var(--color-stone);
    border-color: var(--color-stone);
}

/* ===== CONTATO ===== */
.contact {
    padding: 130px 0;
    background: var(--color-stone);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px;
    background: var(--color-white);
    border-left: 2px solid var(--color-gunmetal);
    transition: transform var(--transition);
}

.contact__item:hover {
    transform: translateX(8px);
}

.contact__item-num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--color-steel);
    font-weight: 500;
    padding-top: 4px;
    min-width: 30px;
}

.contact__item h4 {
    font-size: 1rem;
    color: var(--color-gunmetal);
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.contact__item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact__form {
    background: var(--color-white);
    padding: 50px;
    border: 1px solid var(--color-border);
}

.contact__form-title {
    font-size: 1.4rem;
    margin-bottom: 36px;
    color: var(--color-gunmetal);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__group {
    margin-bottom: 24px;
}

.form__group label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gunmetal);
    margin-bottom: 12px;
    font-weight: 500;
}

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    background: var(--color-stone-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    transition: all var(--transition);
    border-radius: 2px;
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--color-gunmetal);
    background: var(--color-white);
}

.form__group textarea {
    resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-gunmetal-deep);
    color: var(--color-white);
    padding: 90px 0 30px;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--color-white);
}

.footer__logo svg {
    width: 40px;
    height: 40px;
}

.footer__logo-text {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 1;
}

.footer__logo-sub {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-top: 4px;
}

.footer__tagline {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.footer__col h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    margin-bottom: 24px;
    color: var(--color-white);
    letter-spacing: 3px;
    text-transform: uppercase;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.footer__col ul li {
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer__col a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer__col a:hover {
    color: var(--color-white);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--color-gunmetal);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover {
    background: var(--color-steel);
    transform: translateY(-4px);
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes triangleGlow {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.15);
    }
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.4);
        opacity: 0.3;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero__emblem {
        display: none;
    }

    .hero__subtitle-row {
        justify-content: center;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__badge {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .pillars__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillar:nth-child(2) {
        border-right: none;
    }

    .pillar:nth-child(1),
    .pillar:nth-child(2) {
        border-bottom: 1px solid var(--color-border);
    }

    .values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-card {
        border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .value-card:nth-child(2n) {
        border-right: none !important;
    }

    .value-card:nth-last-child(-n+2) {
        border-bottom: none !important;
    }

    .about__grid {
        grid-template-columns: 1fr;
    }

    .about__card:first-child {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }

    .mats__grid,
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .nav__menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: var(--color-stone);
        width: 100%;
        height: calc(100vh - 80px);
        padding: 40px;
        gap: 28px;
        transition: right var(--transition);
        margin: 0;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__cta {
        display: none;
    }

    .pillars__grid {
        grid-template-columns: 1fr;
    }

    .pillar {
        border-right: none !important;
        border-bottom: 1px solid var(--color-border);
    }

    .pillar:last-child {
        border-bottom: none;
    }

    .values__grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        border-right: none !important;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .about__card,
    .mat-card {
        padding: 40px 28px;
    }

    .contact__form {
        padding: 32px 24px;
    }

    .form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero__buttons .btn {
        width: 100%;
    }

    .hero__stats {
        gap: 20px;
    }

    .hero__stat {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }
}