/* ===== NOVA PALETA ELEGANTE 2025 ===== */
:root {
    /* Cores Principais - Baseadas no Anexo */
    --dark-primary: #000419;      /* Preto elegante */
    --dark-secondary: #091326;     /* Azul acinzentado */
    --accent-magenta: #6C1847;     /* Magenta profundo */
    --medium-rose: #B4457A;        /* Rosa médio */
    --light-pink: #FFC0EA;         /* Rosa claro */
    
    /* Cores de Suporte */
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
    --text-muted: #B0B0B0;
    --border-color: rgba(255, 192, 234, 0.2);
    --shadow-color: rgba(0, 4, 25, 0.3);
    --overlay-color: rgba(0, 4, 25, 0.8);
}

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

html {
    height: 100%;
    overflow-x: auto;
    overflow-y: auto;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: var(--dark-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: auto;
    overflow-y: auto;
}

/* ===== TIPOGRAFIA MAXIMALISTA ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--light-pink), var(--medium-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-secondary);
}

/* ===== HEADER ELEGANTE COM GLASSMORPHISM ===== */
header {
    background: rgba(0, 4, 25, 0.25);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 193, 204, 0.2);
    border-left: 1px solid rgba(255, 193, 204, 0.1);
    border-right: 1px solid rgba(255, 193, 204, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.7rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 4, 25, 0.2),
        inset 0 1px 0 rgba(255, 193, 204, 0.1);
}

header:hover {
    background: rgba(0, 4, 25, 0.35);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border-bottom: 1px solid rgba(255, 193, 204, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 4, 25, 0.3),
        inset 0 1px 0 rgba(255, 193, 204, 0.15);
}

header.scrolled {
    background: rgba(0, 4, 25, 0.45);
    backdrop-filter: blur(35px) saturate(220%);
    -webkit-backdrop-filter: blur(35px) saturate(220%);
    border-bottom: 1px solid rgba(255, 193, 204, 0.25);
    box-shadow: 
        0 8px 32px rgba(0, 4, 25, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 193, 204, 0.1);
}

.navbar {
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 4px 15px rgba(255, 192, 234, 0.3));
    transition: all 0.3s ease;
    position: relative;
    animation: headerCameraFlash 3s ease-in-out infinite;
}

@keyframes headerCameraFlash {
    0%, 80%, 100% {
        filter: drop-shadow(0 4px 15px rgba(255, 192, 234, 0.3));
        transform: scale(1);
    }
    85% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 1)) brightness(1.8);
        transform: scale(1.2);
    }
    90% {
        filter: drop-shadow(0 0 50px rgba(255, 192, 234, 1)) brightness(2.2);
        transform: scale(1.3);
    }
    95% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)) brightness(1.5);
        transform: scale(1.1);
    }
}

/* ===== EFEITO DE FLASH NO ÍCONE DA CÂMERA ===== */
.logo-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.3);
    z-index: -1;
    pointer-events: none;
    animation: headerIconFlash 3s ease-in-out infinite;
}

@keyframes headerIconFlash {
    0%, 80%, 100% {
        opacity: 0;
        transform: scale(0.3);
    }
    85% {
        opacity: 1;
        transform: scale(1.5);
        background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 192, 234, 0.9) 50%, transparent 70%);
    }
    90% {
        opacity: 1;
        transform: scale(2);
        background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 192, 234, 1) 50%, transparent 70%);
    }
    95% {
        opacity: 0;
        transform: scale(2.5);
    }
}

.logo:hover .logo-icon::before {
    animation: cameraFlash 0.6s ease-out;
}

@keyframes cameraFlash {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
        background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 192, 234, 0.8) 50%, transparent 70%);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

.logo-text {
    background: linear-gradient(135deg, var(--light-pink), var(--accent-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
}

.logo:hover .logo-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 20px rgba(255, 192, 234, 0.4));
    animation: headerFlash 0.6s ease-out;
}

@keyframes headerFlash {
    0% {
        filter: drop-shadow(0 6px 20px rgba(255, 192, 234, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(255, 255, 255, 1)) brightness(1.6);
        transform: scale(1.2);
    }
    100% {
        filter: drop-shadow(0 6px 20px rgba(255, 192, 234, 0.4));
    }
}

/* ===== FLASH NO CLIQUE DO LOGO ===== */
.logo:active .logo-icon {
    animation: clickFlash 0.3s ease-out;
}

@keyframes clickFlash {
    0% {
        filter: drop-shadow(0 6px 20px rgba(255, 192, 234, 0.4));
        transform: scale(1.1);
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1)) brightness(1.5);
        transform: scale(1.2);
    }
    100% {
        filter: drop-shadow(0 6px 20px rgba(255, 192, 234, 0.4));
        transform: scale(1.1);
    }
}

.logo:hover .logo-text {
    background: linear-gradient(135deg, var(--accent-magenta), var(--light-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--light-pink);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--light-pink), var(--medium-rose));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== MENU MOBILE ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 192, 234, 0.1);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--dark-primary), var(--dark-secondary));
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        border-top: 1px solid var(--border-color);
        backdrop-filter: blur(20px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 1001;
    }
    
    .nav-links a {
        padding: 0.8rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(255, 192, 234, 0.1);
        transform: translateX(5px);
    }
}

/* ===== HERO SECTION ELEGANTE ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 4, 25, 0.8) 0%, rgba(9, 19, 38, 0.7) 50%, rgba(108, 24, 71, 0.6) 100%);
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FFC0EA" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 3;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 4;
}

.hero h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

/* ===== EFEITO TYPEWRITER ===== */
.typewriter {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2px;
    flex-wrap: wrap;
    text-align: center;
}

.typewriter-text {
    overflow: hidden;
    white-space: normal;
    min-height: 1.2em;
    display: inline;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    line-height: 1.2;
}

.cursor {
    color: var(--light-pink);
    font-weight: bold;
    animation: blink 1s infinite;
    display: inline;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* ===== BOTÃO CTA MODERNO COM TENDÊNCIAS 2025 ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, 
        rgba(108, 24, 71, 0.95), 
        rgba(180, 69, 122, 0.95), 
        rgba(255, 192, 234, 0.9));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(108, 24, 71, 0.3),
        0 0 0 1px rgba(255, 192, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.4s both;
    /* Garantir que nunca desapareça */
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1000;
}

/* Efeito de brilho no hover */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(108, 24, 71, 0.4),
        0 0 0 2px rgba(255, 192, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, 
        rgba(108, 24, 71, 1), 
        rgba(180, 69, 122, 1), 
        rgba(255, 192, 234, 0.95));
}

.cta-button:hover::before {
    left: 100%;
}

/* Ícone da câmera */
.cta-button i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.cta-button:hover i {
    transform: translateX(3px) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(255, 192, 234, 0.8));
    animation: buttonFlash 0.8s ease-out;
}

@keyframes buttonFlash {
    0% {
        filter: drop-shadow(0 0 8px rgba(255, 192, 234, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1)) brightness(1.5);
        transform: translateX(3px) rotate(5deg) scale(1.2);
    }
    100% {
        filter: drop-shadow(0 0 8px rgba(255, 192, 234, 0.8));
    }
}

/* Texto do botão */
.cta-button span {
    position: relative;
    z-index: 2;
    font-weight: 700;
}

/* Efeito de borda animada */
.cta-button::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--accent-magenta), 
        var(--medium-rose), 
        var(--light-pink), 
        var(--accent-magenta));
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: 400% 400%;
    animation: borderGradient 3s ease infinite;
}

.cta-button:hover::after {
    opacity: 1;
}

@keyframes borderGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Estados de loading e feedback */
.cta-button.loading {
    pointer-events: none;
    opacity: 0.9 !important;
}

.cta-button.loading i {
    animation: spin 1s linear infinite;
}

.cta-button.success {
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.95), 
        rgba(22, 163, 74, 0.95));
    box-shadow: 
        0 10px 30px rgba(34, 197, 94, 0.3),
        0 0 0 1px rgba(34, 197, 94, 0.2);
}

.cta-button.error {
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.95), 
        rgba(220, 38, 38, 0.95));
    box-shadow: 
        0 10px 30px rgba(239, 68, 68, 0.3),
        0 0 0 1px rgba(239, 68, 68, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        gap: 0.6rem;
    }
    
    .cta-button i {
        font-size: 1rem;
    }
}

/* ===== TABLET RESPONSIVIDADE ===== */
@media (max-width: 1024px) and (min-width: 769px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .portfolio-item {
        min-height: 260px;
    }
    
    .portfolio-item img {
        height: 240px;
    }
    
    /* ===== ELEMENTOS DE TEXTO REMOVIDOS NO TABLET ===== */
    
    .portfolio-filters {
        gap: 0.8rem;
        padding: 0 1.5rem;
    }
    
    .filter-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        gap: 0.5rem;
    }
    
    .cta-button span {
        font-size: 0.9rem;
    }
}

/* ===== CONTAINER DOS BOTÕES DA HERO ===== */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* ===== RESPONSIVIDADE DOS BOTÕES ===== */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        gap: 0.8rem;
    }
}

/* ===== SEÇÕES ELEGANTES ===== */
section {
    padding: 5rem 2rem;
    position: relative;
    min-height: auto;
    width: 100%;
    overflow: visible;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--light-pink), var(--medium-rose));
    border-radius: 2px;
}

/* ===== SOBRE SECTION ===== */
.about {
    background: linear-gradient(135deg, var(--dark-secondary), var(--dark-primary));
    position: relative;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: fadeInLeft 1s ease-out;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-images {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

/* ===== CARD ROTATIVO 3D ===== */
.flip-card {
    width: 400px;
    height: 500px;
    perspective: 1000px;
    cursor: pointer;
    position: relative;
}

.flip-card::after {
    content: '🔄 Passe o mouse';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-pink);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.flip-card:hover::after {
    opacity: 1;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-color);
}

.flip-card-front img,
.flip-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.flip-card:hover .flip-card-front img,
.flip-card:hover .flip-card-back img {
    transform: scale(1.05);
}

/* Efeito de brilho no hover */
.flip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 192, 234, 0.2), transparent);
    transition: left 0.5s;
    z-index: 10;
    pointer-events: none;
}

.flip-card:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .flip-card {
        width: 300px;
        height: 375px;
    }
}

@media (max-width: 480px) {
    .flip-card {
        width: 250px;
        height: 312px;
    }
}

/* ===== PORTFÓLIO AVANÇADO COM EFEITOS FOTOGRÁFICOS ===== */
.portfolio {
    background: var(--dark-primary);
    position: relative;
    perspective: 2000px;
    /* Garantir que não cause overflow */
    overflow: visible;
    width: 100%;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--medium-rose), var(--accent-magenta));
    border-color: var(--light-pink);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(180, 69, 122, 0.4);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    /* Garantir que não cause overflow */
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
}

.portfolio-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    will-change: transform, filter;
    animation: photoReveal 1.2s ease-out both;
    opacity: 0;
    transform: translateY(80px) scale(0.8) rotateX(15deg);
    /* Garantir que não cause overflow */
    max-width: 100%;
    box-sizing: border-box;
    min-height: 320px;
}

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item:nth-child(4) { animation-delay: 0.4s; }
.portfolio-item:nth-child(5) { animation-delay: 0.5s; }
.portfolio-item:nth-child(6) { animation-delay: 0.6s; }

/* ===== EFEITO DE HOVER PRINCIPAL MELHORADO ===== */
.portfolio-item:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.7),
        0 0 0 3px rgba(255, 192, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

@keyframes photoReveal {
    from {
        opacity: 0;
        transform: translateY(80px) scale(0.8) rotateX(15deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

/* ===== EFEITO DE LENTE FOTOGRAFICA ===== */
.lens-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
            rgba(255, 192, 234, 0.4) 0%, 
            transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.portfolio-item:hover .lens-effect {
    opacity: 1;
}

/* ===== EFEITO DE FOCO ===== */
.focus-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border: 2px solid rgba(255, 192, 234, 0.8);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.portfolio-item:hover .focus-ring {
    width: 120px;
    height: 120px;
    opacity: 1;
    animation: focusPulse 2s ease-in-out infinite;
}

@keyframes focusPulse {
    0%, 100% { 
        border-color: rgba(255, 192, 234, 0.8);
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        border-color: rgba(255, 192, 234, 1);
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.portfolio-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: contrast(1.1) saturate(1.2);
    /* Otimização para mobile */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

.portfolio-item:hover img {
    transform: scale(1.2);
    filter: contrast(1.4) saturate(1.6) brightness(1.2);
}

/* ===== OVERLAY REMOVIDO - APENAS EFEITOS VISUAIS ===== */

/* ===== ELEMENTOS DE TEXTO REMOVIDOS - APENAS EFEITOS VISUAIS ===== */

/* ===== EFEITO DE APERTURA ===== */
.aperture-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border: 3px solid rgba(255, 192, 234, 0.6);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 6;
}

.portfolio-item:hover .aperture-effect {
    width: 180px;
    height: 180px;
    opacity: 1;
    animation: apertureBlade 3s ease-in-out infinite;
}

@keyframes apertureBlade {
    0%, 100% { 
        border-color: rgba(255, 192, 234, 0.6);
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        border-color: rgba(255, 192, 234, 1);
        transform: translate(-50%, -50%) scale(1.3);
    }
}

/* ===== EFEITO DE PARTÍCULAS FOTOGRAFICAS ===== */
.photo-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(255, 192, 234, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: photoFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 0.5s; }
.particle:nth-child(8) { left: 80%; animation-delay: 1.5s; }
.particle:nth-child(9) { left: 90%; animation-delay: 2.5s; }

@keyframes photoFloat {
    0%, 100% { 
        transform: translateY(100vh) scale(0) rotate(0deg);
        opacity: 0;
    }
    50% { 
        transform: translateY(50vh) scale(1) rotate(180deg);
        opacity: 1;
    }
}

/* ===== AGENDAMENTO ELEGANTE ===== */
.scheduling {
    background: linear-gradient(135deg, var(--dark-secondary), var(--dark-primary));
    position: relative;
}

.scheduling-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.calendar-container {
    background: var(--dark-secondary);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px var(--shadow-color);
}

.form-container {
    background: var(--dark-secondary);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px var(--shadow-color);
}

.booking-info {
    background: rgba(255, 192, 234, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--light-pink);
}

.booking-info p {
    margin: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.booking-info i {
    color: var(--light-pink);
    margin-right: 0.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--dark-primary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--light-pink);
    box-shadow: 0 0 0 3px rgba(255, 192, 234, 0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group input.success,
.form-group textarea.success,
.form-group select.success {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-magenta), var(--medium-rose));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(108, 24, 71, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ===== CONTATO ELEGANTE ===== */
.contact {
    background: var(--dark-primary);
    position: relative;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    animation: fadeInLeft 1s ease-out;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 193, 204, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 193, 204, 0.25);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 193, 204, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--light-pink);
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.contact-item div h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-item div p {
    color: var(--text-secondary);
}

.contact-form {
    animation: fadeInRight 1s ease-out;
}

/* ===== FOOTER ELEGANTE ===== */
footer {
    background: linear-gradient(135deg, var(--dark-primary), var(--dark-secondary));
    padding: 3rem 2rem 1rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-magenta), var(--medium-rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 24, 71, 0.3);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== MODAL ELEGANTE ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-color);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.modal-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== FULLCALENDAR PERSONALIZADO ===== */
.fc {
    background: var(--dark-secondary);
    border-radius: 15px;
    overflow: hidden;
}

.fc-toolbar {
    background: var(--dark-primary);
    padding: 1rem;
}

.fc-toolbar-title {
    color: var(--text-primary) !important;
    font-weight: 600;
}

.fc-button {
    background: linear-gradient(135deg, var(--accent-magenta), var(--medium-rose)) !important;
    border: none !important;
    border-radius: 8px !important;
    color: white !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.fc-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(108, 24, 71, 0.3) !important;
}

.fc-daygrid-day {
    background: var(--dark-secondary) !important;
    border-color: var(--border-color) !important;
}

.fc-daygrid-day-number {
    color: var(--text-primary) !important;
}

.fc-daygrid-day.fc-day-today {
    background: rgba(255, 192, 234, 0.1) !important;
}

.fc-daygrid-day.fc-day-past {
    background: rgba(0, 4, 25, 0.5) !important;
}

.fc-daygrid-day.fc-day-future {
    background: var(--dark-secondary) !important;
}

.fc-daygrid-day.fc-day-future:hover {
    background: rgba(255, 192, 234, 0.1) !important;
}

.fc-event {
    background: linear-gradient(135deg, #FF0000, #CC0000) !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 6px 10px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: white !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3) !important;
    text-align: center !important;
    min-height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.fc-event:hover {
    background: linear-gradient(135deg, #CC0000, #990000) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4) !important;
}

.fc-event-title {
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

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

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

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

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

/* ===== ELEMENTOS FLUTUANTES ===== */
.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--light-pink), var(--medium-rose));
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* ===== SCROLL SUAVE ===== */
html {
    scroll-behavior: smooth;
}

/* ===== LOADING SCREEN ELEGANTE ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b3d 50%, #1a1a1a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loading-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 15px;
}

.camera-icon {
    width: 60px;
    height: 60px;
    color: #B4457A;
    animation: pulse 2s ease-in-out infinite;
    position: relative;
}

/* ===== EFEITO DE FLASH NO LOADING SCREEN ===== */
.camera-icon::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.3);
    z-index: -1;
    pointer-events: none;
    animation: loadingFlash 3s ease-in-out infinite;
}

@keyframes loadingFlash {
    0%, 100% {
        opacity: 0;
        transform: scale(0.3);
    }
    25% {
        opacity: 1;
        transform: scale(2.5);
        background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 192, 234, 0.9) 50%, transparent 70%);
    }
    50% {
        opacity: 0;
        transform: scale(3);
    }
}

.camera-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(180, 69, 122, 0.5));
}

.logo-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #B4457A, #6C1847);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(180, 69, 122, 0.3);
    animation: shimmer 3s ease-in-out infinite;
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid #B4457A;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: #6C1847;
    animation-delay: -0.5s;
}

.spinner-ring:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-top-color: #FFC1CC;
    animation-delay: -1s;
}

.loading-text {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInOut 2s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 10px rgba(180, 69, 122, 0.3)); }
    50% { filter: brightness(1.2) drop-shadow(0 0 20px rgba(180, 69, 122, 0.6)); }
}

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

@keyframes fadeInOut {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* ===== MODAL DE CONFIRMAÇÃO ===== */
.confirm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.confirm-modal-content {
    background: var(--dark-primary);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
    animation: slideIn 0.3s ease;
    border: 1px solid var(--border-color);
}

.confirm-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.confirm-modal-header h3 {
    color: var(--light-pink);
    margin: 0;
    font-size: 1.3rem;
}

.confirm-modal-close {
    background: none;
    border: none;
    color: #999;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.confirm-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-pink);
}

.confirm-modal-body {
    padding: 1.5rem;
    color: #fff;
    line-height: 1.6;
}

.confirm-modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    justify-content: flex-end;
}

.confirm-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cancel-btn {
    background: #666;
    color: white;
}

.cancel-btn:hover {
    background: #777;
    transform: translateY(-2px);
}

.delete-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.delete-btn:hover {
    background: linear-gradient(135deg, #ee5a52, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ===== RESPONSIVIDADE ELEGANTE ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .about-content,
    .scheduling-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* ===== PORTFÓLIO MOBILE OTIMIZADO ===== */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 1rem;
    }
    
    .portfolio-item {
        transform-style: flat;
        border-radius: 15px;
        min-height: 240px;
    }
    
    .portfolio-item img {
        height: 220px;
        object-fit: cover;
    }
    
    .portfolio-item:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.5),
            0 0 0 2px rgba(255, 192, 234, 0.2);
    }
    
    /* ===== ELEMENTOS DE TEXTO REMOVIDOS NO MOBILE ===== */
    
    /* ===== FILTROS MOBILE ===== */
    .portfolio-filters {
        gap: 0.3rem;
        padding: 0 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 20px;
        min-width: auto;
        flex: 0 0 auto;
    }
    
    /* ===== EFEITOS MOBILE SIMPLIFICADOS ===== */
    .lens-effect,
    .focus-ring,
    .aperture-effect {
        display: none;
    }
    
    /* ===== FLASH MOBILE SIMPLIFICADO ===== */
    .logo-icon::before {
        animation-duration: 0.4s;
        transform: scale(0.8);
    }
    
    .camera-icon::before {
        animation-duration: 2s;
        transform: scale(0.5);
    }
    
    /* ===== FLASH DO CABEÇALHO MOBILE ===== */
    .logo-icon {
        animation-duration: 4s;
    }
    
    .logo:hover .logo-icon {
        animation-duration: 0.6s;
    }
    
    .camera-icon::before {
        animation-duration: 3s;
    }
    
    /* ===== OTIMIZAÇÕES DE TOUCH ===== */
    .portfolio-item {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .portfolio-item:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .floating-element {
        display: none;
    }
    
    /* ===== SEÇÃO TÍTULO MOBILE ===== */
    .section-title {
        padding: 0 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    /* ===== PORTFÓLIO MOBILE PEQUENO ===== */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        padding: 0 0.5rem;
    }
    
    .portfolio-item {
        min-height: 220px;
    }
    
    .portfolio-item img {
        height: 200px;
    }
    
    /* ===== ELEMENTOS DE TEXTO REMOVIDOS NO MOBILE PEQUENO ===== */
    
    /* ===== FILTROS MOBILE PEQUENO ===== */
    .portfolio-filters {
        gap: 0.2rem;
        padding: 0 0.5rem;
    }
    
    .filter-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
        border-radius: 15px;
    }
    
    /* ===== SEÇÃO TÍTULO MOBILE PEQUENO ===== */
    .section-title {
        padding: 0 0.5rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.keyboard-navigation *:focus {
    outline: 2px solid var(--light-pink);
    outline-offset: 2px;
}

/* ===== ESTADOS DE CARREGAMENTO ===== */
body.loaded {
    overflow: auto;
}

/* ===== UTILITÁRIOS ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== IMPRESSÃO ===== */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    header,
    footer,
    .floating-element {
        display: none !important;
    }
} 



/* ===== MASONRY LAYOUT ===== */
.masonry-section {
    margin-top: 4rem;
    padding: 2rem 0;
}

/* ===== MASONRY MOBILE - OCULTAR ===== */
@media (max-width: 768px) {
    .masonry-section {
        display: none !important;
    }
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.masonry-item {
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.masonry-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.masonry-small {
    grid-row: span 1;
}

.masonry-medium {
    grid-row: span 2;
}

.masonry-large {
    grid-row: span 3;
}

.masonry-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.masonry-item:hover .masonry-image img {
    transform: scale(1.1);
}

/* ===== MASONRY OVERLAY REMOVIDO - APENAS EFEITOS VISUAIS ===== */

/* ===== FILTROS AVANÇADOS ===== */
.advanced-filters {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    justify-content: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 150px;
}

.filter-group label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-group select {
    padding: 0.8rem;
    background: var(--dark-primary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--light-pink);
    box-shadow: 0 0 0 3px rgba(255, 192, 234, 0.1);
}

.filter-group select:hover {
    border-color: var(--medium-rose);
}

/* ===== LAYOUTS ALTERNATIVOS ===== */
.portfolio-grid.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.portfolio-grid.portfolio-carousel {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
}

.portfolio-grid.portfolio-carousel .portfolio-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .advanced-filters {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 0.8rem;
    }
}

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



/* ===== EFEITOS DE HOVER AVANÇADOS ===== */

.masonry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 192, 234, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
    pointer-events: none;
}

.masonry-item:hover::before {
    opacity: 1;
}





/* ===== ACESSIBILIDADE ===== */
.masonry-item:focus {
    outline: 2px solid var(--light-pink);
    outline-offset: 2px;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.masonry-item {
    will-change: transform;
}

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



/* ===== PRINT STYLES ===== */
@media print {
    .masonry-section,
    .advanced-filters {
        display: none !important;
    }
    
    .portfolio-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
    }
} 

/* ===== GALERIA MOBILE ESPECIAL ===== */
.mobile-gallery-section {
    margin-top: 3rem;
    padding: 1rem 0;
    background: linear-gradient(135deg, rgba(255, 192, 234, 0.1), rgba(180, 69, 122, 0.1));
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mobile-gallery-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.mobile-gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1rem;
    padding: 0 1rem;
}

.mobile-gallery-card {
    flex: 0 0 280px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.mobile-gallery-card:hover {
    transform: translateY(-10px) scale(1.05) rotateY(5deg);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 192, 234, 0.3);
}

.mobile-card-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mobile-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-gallery-card:hover .mobile-card-image img {
    transform: scale(1.1);
}

.mobile-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-gallery-card:hover .mobile-card-overlay {
    transform: translateY(0);
}

.mobile-card-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-pink);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mobile-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.mobile-card-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.mobile-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 192, 234, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-gallery-card:hover .mobile-card-glow {
    width: 200px;
    height: 200px;
    opacity: 1;
}

.mobile-card-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.mobile-card-particles::before,
.mobile-card-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 192, 234, 0.8);
    border-radius: 50%;
    animation: mobileParticleFloat 3s ease-in-out infinite;
}

.mobile-card-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.mobile-card-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes mobileParticleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    50% {
        transform: translateY(-20px) scale(1.5);
        opacity: 1;
    }
}

/* ===== INDICADORES DA GALERIA MOBILE ===== */
.mobile-gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0 1rem;
}

.mobile-gallery-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-gallery-indicator.active {
    background: var(--light-pink);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 192, 234, 0.6);
}

.mobile-gallery-indicator::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 192, 234, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-gallery-indicator.active::before {
    opacity: 1;
}

/* ===== CONTROLES DA GALERIA MOBILE ===== */
.mobile-gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 0.5rem;
    pointer-events: none;
}

.mobile-gallery-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-primary);
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-gallery-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-gallery-btn i {
    transition: transform 0.3s ease;
}

.mobile-gallery-btn:hover i {
    transform: scale(1.2);
}

/* ===== ANIMAÇÕES DE ENTRADA ===== */
.mobile-gallery-card {
    animation: mobileCardReveal 0.8s ease-out both;
}

.mobile-gallery-card:nth-child(1) { animation-delay: 0.1s; }
.mobile-gallery-card:nth-child(2) { animation-delay: 0.2s; }
.mobile-gallery-card:nth-child(3) { animation-delay: 0.3s; }
.mobile-gallery-card:nth-child(4) { animation-delay: 0.4s; }
.mobile-gallery-card:nth-child(5) { animation-delay: 0.5s; }
.mobile-gallery-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes mobileCardReveal {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.8) rotateX(15deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

/* ===== RESPONSIVIDADE DA GALERIA MOBILE ===== */
@media (max-width: 480px) {
    .mobile-gallery-card {
        flex: 0 0 260px;
        height: 350px;
    }
    
    .mobile-gallery-track {
        gap: 0.8rem;
        padding: 0 0.8rem;
    }
    
    .mobile-card-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .mobile-card-title {
        font-size: 1rem;
    }
    
    .mobile-gallery-controls {
        padding: 0 0.3rem;
    }
    
    .mobile-gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===== OTIMIZAÇÕES DE TOUCH ===== */
.mobile-gallery-card {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-gallery-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* ===== EFEITO DE PARALLAX ===== */
.mobile-gallery-card {
    transform-style: preserve-3d;
}

.mobile-card-image {
    transform: translateZ(0);
    transition: transform 0.3s ease;
}

.mobile-gallery-card:hover .mobile-card-image {
    transform: translateZ(20px);
}

/* ===== EFEITO DE GLASSMORPHISM ===== */
.mobile-gallery-section {
    background: linear-gradient(135deg, 
        rgba(255, 192, 234, 0.1) 0%, 
        rgba(180, 69, 122, 0.05) 50%, 
        rgba(255, 192, 234, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== MICRO-INTERACTIONS ===== */
.mobile-gallery-indicator {
    position: relative;
    overflow: hidden;
}

.mobile-gallery-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s ease;
}

.mobile-gallery-indicator:hover::after {
    left: 100%;
}

/* ===== EFEITO DE PULSO NOS INDICADORES ATIVOS ===== */
@keyframes mobileIndicatorPulse {
    0%, 100% {
        transform: scale(1.3);
        box-shadow: 0 0 10px rgba(255, 192, 234, 0.6);
    }
    50% {
        transform: scale(1.5);
        box-shadow: 0 0 20px rgba(255, 192, 234, 0.8);
    }
}

.mobile-gallery-indicator.active {
    animation: mobileIndicatorPulse 2s ease-in-out infinite;
} 