/* Reset e configurações base */

/* Easter Egg - Logo Cabeça de Câmera */
.camera-easter-egg {
    position: fixed;
    width: 30px;
    height: 30px;
    background-image: url('assets/images/logo vertival preto.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Cursor personalizado com logo */
body {
    cursor: url('assets/images/logo vertival preto.svg'), auto;
}

/* Logo no fundo */
body::before {
    content: '';
    position: fixed;
    top: 20%;
    right: 5%;
    width: 60px;
    height: 60px;
    background-image: url('assets/images/logo vertival preto.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

/* Animação flutuante */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove underline de todos os links e botões */
a,
button {
    text-decoration: none;
}

a:hover,
button:hover {
    text-decoration: none;
}

body {
  font-family: "Inter", sans-serif;
    background: black;
    color: white;
    min-height: 100vh;
    letter-spacing: 0.025em;
    overflow-x: hidden;
    font-size: 16px;
}

/* Glass Effect */
.glass-effect {
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
}

/* Header Styles */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
}

.nav-link {
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    color: #d1d5db;
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-icon {
    transition: transform 0.3s ease;
}

/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding-top: 12rem;
    padding-left: 0;
    width: 100%;
}

/* Gradiente de transição no final do hero */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.6) 60%,
        rgba(0, 0, 0, 0.8) 80%,
        rgba(0, 0, 0, 1) 100%
    );
    z-index: 2;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    opacity: 0.3;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #000;
    transform: translateZ(0);
    will-change: transform;
}

/* Wrapper do vídeo desktop */
.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    display: block;
}

/* Gradiente de transição do vídeo desktop */
.hero-video-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.9) 20%,
        rgba(0, 0, 0, 0.7) 40%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.2) 80%,
        transparent 100%
    );
    z-index: 10;
    pointer-events: none;
}

/* Vídeo de fundo vertical para mobile */
.hero-video-mobile {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    opacity: 0.3;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #000;
    transform: translateZ(0);
    will-change: transform;
    display: block;
}

/* Wrapper do vídeo mobile */
.hero-video-mobile-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    display: block;
}

/* Gradiente de transição do vídeo mobile */
.hero-video-mobile-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 10%,
        rgba(0, 0, 0, 0.95) 20%,
        rgba(0, 0, 0, 0.9) 30%,
        rgba(0, 0, 0, 0.8) 40%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0.1) 80%,
        rgba(0, 0, 0, 0.05) 90%,
        transparent 100%
    );
    z-index: 10;
    pointer-events: none;
}

.video-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.video-loader p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.hero-overlay {
    position: absolute;
    inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.9) 100%
  );
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(24px);
    animation: pulse 2s ease-in-out infinite;
}

.particle-1 {
    top: 25%;
    left: 25%;
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.1);
}

.particle-2 {
    bottom: 33.333333%;
    right: 33.333333%;
    width: 10rem;
    height: 10rem;
    background: rgba(128, 128, 128, 0.1);
    animation-delay: 1s;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 90rem;
    margin: 0 auto;
    padding: 1rem 2rem 4rem 2rem;
    margin-top: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    align-self: flex-start;
}

.hero-main {
    max-width: 80rem;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    align-self: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 0.75rem 1.25rem;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: white;
    border-radius: 50%;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.025em;
}

.hero-title-section {
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1;
  font-family: "Satoshi", sans-serif;
    margin-bottom: 0.75rem;
}

.title-accent {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.3)
  );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: #d1d5db;
    font-weight: 300;
    line-height: 1.75;
    max-width: 42rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 10rem;
    padding-bottom: 4rem;
}

.hero-signature {
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}


.signature-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.signature-icon {
    width: 3rem;
    height: 3rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.signature-icon i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.signature-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.signature-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.signature-highlight {
    font-size: 1rem;
    color: white;
    font-weight: 600;
  font-family: "Satoshi", sans-serif;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.6)
  );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-whatsapp {
  background: #25d366;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.cta-whatsapp:hover {
  background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.cta-email {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s ease;
}

.cta-email:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: white;
    color: black;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #f3f4f6;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Link as Button Styles */
a.btn-primary {
    text-decoration: none;
    display: inline-block;
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Works Section Styles */
.works-section {
    margin-bottom: 125px;
    padding: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 20%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.8) 60%,
    rgba(0, 0, 0, 0.9) 80%,
    rgba(0, 0, 0, 1) 100%
  );
    margin-top: -8rem;
}

.works-container {
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Grid Styles */
.hero-grid {
    display: grid;
    z-index: 10;
    grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5rem;
    width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* Gradiente de fundo para mesclar com o vídeo */
.hero-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 25%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 75%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: -1;
    border-radius: 20px;
}

/* Container Styles */
.container-large {
  height: 22rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
  background: #0f0f0f;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


.container-small {
  height: 22rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
  background: #0f0f0f;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}



/* Responsive Container Adjustments */
@media (max-width: 768px) {
    .container-large:nth-child(4) {
        margin-top: 0;
    }
}

/* Container Hover Effects */
.container-large:hover,
.container-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.container-overlay {
    position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 0, 0, 0.3)
  );
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
}

.container-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.container-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  transition: transform 0.3s ease;
}

.container-large:hover .container-image,
.container-small:hover .container-image {
  transform: scale(1.02);
}

/* Video specific styles */
video.container-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    background: #000;
}

.image-gradient {
    position: absolute;
    inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6),
    transparent
  );
    z-index: 2;
    pointer-events: none;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
}

.container-large:hover .play-overlay,
.container-small:hover .play-overlay {
    opacity: 1;
}

.play-button {
  width: 5rem;
  height: 5rem;
  background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.play-button:hover {
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.play-button i {
  font-size: 1.75rem;
    color: white;
  margin-left: 3px;
}

.container-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    z-index: 4;
}

.container-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  font-family: "Satoshi", sans-serif;
}

.container-title-small {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
  font-family: "Satoshi", sans-serif;
}

.container-description {
    font-size: 0.875rem;
    color: #e5e7eb;
    margin-bottom: 1rem;
}

.container-description-small {
    font-size: 0.75rem;
    color: #d1d5db;
}

.container-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    color: #fbbf24;
}

.rating-text {
    font-size: 0.75rem;
    color: #d1d5db;
}

.container-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.875rem;
    z-index: 5;
}

.container-icon i {
    color: white;
    font-size: 1.25rem;
}

/* Botão Moderno do Header */
.btn-modern {
    position: relative;
    overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
}

.btn-modern::before {
  content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
    transition: left 0.6s ease;
}

.btn-modern::after {
  content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern:hover::after {
    opacity: 1;
}

.btn-modern:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.08)
  );
}

.btn-modern:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Animação de entrada do botão */
.btn-modern {
    animation: btnEntrance 0.8s ease-out;
}

@keyframes btnEntrance {
    0% {
        opacity: 0;
        transform: translateY(-15px) scale(0.8);
    }
    50% {
        transform: translateY(2px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Efeito de brilho no hover */
.btn-modern:hover {
    color: #ffffff;
}

.btn-modern:hover i {
    color: #ffffff;
    transform: translateX(4px);
    transition: transform 0.3s ease;
}

/* Efeito de pulso sutil */
.btn-modern {
    animation: btnEntrance 0.8s ease-out, subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%,
  100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    }
}

/* Animações */
@keyframes pulse {
  0%,
  100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

/* About Section Styles */
.about-section {
    border-radius: 44px 44px 0 0;
    padding: 8rem 0;
  background: #0a0a0a;
    position: relative;
    margin-top: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.about-container {
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Central */
.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-title {
    font-size: 3rem;
    font-weight: 300;
    color: white;
    margin-bottom: 0.75rem;
  font-family: "Satoshi", sans-serif;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Container Principal */
.about-content {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Container 1: Perfil */
.about-profile-card {
  background: #0f0f0f;
    border-radius: 16px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    position: relative;
    width: 350px;
    height: 580px;
    box-sizing: border-box;
    overflow: hidden;
}

.about-profile-card::before {
  content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.3),
    rgba(128, 128, 128, 0.2),
    rgba(0, 0, 0, 0.8)
  );
    border-radius: 16px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
    pointer-events: none;
}

.profile-image-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 1.5rem;
}

.about-profile-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: block;
    background: #111111;
}

.availability-status {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #11ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px rgb(0, 255, 17);
    position: relative;
}

.status-dot::before {
  content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: rgb(49, 238, 51);
    border-radius: 208.384%;
    opacity: 0;
    transform: translate(-50%, -50%);
    will-change: transform;
    transform-origin: 50% 50% 0px;
    animation: pulseFrame 2s infinite;
}

@keyframes pulseFrame {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(3);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(5);
    }
}

.status-text {
    font-size: 0.75rem;
    color: white;
    font-weight: 500;
}

.about-profile-name {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, #d1d5db, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
  font-family: "Satoshi", sans-serif;
}

.profile-role {
    font-size: 13px;
    color: #d1d5db;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Profile Separator Lines */
.profile-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
    border-radius: 1px;
}

/* Social Icons */
.profile-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Connect Button */
.connect-button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.connect-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Container 2: História e Experiência */
.about-story-card {
  background: #0f0f0f;
    border-radius: 16px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    position: relative;
    width: 420px;
    height: 480px;
    box-sizing: border-box;
}

.story-text {
    font-size: 15px;
    color: rgb(198, 198, 198);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}


/* Experience Section */
.experience-section {
    margin-top: 1.5rem;
}

.experience-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
  font-family: "Satoshi", sans-serif;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.experience-item {
    display: grid;
    grid-template-columns: 1fr 1fr 60px;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-item:last-child {
    border-bottom: none;
}

.exp-role {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.exp-company {
    font-size: 0.875rem;
    color: #d1d5db;
}

.exp-year {
    font-size: 0.875rem;
  color: #9ca3af;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }
    
    .about-profile-card {
        width: 100%;
        max-width: 350px;
        height: auto;
        min-height: 520px;
    }
    
    .about-story-card {
        width: 100%;
        max-width: 420px;
        height: auto;
        min-height: 480px;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-profile-name {
        font-size: 28px;
    }
    
    .profile-image-container {
        width: 180px;
        height: 180px;
    }
    
    .about-profile-image {
        height: 180px;
    }
    
    .experience-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: left;
    }
    
    .exp-year {
        text-align: left;
    }
    
    .about-profile-card,
    .about-story-card {
        padding: 1rem 1rem 1.5rem 1rem;
    }
}

/* Instagram Section */
.instagram-section {
    border-radius: 44px;
    padding: 8rem 0;
  background: #0a0a0a;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-margin-top: 50px;
}

.instagram-container {
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.instagram-header {
    text-align: center;
    max-width: 600px;
}

.instagram-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #111111;
    border-radius: 100px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 0 0 rgba(184, 180, 180, 0.14) inset;
}

.instagram-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.instagram-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Instagram Profile Card */
.instagram-profile-card {
    background: #111111;
    border-radius: 20px;
    padding: 2rem;
  box-shadow: 16px 24px 20px 8px rgba(0, 0, 0, 0.4),
    inset 0 2px rgba(184, 180, 180, 0.08);
    max-width: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.profile-bio {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    text-align: left;
}

.profile-bio br {
    display: block;
    margin: 0.25rem 0;
}

/* Mobile adjustments for Instagram bio */
@media (max-width: 768px) {
    .profile-bio {
        font-size: 0.8rem;
    line-height: 1.4;
        margin-bottom: 0.875rem;
    }
    
    .profile-bio br {
        margin: 0.2rem 0;
    }
}

@media (max-width: 480px) {
    .profile-bio {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .profile-bio br {
        margin: 0.15rem 0;
    }
}

.profile-stats {
    display: flex;
    gap: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.follow-button {
    flex-shrink: 0;
}

.btn-follow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  background: linear-gradient(180deg, #787878 -382%, #0a0a0a 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-follow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Instagram Grid */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 600px;
    width: 100%;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram-post:hover {
    transform: scale(1.05);
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.post-overlay i {
    font-size: 1.25rem;
}

/* Responsive Instagram */
@media (max-width: 768px) {
  .instagram-section {
    border-radius: 44px 44px 0 0;
  }

    .instagram-title {
        font-size: 2rem;
    }
    
    .instagram-profile-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-stats {
        justify-content: center;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Feedback Section */
.feedback-section {
    border-radius: 44px;
    padding: 8rem 0;
  background: #0a0a0a;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-margin-top: 50px;
}

.feedback-container {
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.feedback-header {
    text-align: center;
    max-width: 600px;
}

.feedback-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #111111;
    border-radius: 100px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 0 0 rgba(184, 180, 180, 0.14) inset;
}

.feedback-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.feedback-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Feedback Carousel */
.feedback-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
}

.feedback-carousel-container::before,
.feedback-carousel-container::after {
  content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.feedback-carousel-container::before {
    left: 0;
  background: linear-gradient(to right, #0a0a0a, transparent);
}

.feedback-carousel-container::after {
    right: 0;
  background: linear-gradient(to left, #0a0a0a, transparent);
}

.feedback-carousel {
    display: flex;
    gap: 2.5rem;
    animation: scrollRight 30s linear infinite;
    width: max-content;
}

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Feedback Card */
.feedback-card {
    position: relative;
  background: linear-gradient(121deg, #787878 -52%, #111111 19%, #0a0a0a 100%);
    border-radius: 16px;
    box-shadow: 0 2px 0 0 rgba(184, 180, 180, 0.08) inset;
    padding: 1.25rem;
    min-height: 200px;
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.feedback-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feedback-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.profile-company {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.feedback-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    opacity: 0.8;
}

.feedback-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    font-size: 1.125rem;
  color: #ffd700;
}

.feedback-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    flex: 1;
}

.stars-emoji {
    font-size: 1.2rem;
    color: #ffd700;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* Background Blur Effect */
.feedback-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: brightness(0.15) blur(40px);
    border-radius: 8px;
    opacity: 0.25;
    z-index: 1;
    overflow: hidden;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Responsive Feedback */
@media (max-width: 768px) {
    .feedback-title {
        font-size: 2rem;
    }
    
    .feedback-carousel-container::before,
    .feedback-carousel-container::after {
        width: 50px;
    }
    
    .feedback-card {
        width: 240px;
        padding: 1rem;
        min-height: 180px;
    }
    
    .feedback-carousel {
        gap: 2rem;
    }
    
    .profile-image {
        width: 40px;
        height: 40px;
    }
    
    .profile-name {
        font-size: 0.9rem;
    }
    
    .profile-company {
        font-size: 0.75rem;
    }
    
    .feedback-text {
        font-size: 0.75rem;
    }
}

/* Process Section Styles */
.process-section {
    border-radius: 44px;
    padding: 100px 40px;
  background: #0a0a0a;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-margin-top: 50px;
}

.process-container {
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Header da Seção Process */
.process-header {
    text-align: center;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-title {
    font-size: 3rem;
    font-weight: 300;
    color: white;
    margin-bottom: 0.75rem;
  font-family: "Satoshi", sans-serif;
    line-height: 1.2;
}

.process-description {
    font-size: 1.125rem;
    color: #d1d5db;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards do Processo */
.process-cards {
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 4rem auto;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
    padding: 0;
    position: relative;
    z-index: 1;
}

.process-card {
  background: #0f0f0f;
    border-radius: 16px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    height: 360px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.step-badge {
  background: #0a0a0a;
    border-radius: 50px;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 0px rgba(184, 180, 180, 0.14) inset;
}

.step-number {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.process-icon {
    margin-bottom: 1.5rem;
}

.process-icon i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.process-content {
    margin-bottom: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.process-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
  font-family: "Satoshi", sans-serif;
}

.process-card-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.process-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.process-step-badge {
  background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    display: inline-block;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.process-step-badge span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Card de Suporte */
.support-card {
    background: #111111;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
  box-shadow: 16px 24px 20px 8px rgba(0, 0, 0, 0.4),
    inset 0 2px rgba(184, 180, 180, 0.08);
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}



.support-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* Projects Section Styles */
.projects-section {
    border-radius: 44px;
    padding: 8rem 0;
    background: black;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.projects-container {
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.projects-header {
    text-align: center;
    margin-bottom: 4rem;
}

.projects-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 100px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.projects-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.projects-description {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Projects Categories */
.projects-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.category-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  font-family: "Satoshi", sans-serif;
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.category-btn.active {
    background: white;
    color: black;
    border-color: white;
}

/* Projects Media Grid */
.projects-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-items: start;
    align-items: start;
}

/* Organização visual para categoria "Todos" - DESKTOP apenas */
@media (min-width: 769px) {
    .projects-media-grid .media-item:nth-child(3n+1) {
        grid-column: 1;
    }

    .projects-media-grid .media-item:nth-child(3n+2) {
        grid-column: 2;
    }

    .projects-media-grid .media-item:nth-child(3n) {
        grid-column: 3;
    }
    
    /* Forçar preenchimento sequencial sem espaços vazios */
    .projects-media-grid .media-item {
        grid-row: auto;
        grid-column: auto;
    }
    
    /* Garantir que os itens se alinhem sequencialmente */
    .projects-media-grid {
        grid-auto-flow: row dense;
        justify-items: start;
    }
}

/* Destaque visual para diferentes seções */
.projects-media-grid .media-item[data-category="retratos"] {
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.projects-media-grid .media-item[data-category="eventos"] {
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.projects-media-grid .media-item[data-category="empresas"] {
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.projects-media-grid .media-item[data-category="autorias"] {
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Espaçamento entre seções */
.projects-media-grid .media-item:nth-child(3) {
    margin-bottom: 0.5rem;
}

.projects-media-grid .media-item:nth-child(6) {
    margin-bottom: 0.5rem;
}

.projects-media-grid .media-item:nth-child(8) {
    margin-bottom: 0.5rem;
}

/* Correção para categoria Eventos & Shows - evitar espaços em preto */
.projects-media-grid .media-item[data-category="eventos"] {
    min-height: 280px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Especificamente para os vídeos de eventos */
.projects-media-grid .youtube-video[data-category="eventos"] {
    min-height: 280px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Especificamente para os itens de empresas & marcas */
.projects-media-grid .media-item[data-category="empresas"] {
    min-height: 280px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.projects-media-grid .youtube-video[data-category="empresas"] {
    min-height: 280px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Garantir que imagens preencham completamente o espaço */
.projects-media-grid .media-item[data-category="eventos"] .media-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #111111;
}

.projects-media-grid .media-item[data-category="empresas"] .media-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #111111;
}

/* Forçar vídeos de Eventos & Shows a ficarem lado a lado */
.projects-media-grid .youtube-video[data-category="eventos"] {
    min-height: 280px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Garantir que thumbnails do YouTube preencham o espaço */
.projects-media-grid .youtube-video[data-category="eventos"] .youtube-thumbnail {
    width: 100%;
    height: 100%;
    background: #111111;
    min-height: 280px;
}

.projects-media-grid .youtube-video[data-category="eventos"] .youtube-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #111111;
    min-height: 280px;
}

.projects-media-grid .youtube-video[data-category="empresas"] .youtube-thumbnail {
    width: 100%;
    height: 100%;
    background: #111111;
    min-height: 280px;
}

.projects-media-grid .youtube-video[data-category="empresas"] .youtube-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #111111;
    min-height: 280px;
}

/* Melhor distribuição para grid de 3 colunas */
.projects-media-grid {
    grid-auto-rows: minmax(280px, auto);
    grid-auto-flow: row dense;
    justify-content: start;
    grid-template-columns: repeat(3, 1fr);
}

/* Garantir que TODOS os itens preencham o espaço completamente */
.projects-media-grid .media-item {
    min-height: 280px !important;
    background: #111111 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    overflow: hidden;
    position: relative;
    justify-self: start;
    align-self: start;
    grid-column: auto;
    grid-row: auto;
}

.projects-media-grid .media-item .media-content {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    background: #111111 !important;
    min-height: 280px !important;
}

.projects-media-grid .youtube-video .youtube-thumbnail {
    width: 100% !important;
    height: 100% !important;
    background: #111111 !important;
    min-height: 280px !important;
}

.projects-media-grid .youtube-video .youtube-thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    background: #111111 !important;
    min-height: 280px !important;
}

/* Forçar vídeos de Eventos & Shows a ficarem lado a lado no DESKTOP apenas */
@media (min-width: 769px) {
    /* Primeiro vídeo de eventos (4º item da categoria) */
    .projects-media-grid .media-item[data-category="eventos"]:nth-of-type(4) {
        grid-column: 1;
        grid-row: auto;
    }

    /* Segundo vídeo de eventos (5º item da categoria) */
    .projects-media-grid .media-item[data-category="eventos"]:nth-of-type(5) {
        grid-column: 2;
        grid-row: auto;
    }

    /* Garantir que não há espaços entre os vídeos de Eventos & Shows */
    .projects-media-grid .media-item[data-category="eventos"]:nth-of-type(4) + .media-item[data-category="eventos"]:nth-of-type(5) {
        margin-left: 0;
    }

    /* Forçar vídeos de Empresas & Marcas a ficarem lado a lado */
    .projects-media-grid .media-item[data-category="empresas"]:nth-of-type(3) {
        grid-column: 1;
        grid-row: auto;
    }

    .projects-media-grid .media-item[data-category="empresas"]:nth-of-type(4) {
        grid-column: 2;
        grid-row: auto;
    }

    .projects-media-grid .media-item[data-category="empresas"]:nth-of-type(5) {
        grid-column: 3;
        grid-row: auto;
    }
}

/* Responsividade para mobile - 1 coluna em todas as telas pequenas */
@media (max-width: 768px) {
    .projects-media-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .projects-media-grid .media-item[data-category="eventos"] {
        min-height: 250px;
    }
    
    /* Forçar todos os itens a ficarem em 1 coluna no mobile */
    .projects-media-grid .media-item,
    .projects-media-grid .youtube-video {
        grid-column: 1 !important;
        grid-row: auto !important;
        width: 100%;
        min-height: 250px !important;
        background: #111111 !important;
    }
    
    /* Garantir que imagens preencham no mobile */
    .projects-media-grid .media-item .media-content {
        min-height: 250px !important;
    }
    
    .projects-media-grid .youtube-video .youtube-thumbnail {
        min-height: 250px !important;
    }
    
    .projects-media-grid .youtube-video .youtube-thumbnail img {
        min-height: 250px !important;
    }
}

@media (max-width: 480px) {
    .projects-media-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .projects-media-grid .media-item[data-category="eventos"] {
        min-height: 220px;
    }
    
    /* Garantir que todos os itens fiquem em 1 coluna */
    .projects-media-grid .media-item,
    .projects-media-grid .youtube-video {
        grid-column: 1 !important;
        grid-row: auto !important;
        width: 100%;
        min-height: 220px !important;
        background: #111111 !important;
    }
    
    /* Garantir que imagens preencham no mobile pequeno */
    .projects-media-grid .media-item .media-content {
        min-height: 220px !important;
    }
    
    .projects-media-grid .youtube-video .youtube-thumbnail {
        min-height: 220px !important;
    }
    
    .projects-media-grid .youtube-video .youtube-thumbnail img {
        min-height: 220px !important;
    }
}

.media-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
    min-height: 250px;
    transition: all 0.3s ease;
}

.media-item:hover {
    transform: translateY(-2px);
}

.media-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Estilos específicos para iframes do YouTube */
.media-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Garantir que iframes tenham aspect ratio correto */
.media-item iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Estilos para vídeos do YouTube com visual melhorado */
.youtube-video {
    position: relative;
    overflow: hidden;
}

.youtube-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.youtube-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.youtube-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.youtube-video:hover .youtube-overlay {
    opacity: 1;
}

.youtube-video:hover .youtube-thumbnail img {
    transform: scale(1.05);
}

.youtube-play-button {
    width: 4rem;
    height: 4rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.youtube-play-button:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.youtube-play-button i {
    font-size: 1.5rem;
    color: #ffffff;
    margin-left: 3px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.youtube-video:hover .youtube-play-button i {
    color: #cccccc;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

/* Responsividade para botão de play */
@media (max-width: 768px) {
    .youtube-play-button {
        width: 3rem;
        height: 3rem;
    }
    
    .youtube-play-button i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .youtube-play-button {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .youtube-play-button i {
        font-size: 1rem;
    }
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    transparent,
    rgba(0, 0, 0, 0.7)
  );
    display: flex;
    align-items: flex-end;
    padding: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  pointer-events: none;
}

.media-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
}

.media-play-button {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.media-play-button i {
  font-size: 1.25rem;
  color: white;
  margin-left: 2px;
}

.media-item:hover .media-overlay {
    opacity: 1;
}

.media-category {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Citations Section */
.citations-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

.citations-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.citations-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #888888);
    border-radius: 2px;
}

.citation-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        0 4px 20px rgba(0, 0, 0, 0.1);
}

.citation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #888888);
}

.citation-item:hover {
    transform: translateY(-2px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 8px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.citation-event {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.citation-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.citation-description strong {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.project-year {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.project-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
  font-family: "Satoshi", sans-serif;
    line-height: 1.3;
}

.project-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .projects-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
        margin: 1.5rem 0;
    padding: 0 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    }
    
    .category-btn {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    text-align: center;
    white-space: nowrap;
    min-width: 0;
    flex: 1;
    border-radius: 20px;
    }
    
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Citations Mobile */
    .citations-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .citation-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .citation-event {
        font-size: 1.25rem;
    }
    
    .citation-description {
        font-size: 1rem;
    }
}

/* Mobile pequeno - layout em coluna única */
@media (max-width: 480px) {
  .projects-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 0 1rem;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .category-btn {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    text-align: center;
    white-space: nowrap;
    min-width: 0;
    flex: 1;
    border-radius: 18px;
    }
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.load-more-btn {
    background: transparent;
    color: #999;
    border: none;
    border-bottom: 1px solid #333;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    font-family: inherit;
    position: relative;
    text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.load-more-btn::after {
  content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #333;
    transition: width 0.3s ease;
}

.load-more-btn:hover {
    color: #333;
    border-bottom-color: transparent;
}

.load-more-btn:hover::after {
    width: 100%;
}

.load-more-btn.hidden {
    display: none;
}

/* Botão Google Drive com Efeito de Profundidade */
.load-more-drive-btn {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px 32px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  animation: subtleGlow 3s ease-in-out infinite;
}

@keyframes subtleGlow {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
  50% {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5), 0 2px 12px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

.load-more-drive-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.load-more-drive-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #2a2a2a 0%, #3d3d3d 100%);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 6px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.load-more-drive-btn:hover::before {
  left: 100%;
}

.load-more-drive-btn:active {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), 0 3px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.load-more-drive-btn .btn-content {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.load-more-drive-btn .btn-icon {
  font-size: 18px;
  transition: all 0.3s ease;
  color: #ffffff;
}

.load-more-drive-btn:hover .btn-icon:first-child {
  transform: scale(1.1);
  color: #4285f4;
}

.load-more-drive-btn:hover .btn-icon:last-child {
  transform: translateX(4px) scale(1.05);
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 480px) {
    /* Hero Section Mobile */
    .hero-section {
        padding-top: 8rem;
        padding-left: 1rem;
        padding-right: 1rem;
  }

  /* Hero Badge Mobile */
  .hero-badge {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }

  .badge-text {
    font-size: 0.75rem;
  }


  .hero-video {
    display: none;
  }

  .hero-video-mobile-wrapper {
    display: block;
  }

  .hero-mobile-video {
    display: none;
  }

  .video-loading-mobile {
    display: none;
  }

  .loading-spinner-mobile {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
  }

  .video-loading-mobile p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
  }

  .hero-mobile-video-iframe {
    display: none;
  }

  .hero-overlay {
    background: transparent;
  }

  .vp-center {
    background: #000000;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    text-align: center;
  }

  .about-profile-name {
    text-align: center;
  }

  .profile-role {
    text-align: center;
  }

  .profile-social {
    justify-content: center;
  }

  .support-card {
    display: none;
  }

  .instagram-section {
    border-radius: 44px 44px 0 0;
  }

  .container-image-wrapper .image-gradient {
    display: none;
  }

  .projects-section {
    border-radius: 24px 24px 0 0;
  }

  .process-section {
    border-radius: 24px 24px 0 0;
    background: #000000;
    padding: 4rem 1rem;
  }

  .about-section {
    background: #000000;
  }

  .feedback-section {
    background: #000000;
  }

  .instagram-section {
    background: #000000;
  }

  .hero-grid {
    background: transparent;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }
    
  .hero-signature {
    margin-top: 0;
    margin-bottom: 1rem;
    padding: 1rem;
    max-width: 100%;
  }
  
    
    .signature-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .signature-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .signature-icon i {
        font-size: 1.25rem;
    }
    
    .signature-label {
        font-size: 0.8rem;
    }
    
    .signature-highlight {
        font-size: 0.9rem;
    }
    
  .btn-primary,
  .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    /* Header Mobile */
    .header-nav {
        padding: 0.5rem 1rem;
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .btn-modern {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Works Grid Mobile */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Gradiente mais sutil para mobile */
    .hero-grid::before {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 25%,
            rgba(0, 0, 0, 0.05) 50%,
            rgba(0, 0, 0, 0.2) 75%,
            rgba(0, 0, 0, 0.4) 100%
        );
    }
    
  .container-large,
  .container-small {
        height: 20rem;
        margin-bottom: 1rem;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 4rem 0;
    }
    
    .about-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
  .about-profile-card,
  .about-story-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
    }
    
    .profile-image-container {
        width: 200px;
        height: 200px;
    }
    
    .about-profile-image {
        height: 200px;
    }
    
    /* Process Section Mobile */
    .process-cards {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 280px;
        flex: none;
    }
    
    /* Instagram Section Mobile */
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .instagram-profile-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    /* Feedback Section Mobile */
    .feedback-card {
        width: 220px;
        padding: 1rem;
        min-height: 160px;
    }
    
    .feedback-carousel {
        gap: 1.5rem;
    }
}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .hero-signature {
        margin-top: 0;
    }
    
    .signature-content {
        flex-direction: row;
        text-align: left;
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
}

@media (max-width: 1024px) {
    /* Notebook Styles */
    .hero-title-section {
        margin-bottom: 2rem;
    }
    
    .hero-description {
        margin-bottom: 2.5rem;
    }
    
    .hero-ctas {
        margin-bottom: 2.5rem;
    }
    
    .hero-signature {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Tablet Styles */
    .hero-section {
        padding-top: 10rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

  /* Hero Badge Tablet */
  .hero-badge {
    padding: 0.6rem 1.1rem;
    gap: 0.6rem;
  }

  .badge-text {
    font-size: 0.8rem;
  }


  .hero-video {
    display: none;
  }

  .hero-video-mobile-wrapper {
    display: block;
  }

  .hero-mobile-video {
    display: none;
  }

  .video-loading-mobile {
    display: none;
  }

  .loading-spinner-mobile {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
  }

  .video-loading-mobile p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
  }

  .hero-mobile-video-iframe {
    display: none;
  }

  .hero-overlay {
    background: transparent;
  }

  .vp-center {
    background: #000000;
    }
    
    .hero-title {
        font-size: 4rem;
    text-align: center;
  }

  .about-profile-name {
    text-align: center;
  }

  .profile-role {
    text-align: center;
  }

  .profile-social {
    justify-content: center;
  }

  .support-card {
    display: none;
  }

  .instagram-section {
    border-radius: 44px 44px 0 0;
  }

  .container-image-wrapper .image-gradient {
    display: none;
  }

  .projects-section {
    border-radius: 24px 24px 0 0;
  }

  .process-section {
    border-radius: 24px 24px 0 0;
    background: #000000;
    padding: 4rem 1rem;
  }

  .about-section {
    background: #000000;
  }

  .feedback-section {
    background: #000000;
  }

  .instagram-section {
    background: #000000;
  }

  .hero-grid {
    background: transparent;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Gradiente mais sutil para mobile */
    .hero-grid::before {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 25%,
            rgba(0, 0, 0, 0.05) 50%,
            rgba(0, 0, 0, 0.2) 75%,
            rgba(0, 0, 0, 0.4) 100%
        );
    }
    
  .container-large,
  .container-small {
        height: 22rem;
    }
    
    .about-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
  .about-profile-card,
  .about-story-card {
        width: 100%;
        max-width: 500px;
    }
    
    .process-cards {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-card {
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 200px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feedback-card {
        width: 250px;
    }
    
    /* Support Card Tablet */
    .support-card {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        gap: 2rem;
    }
    
    
    .support-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .support-buttons .btn-primary,
    .support-buttons .btn-secondary {
        flex: 1;
        min-width: 200px;
        max-width: 250px;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 7rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 8rem;
    }
    
    .projects-title {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .process-cards {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-card {
        height: auto;
        min-height: 200px;
    }
    
    /* Typography Mobile */
    .about-title {
        font-size: 2rem;
    }
    
    .instagram-title {
        font-size: 2rem;
    }
    
    .feedback-title {
        font-size: 2rem;
    }
    
    .process-title {
        font-size: 2rem;
    }
    
    .projects-title {
        font-size: 2rem;
    }
    
    /* Container Content Mobile */
    .container-content {
        padding: 1rem;
    }
    
    .container-title {
        font-size: 1.25rem;
    }
    
    .container-title-small {
        font-size: 1rem;
    }
    
    .container-description {
        font-size: 0.8rem;
    }
    
    .container-description-small {
        font-size: 0.7rem;
    }
    
    /* Support Card Mobile */
    .support-card {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
        gap: 1.5rem;
    }
    
    
    .support-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .support-buttons .btn-primary,
    .support-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Footer Section Styles */
.footer-section {
  background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem 0;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    max-width: 120px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
  font-family: "Satoshi", sans-serif;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: #d1d5db;
    font-weight: 500;
}

.footer-description {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
    max-width: 300px;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
  font-family: "Satoshi", sans-serif;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

/* Footer Social */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
}

.social-link i {
    font-size: 1.125rem;
    width: 20px;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.contact-item i {
    font-size: 1rem;
    width: 16px;
    color: #d1d5db;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.legal-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: white;
}

/* Footer Credits */
.footer-credits {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-credits p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.credits-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.credits-link:hover {
    color: white;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 0 2rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-description {
        max-width: none;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Side Controls Styles */
.side-controls {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.control-btn {
  width: 3.5rem;
  height: 3.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
  font-size: 1.5rem;
    text-decoration: none;
}

.control-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.control-btn:active {
    transform: scale(0.95);
}

/* Cores específicas para cada botão */
.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.8);
    border-color: rgba(37, 211, 102, 0.6);
}

.instagram-btn:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
    border-color: rgba(188, 24, 136, 0.6);
}

/* Responsive Side Controls */
@media (max-width: 768px) {
    .side-controls {
        right: 1rem;
        top: auto;
        bottom: 2rem;
        transform: none;
        gap: 0.75rem;
    }
    
    .control-btn {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
    }
    
    /* Hide menu on mobile */
    .header-fixed {
        display: none;
    }
}

/* Footer Mobile Styles */
@media (max-width: 480px) {
    .footer-section {
        padding: 2rem 0 1.5rem 0;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        order: 1;
    }
    
    .footer-nav {
        order: 2;
    }
    
    .footer-social {
        order: 3;
    }
    
    .footer-contact {
        order: 4;
    }

  .footer-links {
    text-align: left;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
        max-width: none;
        text-align: center;
    }
    
    .footer-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .contact-info {
        gap: 0.75rem;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
    
    .footer-legal {
    flex-direction: row;
    gap: 1.5rem;
        justify-content: center;
    }
    
    .legal-link {
        font-size: 0.8rem;
    }
    
    .footer-credits {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .footer-credits p {
        font-size: 0.75rem;
    }
}

/* Terms and Privacy Pages Styles */
.terms-section {
    min-height: 100vh;
    padding: 8rem 0 4rem 0;
  background: #0a0a0a;
    position: relative;
}

.terms-container {
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.terms-header {
    text-align: center;
    margin-bottom: 4rem;
}

.terms-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.terms-title {
    font-size: 3rem;
    font-weight: 300;
    color: white;
    margin-bottom: 0.75rem;
  font-family: "Satoshi", sans-serif;
    line-height: 1.2;
}

.terms-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    font-weight: 300;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-card {
  background: #0f0f0f;
    border-radius: 16px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding: 3rem;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.terms-card::before {
  content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.3),
    rgba(128, 128, 128, 0.2),
    rgba(0, 0, 0, 0.8)
  );
    border-radius: 16px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
    pointer-events: none;
}

.terms-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    margin-top: 2rem;
  font-family: "Satoshi", sans-serif;
}

.terms-card h2:first-child {
    margin-top: 0;
}

.terms-card p {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Responsive Terms */
@media (max-width: 768px) {
    .terms-title {
        font-size: 2rem;
    }
    
    .terms-card {
        padding: 2rem 1.5rem;
    }
    
    .terms-card h2 {
        font-size: 1.25rem;
    }
    
    .terms-card p {
        font-size: 0.9rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .about-profile-name {
        font-size: 1.25rem;
    }
    
    .container-title {
        font-size: 1rem;
    }
    
    .container-description {
        font-size: 0.75rem;
    }
    
}

/* Large Mobile / Small Tablet */
@media (min-width: 481px) and (max-width: 767px) {
    .hero-section {
        padding-top: 9rem;
    }

  .hero-video {
    display: none;
  }

  .hero-video-mobile-wrapper {
    display: block;
  }

  .hero-mobile-video {
    display: none;
  }

  .video-loading-mobile {
    display: none;
  }

  .loading-spinner-mobile {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
  }

  .video-loading-mobile p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
  }

  .hero-mobile-video-iframe {
    display: none;
  }

  .hero-overlay {
    background: transparent;
  }

  .vp-center {
    background: #000000;
    }
    
    .hero-title {
        font-size: 3rem;
    text-align: center;
  }

  .about-profile-name {
    text-align: center;
  }

  .profile-role {
    text-align: center;
  }

  .profile-social {
    justify-content: center;
  }

  .support-card {
    display: none;
  }

  .instagram-section {
    border-radius: 44px 44px 0 0;
  }

  .container-image-wrapper .image-gradient {
    display: none;
  }

  .projects-section {
    border-radius: 24px 24px 0 0;
  }

  .process-section {
    border-radius: 24px 24px 0 0;
    background: #000000;
    padding: 4rem 1rem;
  }

  .about-section {
    background: #000000;
  }

  .feedback-section {
    background: #000000;
  }

  .instagram-section {
    background: #000000;
  }

  .hero-grid {
    background: transparent;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    

}

/* Desktop - Esconder vídeo mobile e mostrar vídeo horizontal */
@media (min-width: 769px) {
  .hero-mobile-video {
    display: none;
  }
  
  .hero-video-mobile-wrapper {
    display: none;
  }
  
  .hero-video {
    display: block;
  }
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  margin: auto;
  padding: 2rem;
  width: 90%;
  max-width: 1200px;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #ff6b6b;
}

.lightbox-media {
  width: 100%;
  height: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative;
}

.lightbox-media video,
.lightbox-media img,
.lightbox-media iframe {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  margin: auto;
  display: block;
}

.lightbox-media video {
  background: #000;
}

.lightbox-media iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  background: #000;
  margin: auto;
  display: block;
  min-height: 400px;
  max-width: 90vw;
  max-height: 90vh;
  filter: contrast(1.1) brightness(1.05);
  position: relative;
  z-index: 1;
}

/* Esconder elementos do YouTube */
.lightbox-media iframe::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
  z-index: 2;
}

/* Centralização já garantida pelo flexbox do container pai */

/* Mobile Lightbox */
@media (max-width: 768px) {
  .lightbox-content {
    padding: 1rem;
    width: 95%;
    height: 95%;
  }

  .lightbox-close {
    top: 0.5rem;
    right: 1rem;
    font-size: 2rem;
  }

  .lightbox-media iframe {
    min-height: 300px;
    max-width: 95vw;
    max-height: 80vh;
  }
  
  .lightbox-media img,
  .lightbox-media video {
    max-width: 95%;
    max-height: 95%;
    }
}

/* Performance Optimizations */
.hero-video {
    will-change: transform;
}

.media-item {
    will-change: transform;
}

.container-large,
.container-small {
    will-change: transform;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-video {
        animation: none;
    }
}
