:root {
  /* ====================================================
     CORES PRINCIPAIS (Brand)
     ==================================================== */
  --cor-primaria:           #A855F7;
  --cor-secundaria:         #7C3AED;
  --cor-sombra:             rgba(168, 85, 247, 0.3);
  
  /* ====================================================
     CORES DE FUNDO
     ==================================================== */
  --fundo-body: #1a0f2e;
  --fundo-pat2: linear-gradient(135deg, #2d1b4e 0%, #3d2463 50%, #2d1b4e 100%);
  --navbar-bg: rgba(0, 0, 0, 0.25);
  
  /* ====================================================
     CORES DE TEXTO
     ==================================================== */
  --texto-principal:           #ffffff;
  --texto-cinza: #e0e0e0;
  --texto-cinza-escuro: #c0c0c0;
  
  /* ====================================================
     GRADIENTES
     ==================================================== */
  --gradiente-principal: linear-gradient(90deg, var(--cor-primaria), var(--cor-secundaria));
  --gradiente-diagonal: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
  --gradiente-fundo-sobre: linear-gradient(135deg, #2d1b4e 0%, #3d2463 50%, #2d1b4e 100%);
  --gradiente-radial-hero: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
  --gradiente-radial-mini: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
  --gradiente-radial-footer: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
  --gradiente-btn-transparent: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(124, 58, 237, 0.3));
  --gradiente-btn-transparent-hover: linear-gradient(135deg, rgba(168, 85, 247, 0.5), rgba(124, 58, 237, 0.5));
  
  /* ====================================================
     SOMBRAS
     ==================================================== */
  --shadow-btn: 0 8px 22px rgba(168, 85, 247, 0.3), 0 3px 8px rgba(0, 0, 0, 0.45);
  --shadow-btn-hover: 0 12px 30px rgba(168, 85, 247, 0.40), 0 6px 15px rgba(0, 0, 0, 0.45);
  --shadow-carousel: 0 8px 20px rgba(168, 85, 247, 0.3);
  --shadow-carousel-hover: 0 12px 30px rgba(168, 85, 247, 0.4);
  --shadow-general: 0 8px 25px rgba(0, 0, 0, 0.4);
  --shadow-hover-general: 0 16px 40px rgba(168, 85, 247, 0.4), 0 0 30px rgba(168, 85, 247, 0.25);
  --shadow-sobre-img: 0 0 20px rgba(255, 255, 255, 0.2);
  --sombra-principal:       0 8px 25px rgba(168, 85, 247, 0.3), 0 3px 8px rgba(0, 0, 0, 0.45);
  
  /* ====================================================
     TRANSIÇÕES
     ==================================================== */
  --transition-1: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-general: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-carousel: transform 0.7s ease-in-out;
  
  /* ====================================================
     CORES DE ACENTUAÇÃO
     ==================================================== */
  --accent-soft: rgba(168, 85, 247, 0.15);
}

/* ===== BOTÃO FLUTUANTE ===== */
.editar-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
    background: linear-gradient(135deg, #2861d2 0%, #309149 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
    box-shadow: 0 8px 25px rgba(40, 97, 210, 0.30);
  transition: all .3s ease;
  z-index: 99999;
}

.editar-btn:hover {
  transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(40, 97, 210, 0.45);
}

.icone-lapis {
  width: 28px;
  filter: invert(1);
}

/* ===== PAINEL DE CORES E TEXTOS ===== */
.painel-cores {
  position: fixed;
  top: 50%;
  right: -340px;
  transform: translateY(-50%);
  width: 300px;
  padding: 25px;
  border-radius: 16px 0 0 16px;

  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.15);

  color: var(--texto-principal);
  box-shadow: 0 0 25px rgba(0,0,0,.4);

  transition: right .4s cubic-bezier(.25,.8,.25,1);
  z-index: 99999;
}

.painel-cores.open {
  right: 0;
}

.painel-cores h3 {
  margin-top: 0;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 18px;
  text-align: center;
}

/* ===== LABELS E INPUTS ===== */
.painel-cores label {
  font-size: 14px;
  opacity: .9;
  margin-bottom: 5px;
  display: block;
  font-weight: 500;
}

.painel-cores input[type="color"],
.painel-cores input[type="text"] {
  width: 100%;
  height: 45px;
  border: none;
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 0 10px;
  font-size: 14px;
  background: rgba(0,0,0,0.1);
  color: #fff;
  cursor: pointer;
  transition: 0.6s;
}

.painel-cores input[type="text"]::placeholder {
  color: rgba(255,255,255,0.6);
}

.painel-cores input[type="color"]:hover,
.painel-cores input[type="text"]:hover {
  background: rgba(255,255,255,0.15);
}

/* ===== BOTÕES SALVAR E CANCELAR ===== */
.acoes-painel {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.btn-salvar,
.btn-cancelar {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: .6s;
  font-weight: 500;
}

/* Botão Salvar */
.btn-salvar {
  background: var(--cor-primaria);
  color: white;
}

.btn-salvar:hover {
  background: var(--cor-secundaria);
}

/* Botão Cancelar */
.btn-cancelar {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-cancelar:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ===== TEXTOS DINÂMICOS ===== */
#titulo-display,
#sub-display {
  color: var(--texto-principal);
  transition: color 0.6s;
}

/* ===== TRANSIÇÕES SUAVES ===== */
.painel-cores input,
.painel-cores button {
  transition: all 0.6s ease;
}
.tabs {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.tab-btn {
  flex: 1;
  padding: 8px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  color: var(--texto-principal);
  transition: 0.3s;
}

.tab-btn.active {
  background: var(--cor-primaria);
  color: #fff;
}

.tab-btn:hover {
  background: rgba(255,255,255,0.2);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}



/* ====== RESET ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: var(--fundo-body);
    color: var(--texto-principal);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: var(--navbar-bg);
    z-index: 100;
} 
 
.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #A855F7, #7C3AED, #A855F7);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

/* Animação do gradiente em movimento */
@keyframes gradient-shift {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 0%;
    }
    100% {
        background-position: 0% 0%;
    }
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--texto-cinza);
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition-1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradiente-principal);
    transition: width 0.6s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--texto-principal);
}

/* ===== BOTÃO NAVBAR ===== */
.btn-contact {
    padding: 10px 22px;
    border-radius: 10px;
    background: var(--gradiente-principal);
    color: var(--texto-principal);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-1);
    box-shadow: var(--shadow-btn);
    text-shadow: 0 1px 2px rgba(0,0,0,0.45);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    overflow: visible;
    background-clip: padding-box;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-hover);
    filter: brightness(1.05);
}

/* ===== BUTTON ===== */
.btn-primary {
    padding: 14px 26px;
    border-radius: 12px;
    background: var(--gradiente-principal);
    color: white;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-1);
    box-shadow: var(--shadow-btn);
    text-shadow: 0 1px 2px rgba(0,0,0,0.45);
    border: none;
    overflow: visible;
    background-clip: padding-box;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-btn-hover);
    filter: brightness(1.05);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.35) inset;
}

/* Espaçamento consistente entre botões em painéis */
.acoes-painel > * { margin: 0 6px; }

/* ===== HERO ===== */
.hero {
    width: 100%;
    height: 100vh;
    background: url("../img/Captura_de_tela_2025-04-12_063400.png") center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 20, 0.4) 0%, rgba(128, 126, 126, 0.7) 100%);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    pointer-events: none;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 5;
}

.hero-content {
    position: relative;
    max-width: 1600px;
    text-align: left;
    padding: 20px;
    animation: fadeInUp 0.8s ease-out;
    z-index: 10;
}

.hero-title {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: var(--gradiente-diagonal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(168, 85, 247, 0.2);
}

.hero-sub {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--texto-cinza);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.3px;
}


/* ===== SOBRE ===== */
.sobre {
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}

.sobre-container {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.sobre-img {
    width: 350px;
    border-radius: 20px;
}

.sobre-texto h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradiente-principal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    animation: slideIn 0.8s ease-out;
}

.sobre-texto p {
    max-width: 550px;
    font-size: 18px;
    color: var(--texto-cinza);
    line-height: 1.6;
}

/* ===== BOTÃO SECUNDÁRIO ===== */
.btn-secondary {
    padding: 14px 26px;
    border-radius: 12px;
    background: var(--gradiente-principal);
    color: white;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-1);
    box-shadow: var(--shadow-btn);
    text-shadow: 0 1px 2px rgba(0,0,0,0.45);
    border: none;
    overflow: visible;
    background-clip: padding-box;
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-btn-hover);
    filter: brightness(1.05);
}

/* Efeito active CORRIGIDO */
.btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.35) inset;
}

/* ===== UI POLISH GLOBAL: Botões + Inputs ===== */
/* Animação de brilho pulsante para botões */
@keyframes pulse-glow {
    0%   { box-shadow: var(--shadow-btn); }
    50%  { box-shadow: 0 14px 36px rgba(168, 85, 247, 0.45), 0 8px 18px rgba(0, 0, 0, 0.45); filter: brightness(1.06); }
    100% { box-shadow: var(--shadow-btn); }
}

/* Aplicar animação suave nos hovers dos principais botões já existentes */
.btn-primary:hover,
.btn-secondary:hover,
.btn-contact:hover,
.btn-login:hover {
    animation: pulse-glow 1.4s ease-in-out;
    will-change: transform, box-shadow, filter;
}

/* Classe utilitária para aplicar brilho pulsante contínuo (opcional) */
.pulse-glow {
    animation: pulse-glow 2.2s ease-in-out infinite;
}

/* Base de botão genérico caso queira usar .btn */
.btn {
    padding: 14px 26px;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-1);
    box-shadow: var(--shadow-btn);
    text-shadow: 0 1px 2px rgba(0,0,0,0.45);
    border: none;
    overflow: visible;
    background-clip: padding-box;
    background: var(--gradiente-principal);
}
.btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-btn-hover); filter: brightness(1.05); }
.btn:active { transform: translateY(-1px); box-shadow: 0 6px 12px rgba(0,0,0,0.35) inset; }

/* Inputs e textareas – foco roxo consistente em todo o site */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--cor-primaria);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.25), 0 8px 20px rgba(168, 85, 247, 0.25);
}

/* Placeholder mais legível em fundos escuros */
::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Artes Recentes ===== */
.mini-portfolio {
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mini-portfolio h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
    background: var(--gradiente-principal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    animation: slideIn 0.8s ease-out;
}

.grid-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-mini img {
    width: 100%;
    height: 250px;
    border-radius: 18px;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    box-shadow: var(--shadow-btn);
    border: 2px solid rgba(168, 85, 247, 0.2);
}

.grid-mini img:hover {
    transform: scale(1.1) translateY(-12px);
    box-shadow: var(--shadow-btn-hover);
    border-color: var(--cor-primaria);
}

/* ===== COMISSÕES HOmE ===== */
.comissoes-home {
    padding: 120px 60px;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.comissoes-box {
    text-align: center;
    max-width: 600px;
}

.comissoes-box h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradiente-principal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    animation: slideIn 0.8s ease-out;
}

.comissoes-box p {
    font-size: 18px;
    color: var(--texto-cinza);
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.mt-20 { margin-top: 20px; }

/* ===== SCROLL SETA ===== */
.scroll-down {
    text-align: center;
    margin-top: -40px;
    position: relative;
    z-index: 10001;
}

.scroll-img {
    width: 45px;
    opacity: 0.5;
    cursor: pointer;
    animation: bounce 1.5s infinite;
    transition: opacity 0.6s;
}

.scroll-img:hover { opacity: 0.9; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(10px); opacity: 0.8; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FOOTER sOCIAL ===== */
.footer-social {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.footer-right {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 132px;
    height: 132px;
    padding: 14px;
    text-decoration: none;
    color: var(--texto-cinza);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.32s ease;
    gap: 12px;
}

.social-link img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    padding: 12px;
    background: rgba(124, 58, 237, 0.25);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
    filter: none;
    transition: transform 0.32s ease, filter 0.32s ease, background 0.32s ease, border-color 0.32s ease;
}

.social-link:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.65);
    background: rgba(168, 85, 247, 0.22);
    box-shadow: 0 12px 28px rgba(168, 85, 247, 0.35);
    color: #fff;
}

.social-link:hover img {
    transform: scale(1.05);
    background: rgba(0,0,0,0.12);
    border-color: rgba(0,0,0,0.12);
    filter: none;
}

/*  
====================================================
==            CARROSSEL (CORRIGIDO)               ==
====================================================
*/

.carousel {
    position: relative;
    width: 98%;
    max-width: 1200px;
    height: 390px; /* reduzido proporcionalmente mantendo 1600x520 como referência */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.6);
}

/* corrige o movimento horizontal */
.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

/* cada item ocupa a tela toda */
.carousel-item {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

/* IMAGENS AJUSTADAS PARA OCUPAR O ESPAÇO (tipo cover) */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;         
    object-position: center;
    border-radius: 25px;
    display: block;
    box-shadow: var(--shadow-btn);
    transition: all 0.6s ease;
    cursor: pointer;
}

.carousel:hover .carousel-item img {
    box-shadow: var(--shadow-btn-hover);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    background: var(--gradiente-btn-transparent);
    
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: clamp(6px, 1.5vw, 14px);
    font-size: clamp(16px, 3vw, 28px);
    color: var(--texto-principal);
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;

    width: clamp(36px, 8vw, 56px);
    height: clamp(36px, 8vw, 56px);
    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    box-shadow: 
        0 8px 20px rgba(168, 85, 247, 0.25),
        0 3px 8px rgba(0, 0, 0, 0.45);

    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: var(--gradiente-btn-transparent-hover);

    transform: translateY(-50%) scale(1.15);

    box-shadow:
        0 12px 30px rgba(168, 85, 247, 0.35),
        0 6px 15px rgba(0, 0, 0, 0.45);

    border-color: rgba(255, 255, 255, 0.35);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.92);
}

/* posição */
.carousel-btn.prev { 
    left: clamp(5px, 2vw, 15px); 
}

.carousel-btn.next { 
    right: clamp(5px, 2vw, 15px); 
}
/* ===== RESPONSIVIDADE ===== */
@media screen and (max-width: 1024px) {
    .hero-content { max-width: 95%; }
    .carousel { 
        width: 95%; 
        height: auto;
        aspect-ratio: 1600 / 520;
    }
}

@media screen and (max-width: 768px) {
    .carousel { 
        width: 90%;
        height: auto;
        aspect-ratio: 1600 / 520;
    }
}

@media screen and (max-width: 600px) {
    .carousel { 
        width: 95%;
        height: auto;
        aspect-ratio: 1600 / 520;
    }
}

@media screen and (max-width: 480px) {
    .carousel { 
        width: 100%;
        height: auto;
        aspect-ratio: 1600 / 520;
    }
}

/* ==== SOBRE ==== */
.sobre-container {
    margin-top: 120px;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.sobre-box {
    max-width: 900px;
    text-align: center;
}

.sobre-box h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.sobre-box p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--texto-cinza);
}

.sobre-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: var(--shadow-sobre-img);
}

/* ====================================================
   GALERIA - ESTILOS ESPECÍFICOS
   ==================================================== */

.galeria-header {
    margin-top: 80px;
    text-align: center;
    padding: 40px 30px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.galeria-header h1 {
    font-size: 56px;
    font-weight: 850;
    letter-spacing: 1px;
    background: var(--gradiente-principal);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
    animation: slideIn 0.8s ease-out;
    position: relative;
    display: inline-block;
    line-height: 1.05;
    text-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.galeria-header h1::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 140px;
    height: 4px;
    border-radius: 999px;
    background: var(--gradiente-principal);
    box-shadow: 0 10px 26px rgba(168, 85, 247, 0.45);
}

.galeria-header p {
    font-size: 18px;
    color: var(--texto-cinza);
    margin-bottom: 30px;
}

.galeria-container {
    width: 100%;
    padding: 60px 0;
}

.galeria-grid {
    width: 88%;
    max-width: 1350px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.galeria-grid img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: .2s;
}

.galeria-grid img:hover {
    transform: scale(1.06);
    box-shadow: 0 0 18px rgba(255,255,255,0.25);
}

@media (max-width: 1100px) {
    .galeria-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 800px) {
    .galeria-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.modal-view {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 10, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 3000;
}

.modal-view img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    animation: zoomIn 0.25s ease;
}

.modal-close {
    position: fixed;
    top: 25px;
    right: 40px;
    font-size: 50px;
    cursor: pointer;
    color: white;
    z-index: 3001;
}

.modal-close:hover {
    color: var(--cor-primaria);
}

.modal-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 70px;
    color: white;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    z-index: 3002;
    transition: transform 0.18s ease, color 0.18s ease;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

#arrowLeft { left: 36px; }
#arrowRight { right: 36px; }

@media (max-width: 600px) {
    .modal-arrow { font-size: 48px; padding: 10px; }
    #arrowLeft { left: 12px; }
    #arrowRight { right: 12px; }
}

.modal-arrow:hover {
    color: var(--cor-primaria);
    transform: translateY(-50%) scale(1.15);
}

/* ====================================================
   PORTFÓLIO - ESTILOS ESPECÍFICOS
   ==================================================== */

.portfolio-container {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--cor-primaria);
}

.portfolio-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.project-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(124, 58, 237, 0.1));
    border: 2px solid var(--cor-primaria);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.6s ease;
    box-shadow: var(--shadow-btn);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: var(--shadow-btn-hover);
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    color: var(--cor-primaria);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.project-info p {
    color: white;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.project-tag {
    background: var(--cor-secundaria);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

.project-link {
    display: inline-block;
    color: var(--cor-primaria);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #ffd700;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-container h2 {
        font-size: 2rem;
    }

    .portfolio-intro {
        font-size: 1rem;
    }
}

/* ====================================================
   SOBRE - ESTILOS ESPECÍFICOS
   ==================================================== */

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

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h2 {
    font-size: 2.5rem;
    color: var(--cor-primaria);
    margin-bottom: 1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-text h3 {
    color: var(--cor-primaria);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: white;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-general);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.skills-section {
    margin-top: 3rem;
}

.skills-section h3 {
    color: var(--cor-primaria);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.skill-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(124, 58, 237, 0.1));
    border: 2px solid var(--cor-primaria);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.6s ease;
    box-shadow: var(--shadow-btn);
}

.skill-card:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #ffd700;
    box-shadow: var(--shadow-btn-hover);
}

.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.skill-card h4 {
    color: var(--cor-primaria);
    margin-bottom: 0.5rem;
}

.skill-card p {
    font-size: 0.95rem;
    color: white;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-header h2 {
        font-size: 2rem;
    }

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

    .about-text p {
        font-size: 1rem;
    }
}

/* ====================================================
   COMISSÕES - ESTILOS ESPECÍFICOS
   ==================================================== */

.comissoes-container {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comissoes-container h2 {
    font-size: 2.5rem;
    color: var(--cor-primaria);
    text-align: center;
    margin-bottom: 2rem;
}

.comissoes-intro {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.commission-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.plan-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(124, 58, 237, 0.15));
    border: 3px solid var(--cor-primaria);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.6s ease;
    box-shadow: var(--shadow-btn);
    position: relative;
}

.plan-card.featured {
    transform: scale(1.05);
    border-color: #ffd700;
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-btn-hover);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cor-primaria);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.plan-name {
    font-size: 1.8rem;
    color: var(--cor-primaria);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: bold;
}

.plan-price small {
    font-size: 1rem;
    color: white;
}

.plan-description {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.plan-features li:before {
    content: "✓ ";
    color: var(--cor-primaria);
    font-weight: bold;
    margin-right: 0.5rem;
}

.plan-btn {
    background: var(--cor-secundaria);
    color: white;
    border: 2px solid var(--cor-primaria);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.6s ease;
    text-decoration: none;
    display: inline-block;
}

.plan-btn:hover {
    background: var(--cor-primaria);
    transform: scale(1.05);
}

.commission-form-section {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(124, 58, 237, 0.1));
    border: 2px solid var(--cor-primaria);
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.commission-form-section h3 {
    color: var(--cor-primaria);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--cor-primaria);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-submit {
    background: var(--cor-primaria);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    background: var(--cor-secundaria);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .commission-plans {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .comissoes-container h2 {
        font-size: 2rem;
    }

    .plan-price {
        font-size: 2rem;
    }

    .commission-form-section {
        padding: 1.5rem;
    }
}

/* ====================================================
   CONTATO - ESTILOS ESPECÍFICOS
   ==================================================== */

.contact-container {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: var(--cor-primaria);
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: white;
    line-height: 1.8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(124, 58, 237, 0.1));
    border: 2px solid var(--cor-primaria);
    border-radius: 10px;
    padding: 2rem;
}

.contact-info h3 {
    color: var(--cor-primaria);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--cor-primaria);
}

.contact-item p {
    color: white;
    line-height: 1.6;
}

.contact-form {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(124, 58, 237, 0.1));
    border: 2px solid var(--cor-primaria);
    border-radius: 10px;
    padding: 2rem;
}

.contact-form h3 {
    color: var(--cor-primaria);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--cor-primaria);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
    margin-bottom: 1rem;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-submit {
    background: var(--cor-primaria);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    background: var(--cor-secundaria);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }
}

/* ===== RODAPÉ PRINCIPAL ===== */
.footer {
    padding: 40px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cor-primaria), transparent);
}

.footer-left {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-left p {
    color: var(--texto-cinza);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.footer-left a {
    color: var(--texto-cinza-escuro);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 10px;
}

.footer-left a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--cor-primaria);
    transition: width 0.3s ease;
}

.footer-left a:hover {
    color: var(--cor-primaria);
}

.footer-left a:hover::after {
    width: 100%;
}

/* Rodapé simples (para páginas secundárias) */
footer {
    padding: 40px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cor-primaria), transparent);
}

footer p {
    color: var(--texto-cinza);
    font-size: 14px;
    letter-spacing: 0.5px;
    margin: 10px 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer,
    footer {
        padding: 30px 20px;
    }
    
    .footer-left {
        gap: 10px;
    }
    
    .footer-left p,
    footer p {
        font-size: 12px;
    }
}
