/* Reset e Configurações Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais */
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --accent-red: #e63946;
    --accent-gold: #f4a261;
    --text-white: #ffffff;
    --text-gray: #a8a8a8;
    --text-light-gray: #d4d4d4;
    --background-dark: #0f0f0f;
    --background-section: #151515;
    
    /* Tipografia */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Transições */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Sombras */
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-heavy: 0 12px 60px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilitários */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red), #d62828);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 57, 70, 0.5);
    animation: pulse 0.6s ease-in-out;
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(244, 162, 97, 0.3);
}

/* Header/Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-fast);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    height: 40px; /* Reduzido de 50px */
    margin-right: 12px; /* Ajustado */
}

.logo-text {
    text-align: center;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem; /* Reduzido de 1.8rem */
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1; /* Adicionado para compactar */
}

.accent {
    color: var(--accent-red);
}

.logo-subtitle {
    font-size: 0.7rem; /* Reduzido de 0.8rem */
    letter-spacing: 3px;
    color: var(--text-gray);
    margin-top: 2px; /* Aumentado para dar mais espaço */
}

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

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: var(--transition-fast);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        var(--primary-black) 0%, 
        var(--secondary-black) 50%, 
        var(--primary-black) 100%);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1.5" fill="%23ffffff" opacity="0.015"/><circle cx="50" cy="10" r="0.8" fill="%23ffffff" opacity="0.02"/><circle cx="20" cy="80" r="1.2" fill="%23ffffff" opacity="0.01"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    animation: grain 8s steps(8) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -1%); }
    20% { transform: translate(1%, -2%); }
    30% { transform: translate(-1%, 2%); }
    40% { transform: translate(1%, 1%); }
    50% { transform: translate(-2%, -1%); }
    60% { transform: translate(2%, 1%); }
    70% { transform: translate(-1%, -2%); }
    80% { transform: translate(1%, 2%); }
    90% { transform: translate(-2%, -1%); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(230, 57, 70, 0.1) 0%, 
        rgba(0, 0, 0, 0.7) 50%, 
        rgba(244, 162, 97, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7.5vw, 5.5rem); /* Ajustado para um tamanho um pouco menor */
    font-weight: 700;
    line-height: 1.0; /* Restaurado para um valor seguro após corrigir o span */
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-highlight {
    color: var(--accent-red);
    text-shadow: 0 0 30px rgba(230, 57, 70, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light-gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-gray);
    font-size: 1.5rem;
    animation: bounce 2s infinite, float 3s ease-in-out infinite;
    cursor: pointer;
    transition: var(--transition-fast);
}

.scroll-indicator:hover {
    color: var(--accent-red);
    transform: translateX(-50%) scale(1.2);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem); /* Reduzido para caber em uma linha */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* Reduzido de 80px */
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 900px; /* Aumentado para manter o texto em uma única linha */
    margin: 0 auto;
}

/* Main Gallery Section */
.main-gallery {
    padding: 4rem 0; /* Espaçamento vertical reduzido */
    background: var(--background-section);
    position: relative;
}

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

.filter-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem 1.5rem; /* Padding vertical reduzido para diminuir a altura */
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition-medium);
    min-width: 100px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    transform: translateY(-3px);
    border-color: var(--accent-red);
    background: rgba(230, 57, 70, 0.1);
    color: var(--text-white);
}

.filter-btn.active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

.filter-icon {
    font-size: 1.8rem;
    margin-bottom: 0.25rem; /* Margem inferior reduzida para aproximar o ícone do texto */
}

.filter-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    color: var(--text-light-gray); /* Cor mais clara para melhor leitura */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); /* Sombra sutil para profundidade */
}

.filter-count {
    font-size: 0.8rem;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: 500;
}

.gallery-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
}

.search-box input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: var(--text-white);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent-red);
    background: rgba(255, 255, 255, 0.15);
}

.search-box input::placeholder {
    color: var(--text-gray);
}

.clear-search {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0.25rem;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--text-gray);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn.active,
.view-btn:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    background: rgba(230, 57, 70, 0.1);
}

.main-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.main-gallery-grid.masonry {
    columns: 3;
    column-gap: 2rem;
}

.main-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-medium);
    background: var(--secondary-black);
    aspect-ratio: 4/3;
}

.main-gallery-grid.masonry .main-gallery-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    aspect-ratio: unset;
}

.main-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.main-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.main-gallery-item:hover img {
    transform: scale(1.05);
}

.main-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.main-gallery-item:hover .main-gallery-overlay {
    opacity: 1;
}

.main-gallery-info {
    color: var(--text-white);
}

.main-gallery-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-gallery-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.main-gallery-category {
    background: var(--accent-red);
    color: var(--text-white);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.main-gallery-date {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.main-gallery-description {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* Portfolio Section - Keep for compatibility */
.portfolio {
    padding: 6rem 0;
    background: var(--background-section);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25px 25px, rgba(255, 255, 255, 0.02) 2%, transparent 0%),
        radial-gradient(circle at 75px 75px, rgba(255, 255, 255, 0.02) 2%, transparent 0%);
    background-size: 100px 100px;
    opacity: 0.3;
    pointer-events: none;
}

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

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--text-gray);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-red);
    color: var(--text-white);
    border-color: var(--accent-red);
    transform: translateY(-2px);
}

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

.portfolio-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-gold));
    transition: var(--transition-medium);
    /* Efeito Polaroid */
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 0 0 8px rgba(255, 255, 255, 0.03),
        inset 0 0 0 9px rgba(0, 0, 0, 0.1);
    border: 8px solid rgba(255, 255, 255, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    transition: var(--transition-fast);
}

.portfolio-item:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 3;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transform: translateY(100%);
    transition: var(--transition-medium);
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.portfolio-category {
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.portfolio-icon {
    font-size: 4rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--background-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Mantém a proporção das colunas */
    grid-template-areas:
        "text image"
        "details details"; /* Nova área para os detalhes */
    gap: 4rem;
    align-items: center;
}

.about-text {
    grid-area: text; /* Associa ao grid area 'text' */
}

.about-image {
    grid-area: image; /* Associa ao grid area 'image' */
}

.about-details {
    grid-area: details; /* Associa ao grid area 'details' */
    display: grid; /* Transforma os detalhes em um grid também */
    grid-template-columns: repeat(3, 1fr); /* Força 3 colunas para ficarem na mesma linha */
    gap: 1.5rem;
    margin-top: 2rem; /* Adiciona um espaço acima dos detalhes */
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text .section-title::after {
    left: 0;
    transform: none;
}

.about-specialization {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lead {
    font-size: 1.3rem;
    color: var(--text-light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-mission {
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-style: italic;
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-red);
    background: rgba(244, 162, 97, 0.1);
    border-radius: 8px;
    position: relative;
}

.about-mission::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-red);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
    opacity: 0.5;
}

.about-secondary-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.about-mission-block {
    margin-top: 1rem; /* Reduzido para aproximar do texto acima */
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent-red);
    border-radius: 8px;
}

.about-mission-block h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-mission-block p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--accent-red);
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-top: 0.2rem;
}

.detail-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.detail-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.photographer-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.photographer-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-gold));
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-white);
}

.photographer-photo::before {
    content: '📸';
}

.photographer-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.photographer-info p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition-fast);
}

.social-links a.social-instagram:hover, .footer-social a.social-instagram:hover {
    background: #E1306C; /* Cor do Instagram */
}

.social-links a.social-facebook:hover, .footer-social a.social-facebook:hover {
    background: #1877F2; /* Cor do Facebook */
}

.social-links a.social-linkedin:hover, .footer-social a.social-linkedin:hover {
    background: #0A66C2; /* Cor do LinkedIn */
}

.footer-social a.social-youtube:hover {
    background: #FF0000; /* Cor do YouTube */
}

.social-links a:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
}

/* Supporters Section */
.supporters {
    padding: 2.5rem 0; /* Espaçamento vertical reduzido */
    background: var(--background-section);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 200px); /* Restaurado para o tamanho original */
    justify-content: center; /* Centraliza o conjunto de apoiadores na página */
    gap: 2.5rem; /* Aumentado o espaçamento entre os logos */
    margin-top: 3rem;
}

.supporter-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 15px;
    padding: 0; /* Removido padding para a imagem ocupar todo o espaço */
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    height: 100px; /* Restaurado para a altura original */
    cursor: pointer; /* Adicionado cursor de ponteiro para todos */
}

.supporter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 162, 97, 0.1), transparent);
    transition: var(--transition-medium);
}

.supporter-item:hover::before {
    left: 100%;
}

.supporter-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(244, 162, 97, 0.2);
}

.supporter-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centraliza o ícone de fallback */
    width: 100%;
    height: 100%;
}

.supporter-logo i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--background-dark);
}

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

.contact-info .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-info .section-title::after {
    left: 0;
    transform: none;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-light-gray);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--accent-red);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    min-width: 30px;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

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

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light-gray);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-body);
    transition: var(--transition-fast);
    font-size: 1rem;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--primary-black);
    color: var(--text-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

/* Checkbox customizado */
.checkbox-label {
    display: flex !important;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light-gray);
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: var(--transition-fast);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-white);
    font-weight: bold;
    font-size: 12px;
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
    justify-items: center;
    text-align: center;
}

.footer-logo .logo-link {
    justify-content: center; /* Garante o alinhamento no centro da célula do grid */
}

.footer-logo .logo-image {
    height: 35px; /* Tamanho um pouco menor para o rodapé */
}

.footer-logo .logo-text h1 {
    font-size: 1.3rem; /* Tamanho da fonte um pouco menor */
}

.footer-logo .logo-text .logo-subtitle {
    font-size: 0.6rem; /* Tamanho da fonte um pouco menor */
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-red);
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-bottom .developed-by {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.footer-bottom .developed-by a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.footer-bottom .developed-by a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--accent-red);
}

#lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 10px;
}

.lightbox-info {
    margin-top: 1rem;
    color: var(--text-white);
}

.lightbox-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

/* Animações de entrada */
.animate-on-scroll {
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }
.animate-delay-3 { animation-delay: 0.6s; }

/* Lazy loading de imagens */
img.lazy {
    opacity: 0;
    transition: opacity 0.6s ease;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

img.loaded {
    opacity: 1;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Otimizações de performance */
* {
    will-change: auto;
}

.portfolio-item,
.btn,
.stat,
.detail-item {
    will-change: transform;
}

/* Redução de motion para acessibilidade */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition-fast);
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .stat {
        padding: 1rem;
        min-width: 120px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr; /* Coluna única em telas menores */
        grid-template-areas: /* Reorganiza as áreas para empilhar */
            "image"
            "text"
            "details";
        gap: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 2.9rem; /* Ajustado */
        line-height: 1.0; /* Restaurado para um valor seguro */
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .about-details {
        grid-template-columns: 1fr; /* Faz os itens empilharem em telas menores */
    }

    .detail-item {
        padding: 1rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

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

    .nav-container {
        padding: 1rem 15px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 2.4rem; /* Ajustado */
        line-height: 1.0; /* Restaurado para um valor seguro */
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat {
        padding: 1rem;
        margin: 0 auto;
        max-width: 200px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-text .lead {
        font-size: 1.1rem;
    }

    .detail-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .detail-item i {
        margin-top: 0;
    }

    .photographer-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
    }

    .lightbox-content {
        max-width: 95%;
        padding: 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }
}

/* Melhorias adicionais para dispositivos muito pequenos */
@media (max-width: 360px) {
    .hero-title {
        font-size: 2rem; /* Mantido o tamanho para telas muito pequenas */
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        font-size: 12px;
        padding: 12px 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .portfolio-item {
        min-height: 250px;
    }
}