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

html {
    scroll-behavior: smooth;
}

:root {
    --red: #e30613;
    --black: #050505;
    --white: #fff;
    --muted: #b8b8b8;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ===========================
   HEADER
=========================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 7%;
    background: rgba(0, 0, 0, .86);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-logo,
.sites-logo {
    width: 55px;
    height: auto;
    display: block;
}

.site-logo img,
.sites-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

nav {
    display: flex;
    gap: 34px;
}

nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 13px;
}

/* ===========================
   BOTÕES
=========================== */

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 17px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    transition: .3s;
}

.black {
    background: #000;
    color: #fff;
}

/* ===========================
   HERO PORTFÓLIO
=========================== */

.portfolio-hero {
    padding: 160px 7% 70px;
    background:
        radial-gradient(circle at 85% 25%, rgba(227, 6, 19, .35), transparent 32%),
        linear-gradient(120deg, #050505 0%, #080808 55%, #1d0002 100%);
}

.portfolio-hero span {
    color: var(--red);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.portfolio-hero h1 {
    margin-top: 16px;
    max-width: 900px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1;
    text-transform: uppercase;
    font-weight: 900;
}

.portfolio-hero p {
    margin-top: 20px;
    max-width: 650px;
    color: #d7d7d7;
    font-size: 20px;
    line-height: 1.5;
}

/* ===========================
   PORTFÓLIO
=========================== */

.portfolio-page {
    padding: 70px 7% 100px;
    background: #050505;
}

.portfolio-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.pf-filter {
    padding: 13px 22px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .04);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    transition: .3s;
}

.pf-filter.active,
.pf-filter:hover {
    background: var(--red);
    border-color: var(--red);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.portfolio-card {
    position: relative;
    height: 390px;
    border-radius: 26px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: #111;
    display: block;
    border: 1px solid rgba(255, 255, 255, .08);
}

.portfolio-card img {
    transition: .5s;
}

.portfolio-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .88),
        rgba(0, 0, 0, .2),
        transparent
    );
}

.portfolio-card div {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
}

.portfolio-card span {
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.portfolio-card h3 {
    margin-top: 8px;
    font-size: 26px;
    text-transform: uppercase;
}

.portfolio-card p {
    margin-top: 6px;
    color: #ddd;
    font-size: 15px;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-card.hide {
    display: none;
}

/* ===========================
   CTA
=========================== */

.cta {
    padding: 110px 7%;
    background: var(--red);
    text-align: center;
}

.cta span {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
}

.cta h2 {
    max-width: 900px;
    margin: 18px auto 34px;
    font-size: clamp(34px, 5vw, 44px);
    line-height: 1;
    text-transform: uppercase;
}

/* ===========================
   FOOTER
=========================== */

footer {
    padding: 38px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

footer p {
    color: var(--muted);
}

/* ===========================
   WHATSAPP
=========================== */

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
    z-index: 9999;
    transition: .3s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-float img {
    width: 38px;
    height: 38px;
}

/* ===========================
   GALERIA
=========================== */

.gallery-hero {
    padding: 150px 7% 50px;
    background: linear-gradient(120deg, #050505, #170002);
}

.gallery-hero a {
    color: #fff;
    text-decoration: none;
    font-weight: 900;
}

.gallery-hero h1 {
    margin-top: 25px;
    font-size: clamp(38px, 6vw, 70px);
    text-transform: uppercase;
    line-height: 1;
}

.gallery-hero p {
    margin-top: 18px;
    color: #ccc;
    font-size: 19px;
}

.event-gallery {
    padding: 60px 7% 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.event-photo {
    height: 360px;
    border-radius: 24px;
    overflow: hidden;
    background: #151515;
}

.event-photo.tall {
    height: 740px;
    grid-row: span 2;
}

/* ===========================
   VÍDEOS
=========================== */

.video-grid {
    padding: 60px 7% 100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.video-card {
    background: #111;
    border-radius: 24px;
    overflow: hidden;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.video-placeholder {
    height: 320px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1d0002, #050505);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
}

.video-card h3 {
    margin-top: 16px;
    text-transform: uppercase;
}

/* ===========================
   RESPONSIVO
=========================== */

@media (max-width: 900px) {

    .header {
        padding: 18px 6%;
    }

    .menu-btn {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        background: #000;
        padding: 24px 7%;
        flex-direction: column;
        gap: 22px;
    }

    nav.open {
        display: flex;
    }

    .portfolio-hero {
        padding: 125px 6% 55px;
    }

    .portfolio-page {
        padding: 55px 6% 75px;
    }

    .portfolio-hero h1 {
        font-size: 38px;
    }

    .portfolio-hero p {
        font-size: 17px;
    }

    .portfolio-grid,
    .event-gallery,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card {
        height: 330px;
        border-radius: 22px;
    }

    .event-photo {
        height: 330px;
        grid-row: auto;
    }
    .event-photo.tall {
        height: 660px;
        grid-row: auto;
    }

    .cta {
        padding: 80px 6%;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
        right: 18px;
        bottom: 18px;
    }

    .whatsapp-float img {
        width: 34px;
        height: 34px;
    }

    footer {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }
}
.event-videos{
    max-width:1300px;
    margin:70px auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(420px,1fr));
    gap:30px;
}

.video-card{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    transition:.35s;
}

.video-card:hover{
    transform:translateY(-8px);
}

.video-card iframe{
    width:100%;
    aspect-ratio:16/9;
    display:block;
}.shorts-gallery{
  max-width:1200px;
  margin:70px auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:28px;
}

.short-card{
  background:#000;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  transition:.3s;
}

.short-card:hover{
  transform:translateY(-8px);
}

.short-card iframe{
  width:100%;
  aspect-ratio:9/16;
  display:block;
}
.short-card2{
  background:#000;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  transition:.3s;
}

.short-card2:hover{
  transform:translateY(-8px);
}

.short-card2 iframe{
margin-left: 350px;
  width:45%;
  aspect-ratio:9/16;
  display:block;
}