* {
    font-family: 'Raleway', sans-serif;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.content-wrapper {
    width: 100%;
    margin: 0 auto;
}

body.user-profile-page {
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

/* Container principal responsivo */
.container {
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Ajustar grid de álbuns */
@media (max-width: 768px) {
    .albums-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 10px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .albums-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 5px;
    }
}

/* Ajustar hero section */
@media (max-width: 768px) {
    .photographer-hero {
        min-height: 50vh;
    }
    
    .hero-content {
        padding: 40px 15px;
    }
    
    .photographer-profile {
        padding: 20px 15px;
        margin: 0 10px;
        width: calc(100% - 20px);
    }
}

/* Ajustar about section */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .about-photo-container {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Ajustar portfolio highlights */
@media (max-width: 992px) {
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .highlight-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .highlight-card {
        max-width: 100%;
    }
}

/* Ajustar contact section */
@media (max-width: 768px) {
    .contact-options {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }
    
    .contact-option {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 15px;
    }
}

/* Ajustar header */
@media (max-width: 768px) {
    .header-container {
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .main-nav.active {
        width: 100vw;
        left: 0;
        right: 0;
        padding: 15px;
        box-sizing: border-box;
    }
}

/* Ajustar search section */
@media (max-width: 768px) {
    .search-container {
        padding: 15px;
        margin: 0 auto;
        width: 100%;
    }
    
    .search-input-group {
        flex-direction: column;
    }
    
    .search-input {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Garantir que imagens sejam responsivas */
img {
    max-width: 100%;
    height: auto;
}

/* Ajustar estatísticas */
@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
}

/* Adicione também ao user-header.css */

@media (max-width: 768px) {
    .user-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100vw;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .header-container {
        width: 100%;
        max-width: 100vw;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .logo-text {
        max-width: calc(100vw - 100px);
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Prevenir scroll horizontal */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}
.photographer-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: none !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 80px 20px;
}

.photographer-profile {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.photographer-logo {
    margin-bottom: 30px;
}

.logo-image {
    max-width: 300px;
    height: auto;
    border-radius: 10%;
}

.photographer-name {
    font-size: 2.5rem;
    font-weight: 100;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.photographer-specialties {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.specialties-label {
    opacity: 0.9;
}

.specialties-text {
    font-weight: 400;
}

.photographer-location {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.experience-badge {
    background: rgba(66, 153, 225, 0.9);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.about-section {
    padding: 100px 0;
    background: #f8fafc;
}

body.user-profile-page {
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

/* Container principal responsivo */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.about-left {
    flex: 1;
}

.about-right {
    flex-shrink: 0;
    max-width: 400px;
    margin-left: auto;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 100;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

/* IMAGEM SOBRE MIM 4:3 VERTICAL */
.about-photo-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-photo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    aspect-ratio: 3/4; /* 3:4 vertical */
    object-fit: cover;
    object-position: center;
}

.about-photo-placeholder {
    background: linear-gradient(135deg, #f8fafc 0%, #ecf0f1 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px dashed #cbd5e0;
    aspect-ratio: 3/4; /* 3:4 vertical */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #718096;
}

.about-photo-placeholder .placeholder-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

.about-photo-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.about-photo-placeholder small {
    font-size: 0.9rem;
    opacity: 0.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 100;
    color: #4299e1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 300;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #4299e1;
}

.stat-detail {
    font-size: 1rem;
    color: #4a5568;
    margin-top: 10px;
}

.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 100;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: #f8fafc;
    border-radius: 15px;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-option:hover {
    background: #4299e1;
    color: white;
    transform: translateY(-5px);
    border-color: #4299e1;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.social-links {
    text-align: center;
    margin-top: 60px;
}

.social-links h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 300;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon.instagram {
    background: linear-gradient(135deg, #E4405F, #833AB4);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877F2, #0A5BC4);
}

.social-icon.twitter {
    background: linear-gradient(135deg, #1DA1F2, #0C7ABF);
}

.social-icon.linkedin {
    background: linear-gradient(135deg, #0077B5, #005582);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.portfolio-section {
    padding: 100px 0;
    background: #f8fafc;
}

.portfolio-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-section .section-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 100;
}

.portfolio-section .section-header p {
    font-size: 1.3rem;
    color: #718096;
    font-weight: 300;
}

.search-section {
    margin-bottom: 50px;
    text-align: center;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 30px;
    padding: 30px;
}

.search-form {
    width: 100%;
}

.search-input-group {
    display: flex;
    position: relative;
    background: white;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    border-color: #4299e1;
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.2);
    transform: translateY(-2px);
}

.search-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 400;
    background: transparent;
    color: #2d3748;
}

.search-input::placeholder {
    color: #a0aec0;
    font-weight: 300;
}

.search-button {
    padding: 18px 30px;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.search-button:hover {
    background: linear-gradient(135deg, #3182ce, #2c5aa0);
    transform: translateX(2px);
}

.search-icon {
    font-size: 1.1rem;
}

.clear-search {
    position: absolute;
    right: 130px;
    top: 50%;
    transform: translateY(-50%);
    background: #e2e8f0;
    color: #718096;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.clear-search:hover {
    background: #4299e1;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.search-results-info {
    background: linear-gradient(135deg, #edf2f7, #e2e8f0);
    padding: 20px 30px;
    border-radius: 15px;
    border-left: 4px solid #4299e1;
    margin-bottom: 20px;
}

.search-results-info p {
    margin: 0;
    color: #4a5568;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.show-all-link {
    color: #4299e1;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid #4299e1;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.show-all-link:hover {
    background: #4299e1;
    color: white;
    transform: translateY(-2px);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 50px 0 20px;
    flex-wrap: wrap;
}

.page-link {
    padding: 12px 18px;
    background: white;
    color: #4a5568;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    font-size: 0.95rem;
    min-width: 44px;
    text-align: center;
}

.page-link:hover {
    background: #4299e1;
    color: white;
    border-color: #4299e1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.3);
}

.page-link.active {
    background: #4299e1;
    color: white;
    border-color: #4299e1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.3);
}

.page-link.prev,
.page-link.next {
    background: linear-gradient(135deg, #edf2f7, #e2e8f0);
    font-weight: 700;
    padding: 12px 20px;
}

.page-link.prev:hover,
.page-link.next:hover {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
}

.pagination-info {
    text-align: center;
    margin-bottom: 30px;
}

.pagination-info p {
    color: #718096;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.pagination-info strong {
    color: #4a5568;
}

.albums-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 300;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.legend-color.public {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.legend-color.private {
    background: linear-gradient(135deg, #e67e22, #f39c12);
}

/* ÁLBUNS EM LINHAS DE 4 */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas fixas */
    gap: 30px;
    margin: 0 auto;
}

.album-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.album-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.08);
}

.album-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.album-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #ecf0f1 100%);
    border-radius: 20px;
}

.album-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
}

.album-card:hover .album-cover {
    transform: scale(1.12);
}

.album-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
}

.placeholder-icon {
    font-size: 3.8rem;
    color: white;
    opacity: 0.8;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.05) 20%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: white;
    opacity: 1;
    transition: all 0.5s ease;
    text-align: center;
}

.album-card:hover .album-overlay {
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.1) 30%,
        rgba(0, 0, 0, 0.98) 100%);
}

.album-content {
    transform: translateY(15px);
    transition: transform 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.album-card:hover .album-content {
    transform: translateY(0);
}

.album-title-overlay {
    margin-bottom: 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.album-title-overlay h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
    letter-spacing: 0.5px;
    width: 100%;
}

.album-badge-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 5px;
}

.private-badge {
    background: rgba(230, 126, 34, 0.2);
    color: #fdebd0;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(241, 196, 15, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    display: inline-block;
    text-align: center;
}

.public-badge {
    background: rgba(39, 174, 96, 0.2);
    color: #d5f4e6;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(46, 204, 113, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    display: inline-block;
    text-align: center;
}

.album-info-overlay {
    opacity: 0.9;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 8px;
}

.album-description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
    letter-spacing: 0.3px;
    max-width: 90%;
}

.album-private {
    border-left: 4px solid #e67e22;
}

.album-public {
    border-left: 4px solid #27ae60;
}

.empty-state {
    text-align: center;
    padding: 120px 50px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    margin: 50px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.empty-icon {
    font-size: 6.5rem;
    margin-bottom: 35px;
    opacity: 0.5;
}

.empty-state h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-weight: 100;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.empty-state p {
    color: #7f8c8d;
    font-size: 1.3rem;
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.5px;
}

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

.album-card:nth-child(1) { animation-delay: 0.1s; }
.album-card:nth-child(2) { animation-delay: 0.2s; }
.album-card:nth-child(3) { animation-delay: 0.3s; }
.album-card:nth-child(4) { animation-delay: 0.4s; }
.album-card:nth-child(5) { animation-delay: 0.5s; }
.album-card:nth-child(6) { animation-delay: 0.6s; }
.album-card:nth-child(7) { animation-delay: 0.7s; }
.album-card:nth-child(8) { animation-delay: 0.8s; }

@media (max-width: 1400px) {
    .albums-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas em telas médias */
        gap: 25px;
    }
}

@media (max-width: 1200px) {
    .albums-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .container {
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .photographer-name {
        font-size: 2.8rem;
    }
    
    .albums-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
        gap: 20px;
    }
    
    .album-overlay {
        padding: 20px;
    }
    
    .album-title-overlay h3 {
        font-size: 1rem;
    }
    
    .about-right {
        max-width: 100%;
        margin: 0 auto;
        order: -1;
    }
    
    .about-photo-placeholder {
        height: auto;
    }
}

@media (max-width: 768px) {
    .photographer-hero {
        min-height: 60vh;
    }
    
    .photographer-name {
        font-size: 2.2rem;
    }
    
    .photographer-profile {
        padding: 30px 20px;
    }
    
    .about-section,
    .contact-section,
    .portfolio-section {
        padding: 60px 0;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-option {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
    
    .social-icons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-icon {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .albums-grid {
        grid-template-columns: 1fr; /* 1 coluna em mobile */
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .search-input-group {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .search-input {
        padding: 15px 20px;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .search-button {
        padding: 15px 20px;
        justify-content: center;
    }
    
    .clear-search {
        right: 20px;
        top: 55px;
        transform: translateY(0);
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .photographer-name {
        font-size: 1.8rem;
    }
    
    .photographer-specialties {
        font-size: 1.1rem;
    }
    
    .photographer-location {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo-image {
        max-width: 150px;
    }
    
    .album-overlay {
        padding: 15px;
    }
    
    .album-title-overlay h3 {
        font-size: 0.95rem;
    }
    
    .private-badge,
    .public-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    .about-photo-container {
        max-width: 300px;
    }
    
    .about-photo-placeholder {
        padding: 30px;
    }
}

.portfolio-highlights {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.portfolio-highlights .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-highlights .section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.portfolio-highlights .section-header p {
    font-size: 1.2rem;
    color: #718096;
    font-weight: 300;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.highlight-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.highlight-image {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 15px;
}

.highlight-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.highlight-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4299e1, #667eea);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 3rem;
    color: white;
    opacity: 0.8;
}

.highlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 20px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-overlay {
    transform: translateY(0);
    opacity: 1;
}

.highlight-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.highlight-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(66, 153, 225, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(66, 153, 225, 0.4);
    background: linear-gradient(135deg, #3182ce, #2c5aa0);
}

.arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.view-all-btn:hover .arrow {
    transform: translateX(5px);
}

/* Store Preview Section */
.store-preview-section {
    padding: 100px 0;
    background: white;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.store-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.store-preview-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.store-preview-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 30px;
}

.store-features {
    margin-bottom: 40px;
}

.store-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #4a5568;
}

.feature-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: #edf2f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.3);
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(39, 174, 96, 0.4);
    background: linear-gradient(135deg, #219653, #27ae60);
}

.btn-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.store-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.store-preview-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #edf2f7, #e2e8f0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px dashed #cbd5e0;
}

.image-placeholder .placeholder-icon {
    font-size: 4rem;
    color: #718096;
}

/* Responsividade */
@media (max-width: 992px) {
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .store-preview {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .store-features {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .portfolio-highlights {
        padding: 60px 0 30px;
    }
    
    .portfolio-highlights .section-header h2 {
        font-size: 2rem;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 30px;
    }
    
    .store-preview-section {
        padding: 60px 0;
    }
    
    .store-preview-content h2 {
        font-size: 2rem;
    }
    
    .store-btn, .view-all-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }