/* ===========================================
   HOME.CSS - Página Fotografias
   Alcimar Vilela
   =========================================== */

/* Hero Home */
.home-hero {
    position: relative;
    height: calc(100vh - 60px);
    min-height: 600px;
}

.home-hero .hero-bg {
    filter: brightness(0.8);
    object-position: center 30%;
}

.home-hero .hero-content {
    max-width: 800px;
}

.home-hero .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Hero Títulos */
.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 0;
    line-height: 1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    margin-top: 10px;
    opacity: 0.9;
}

/* Hero Social Icons */
.hero-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.hero-share-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-right: 10px;
}

.hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.hero-social-link:hover {
    background: #00bf63;
    border-color: #00bf63;
    transform: translateY(-3px);
}

.hero-social-link svg {
    width: 20px;
    height: 20px;
}

/* Home Scroll Indicator */
.home-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    opacity: 0.8;
    animation: float 2s ease-in-out infinite;
    pointer-events: none;
}

.home-scroll-indicator span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.home-scroll-indicator svg {
    width: 24px;
    height: 24px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* CTA WhatsApp Novo Estilo */
.cta-whatsapp-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #00bf63;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,191,99,0.3);
}

.cta-whatsapp-new:hover {
    background: #00a854;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,191,99,0.4);
}

.cta-whatsapp-new svg {
    width: 20px;
    height: 20px;
}

/* Seção Portfólio */
.portfolio-section {
    padding: 100px 0;
    background-color: #fff;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.portfolio-category {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.portfolio-category img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-category:hover img {
    transform: scale(1.05);
}

.portfolio-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}

.portfolio-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Seção Categorias */
.categories-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    position: relative;
}

.categories-section > .container {
    position: relative;
    z-index: 1;
}

/* ===========================================
   SEÇÃO CASAMENTO - Layout Original Canva
   =========================================== */
.casamento-section {
    position: relative;
    background: #fff url('../images/b8adf4894db3d2fe1f780a10c9572a25.png') center/cover no-repeat;
    padding: 50px 0 80px;
    overflow: hidden;
}

.casamento-container {
    position: relative;
    z-index: 1;
}

/* Header */
.casamento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

/* Galeria escalonada */
.casamento-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.casamento-photo {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    cursor: pointer;
}

.casamento-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,191,99,0.3) 0%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.casamento-photo:hover::after {
    opacity: 1;
}

.casamento-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.casamento-photo:hover img {
    transform: scale(1.08);
}

/* Fotos escalonadas - tamanhos Canva (vertical: 316x475) */
.casamento-photo.photo-1 {
    width: clamp(200px, 22vw, 316px);
    height: clamp(300px, 33vw, 475px);
    margin-top: clamp(50px, 6vw, 80px);
}

.casamento-photo.photo-2 {
    width: clamp(200px, 22vw, 316px);
    height: clamp(300px, 33vw, 475px);
    margin-top: 0;
}

.casamento-photo.photo-3 {
    width: clamp(200px, 22vw, 316px);
    height: clamp(300px, 33vw, 475px);
    margin-top: clamp(50px, 6vw, 80px);
}

.casamento-photo.photo-4 {
    width: clamp(200px, 22vw, 316px);
    height: clamp(300px, 33vw, 475px);
    margin-top: 0;
}

/* CTA */
.casamento-cta {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

/* Responsivo Casamento */
@media (max-width: 992px) {
    .casamento-gallery {
        gap: 15px;
    }
    
    .casamento-photo.photo-1,
    .casamento-photo.photo-2,
    .casamento-photo.photo-3,
    .casamento-photo.photo-4 {
        width: 22%;
        height: 280px;
    }
    
    .casamento-photo.photo-1,
    .casamento-photo.photo-3 {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .casamento-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .casamento-gallery {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .casamento-photo.photo-1,
    .casamento-photo.photo-2,
    .casamento-photo.photo-3,
    .casamento-photo.photo-4 {
        width: 45%;
        height: 250px;
        margin-top: 0;
    }
    
    .casamento-cta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .casamento-section {
        padding: 30px 0 50px;
    }
    
    .casamento-photo.photo-1,
    .casamento-photo.photo-2,
    .casamento-photo.photo-3,
    .casamento-photo.photo-4 {
        width: 100%;
        height: 280px;
    }
}

/* ===========================================
   SEÇÃO ENSAIO 15 ANOS - Layout Canva com Sobreposição
   =========================================== */
.quinze-anos-section {
    position: relative;
    background-color: #fff;
    padding: 50px 0 80px;
    overflow: hidden;
}

/* Fundo com textura */
.quinze-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/d4e1157f4b88edac66a3ab140153e5fd.png') center/cover no-repeat;
    z-index: 0;
}

/* Overlay curvo inferior */
.quinze-overlay-bottom {
    display: none;
}

.quinze-container {
    position: relative;
    z-index: 2;
}

/* Header */
.quinze-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* Wrapper da galeria com posicionamento relativo */
.quinze-gallery-wrapper {
    position: relative;
    width: 100%;
    height: clamp(450px, 50vw, 650px);
    margin-top: 20px;
}

/* Estilos base das fotos */
.quinze-photo {
    position: absolute;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    cursor: pointer;
}

.quinze-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,191,99,0.3) 0%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quinze-photo:hover::after {
    opacity: 1;
}

.quinze-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quinze-photo:hover {
    z-index: 10;
}

.quinze-photo:hover img {
    transform: scale(1.08);
}

/* Foto 1 - horizontal, superior esquerda (429x286) */
.quinze-photo.photo-1 {
    width: clamp(280px, 27vw, 429px);
    height: clamp(187px, 18vw, 286px);
    top: 0;
    left: 10%;
    z-index: 2;
}

/* Foto 2 - vertical, centro superior (316x422) */
.quinze-photo.photo-2 {
    width: clamp(200px, 20vw, 316px);
    height: clamp(270px, 27vw, 422px);
    top: 0;
    left: 42%;
    z-index: 3;
}

/* Foto 3 - vertical, direita (316x475) - sobrepõe levemente a foto 2 */
.quinze-photo.photo-3 {
    width: clamp(200px, 20vw, 316px);
    height: clamp(300px, 30vw, 475px);
    top: 8%;
    right: 18%;
    z-index: 4;
}

/* Foto 4 - horizontal grande, inferior esquerda (701x320) */
.quinze-photo.photo-4 {
    width: clamp(350px, 44vw, 701px);
    height: clamp(200px, 20vw, 320px);
    bottom: 25px;
    left: -2%;
    z-index: 4;
}

/* CTA */
.quinze-cta {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    position: relative;
    z-index: 5;
}

/* Responsivo 15 Anos */
@media (max-width: 1200px) {
    .quinze-gallery-wrapper {
        height: clamp(400px, 55vw, 550px);
    }
    
    .quinze-photo.photo-1 {
        left: 5%;
    }
    
    .quinze-photo.photo-3 {
        right: 5%;
    }
    
    .quinze-photo.photo-4 {
        left: 2%;
    }
}

@media (max-width: 992px) {
    .quinze-gallery-wrapper {
        height: auto;
        min-height: 500px;
    }
    
    .quinze-photo.photo-1 {
        width: 45%;
        height: auto;
        aspect-ratio: 429/286;
        left: 2%;
    }
    
    .quinze-photo.photo-2 {
        width: 30%;
        height: auto;
        aspect-ratio: 316/422;
        left: auto;
        right: 35%;
    }
    
    .quinze-photo.photo-3 {
        width: 30%;
        height: auto;
        aspect-ratio: 316/475;
        right: 2%;
    }
    
    .quinze-photo.photo-4 {
        width: 55%;
        height: auto;
        aspect-ratio: 701/320;
        bottom: -20px;
        left: 2%;
    }
}

@media (max-width: 768px) {
    .quinze-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .quinze-gallery-wrapper {
        position: relative;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .quinze-photo {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .quinze-photo.photo-1,
    .quinze-photo.photo-4 {
        width: 100%;
        height: 200px;
    }
    
    .quinze-photo.photo-2,
    .quinze-photo.photo-3 {
        width: 47%;
        height: 280px;
    }
    
    .quinze-cta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .quinze-anos-section {
        padding: 30px 0 50px;
    }
    
    .quinze-photo.photo-1,
    .quinze-photo.photo-2,
    .quinze-photo.photo-3,
    .quinze-photo.photo-4 {
        width: 100%;
        height: 220px;
    }
}

/* ===========================================
   SEÇÃO ANIVERSÁRIO INFANTIL - Layout Canva
   =========================================== */
.infantil-section {
    position: relative;
    background-color: #fff;
    padding: 50px 0 80px;
    overflow: hidden;
}

/* Fundo com textura */
.infantil-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/b813c3ca1b2d3e55b428f9384fb472f7.png') center/cover no-repeat;
    z-index: 0;
    opacity: 1.1;
}

/* Overlay curvo inferior */
.infantil-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 55%;
    background: url('../images/0a64a765a09ba626d4e737c6663a59c9.png') center bottom/100% auto no-repeat;
    z-index: 1;
    opacity: 0.5;
}

.infantil-container {
    position: relative;
    z-index: 2;
}

/* Header */
.infantil-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* Galeria 4 colunas */
.infantil-gallery-wrapper {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 20px 0;
}

.infantil-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.infantil-photo {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    cursor: pointer;
}

.infantil-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,191,99,0.3) 0%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.infantil-photo:hover::after {
    opacity: 1;
}

.infantil-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.infantil-photo:hover img {
    transform: scale(1.08);
}

/* Foto horizontal (336x224 no Canva) */
.infantil-photo.photo-horizontal {
    width: clamp(200px, 21vw, 336px);
    height: clamp(140px, 14vw, 224px);
}

/* Foto vertical alta (316x448 no Canva) */
.infantil-photo.photo-vertical {
    width: clamp(200px, 20vw, 316px);
    height: clamp(280px, 28vw, 448px);
}

/* CTA */
.infantil-cta {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

/* Responsivo Infantil */
@media (max-width: 1200px) {
    .infantil-photo.photo-horizontal {
        width: clamp(180px, 20vw, 280px);
        height: clamp(120px, 13vw, 190px);
    }
    
    .infantil-photo.photo-vertical {
        width: clamp(180px, 19vw, 280px);
        height: clamp(250px, 26vw, 400px);
    }
}

@media (max-width: 992px) {
    .infantil-gallery-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .infantil-column {
        flex-direction: row;
        width: 48%;
    }
    
    .infantil-photo.photo-horizontal,
    .infantil-photo.photo-vertical {
        width: 48%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .infantil-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .infantil-gallery-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .infantil-column {
        width: 100%;
        justify-content: center;
    }
    
    .infantil-photo.photo-horizontal,
    .infantil-photo.photo-vertical {
        width: 47%;
        height: 180px;
    }
    
    .infantil-cta {
        justify-content: center;
    }
    
    .infantil-overlay-bottom {
        display: none;
    }
}

@media (max-width: 480px) {
    .infantil-section {
        padding: 30px 0 50px;
    }
    
    .infantil-column {
        flex-direction: column;
    }
    
    .infantil-photo.photo-horizontal,
    .infantil-photo.photo-vertical {
        width: 100%;
        height: 220px;
    }
}

/* ===========================================
   SEÇÃO POSICIONAMENTO DE IMAGEM - Layout Canva
   =========================================== */
.posicionamento-section {
    position: relative;
    background-color: #fff;
    padding: 50px 0 80px;
    overflow: hidden;
}

/* Fundo com textura clara */
.posicionamento-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/8be324d15198c1732dad475c5609b8c9.png') center/cover no-repeat;
    z-index: 0;
}

/* Faixa escura cobrindo todo o fundo */
.posicionamento-overlay-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 100%;
    background: url('../images/746d77ec8a36f4f75bff6d7d83b054ea.png') center/cover no-repeat;
    z-index: 0;
    opacity: 0.5;
}

.posicionamento-container {
    position: relative;
    z-index: 2;
}

/* Header */
.posicionamento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

/* Galeria - 3 fotos verticais grudadas */
.posicionamento-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 20px 0;
}

.posicionamento-photo {
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
}

.posicionamento-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,191,99,0.3) 0%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.posicionamento-photo:hover::after {
    opacity: 1;
}

.posicionamento-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.posicionamento-photo:hover img {
    transform: scale(1.08);
}

/* Foto vertical (338x508 no Canva) */
.posicionamento-photo.photo-vertical {
    width: clamp(220px, 22vw, 338px);
    height: clamp(330px, 33vw, 508px);
}

/* CTA */
.posicionamento-cta {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

/* Responsivo Posicionamento */
@media (max-width: 992px) {
    .posicionamento-photo.photo-vertical {
        width: clamp(160px, 28vw, 250px);
        height: clamp(240px, 42vw, 375px);
    }
}

@media (max-width: 768px) {
    .posicionamento-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .posicionamento-gallery {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .posicionamento-photo.photo-vertical {
        width: 45%;
        height: 280px;
    }
    
    .posicionamento-cta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .posicionamento-section {
        padding: 30px 0 50px;
    }
    
    .posicionamento-photo.photo-vertical {
        width: 100%;
        height: 300px;
    }
}

/* ===========================================
   SEÇÃO EVENTOS CORPORATIVOS - Layout Canva
   =========================================== */
.corporativos-section {
    position: relative;
    background-color: #fff;
    padding: 50px 0 80px;
    overflow: hidden;
}

/* Fundo com textura clara */
.corporativos-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/fab70ca5d39f1adfeb063ccf9d483d90.png') center/cover no-repeat;
    z-index: 0;
}

/* Faixa escura cobrindo todo o fundo */
.corporativos-overlay-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 100%;
    background: url('../images/746d77ec8a36f4f75bff6d7d83b054ea.png') center/cover no-repeat;
    z-index: 0;
    opacity: 0.3;
}

.corporativos-container {
    position: relative;
    z-index: 2;
}

/* Header */
.corporativos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

/* Galeria 3x2 */
.corporativos-gallery {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 20px 0;
}

.corporativos-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.corporativos-photo {
    overflow: hidden;
    width: clamp(220px, 23vw, 356px);
    height: clamp(150px, 15vw, 237px);
    position: relative;
    cursor: pointer;
}

.corporativos-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,191,99,0.3) 0%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.corporativos-photo:hover::after {
    opacity: 1;
}

.corporativos-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.corporativos-photo:hover img {
    transform: scale(1.08);
}

/* CTA */
.corporativos-cta {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

/* Responsivo Corporativos */
@media (max-width: 992px) {
    .corporativos-photo {
        width: clamp(180px, 30vw, 280px);
        height: clamp(120px, 20vw, 190px);
    }
}

@media (max-width: 768px) {
    .corporativos-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .corporativos-gallery {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .corporativos-column {
        flex-direction: row;
    }
    
    .corporativos-photo {
        width: 45%;
        height: 150px;
    }
    
    .corporativos-cta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .corporativos-section {
        padding: 30px 0 50px;
    }
    
    .corporativos-photo {
        width: 100%;
        height: 180px;
    }
}

/* ===========================================
   SEÇÃO FOTOS DE MARKETING DIGITAL - Layout Canva
   =========================================== */
.marketing-section {
    position: relative;
    background-color: #fff;
    padding: 50px 0 80px;
    overflow: hidden;
}

/* Fundo com textura clara */
.marketing-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/68348d75b0c51ede8bd8c89234393fe1.png') center/cover no-repeat;
    z-index: 1;
}

/* Faixa escura cobrindo todo o fundo */
.marketing-overlay-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 100%;
    background: url('../images/0a64a765a09ba626d4e737c6663a59c9.png') center/cover no-repeat;
    z-index: 0;
    opacity: 0.3;
}

.marketing-container {
    position: relative;
    z-index: 2;
}

/* Header */
.marketing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

/* Galeria escalonada */
.marketing-gallery {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 20px 0;
    min-height: 550px;
}

.marketing-photo {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.marketing-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,191,99,0.3) 0%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.marketing-photo:hover::after {
    opacity: 1;
}

.marketing-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.marketing-photo:hover img {
    transform: scale(1.08);
}

/* Foto 1 - horizontal (344x229) - posição média-alta */
.marketing-photo.photo-1 {
    width: clamp(220px, 22vw, 344px);
    height: clamp(150px, 15vw, 229px);
    margin-top: 50px;
    margin-right: -30px;
    z-index: 1;
}

/* Foto 2 - vertical média (282x423) - posição mais baixa */
.marketing-photo.photo-2 {
    width: clamp(180px, 18vw, 282px);
    height: clamp(270px, 27vw, 423px);
    margin-top: 130px;
    margin-right: -25px;
    z-index: 2;
}

/* Foto 3 - vertical alta (316x475) - posição mais alta */
.marketing-photo.photo-3 {
    width: clamp(200px, 20vw, 316px);
    height: clamp(310px, 31vw, 475px);
    margin-top: 0;
    margin-right: -20px;
    z-index: 3;
}

/* Foto 4 - vertical média (251x377) - posição mais baixa */
.marketing-photo.photo-4 {
    width: clamp(160px, 16vw, 251px);
    height: clamp(240px, 24vw, 377px);
    margin-top: 200px;
    z-index: 4;
}

/* CTA */
.marketing-cta {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

/* Responsivo Marketing */
@media (max-width: 992px) {
    .marketing-gallery {
        min-height: 280px;
    }
    
    .marketing-photo.photo-1 {
        width: clamp(120px, 18vw, 200px);
        height: clamp(80px, 12vw, 140px);
    }
    
    .marketing-photo.photo-2 {
        width: clamp(100px, 15vw, 170px);
        height: clamp(150px, 22vw, 260px);
    }
    
    .marketing-photo.photo-3 {
        width: clamp(110px, 17vw, 190px);
        height: clamp(170px, 26vw, 290px);
    }
    
    .marketing-photo.photo-4 {
        width: clamp(90px, 14vw, 150px);
        height: clamp(135px, 20vw, 230px);
    }
}

@media (max-width: 768px) {
    .marketing-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .marketing-gallery {
        flex-wrap: wrap;
        min-height: auto;
        gap: 10px;
    }
    
    .marketing-photo.photo-1,
    .marketing-photo.photo-2,
    .marketing-photo.photo-3,
    .marketing-photo.photo-4 {
        width: 45%;
        height: 180px;
        align-self: auto;
        margin-top: 0;
    }
    
    .marketing-cta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .marketing-section {
        padding: 30px 0 50px;
    }
    
    .marketing-photo.photo-1,
    .marketing-photo.photo-2,
    .marketing-photo.photo-3,
    .marketing-photo.photo-4 {
        width: 100%;
        height: 200px;
    }
}

/* ===========================================
   SEÇÃO SOBRE / FINAL - Layout Canva
   =========================================== */
.sobre-section {
    position: relative;
    background-color: #fff;
    padding: 50px 0 80px;
    overflow: hidden;
}

/* Fundo com textura clara */
.sobre-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/60cb6cbdd328f625d4a30a630b85284f.png') center/cover no-repeat;
    z-index: 0;
}

/* Faixa escura cobrindo parte inferior */
.sobre-overlay-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 100%;
    background: url('../images/746d77ec8a36f4f75bff6d7d83b054ea.png') center/cover no-repeat;
    z-index: 0;
    opacity: 0.3;
}

.sobre-container {
    position: relative;
    z-index: 2;
}

/* Header */
.sobre-header {
    margin-bottom: 30px;
}

/* Conteúdo principal */
.sobre-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Foto da fotógrafa com efeito reveal */
.sobre-foto {
    flex-shrink: 0;
    width: clamp(250px, 20vw, 316px);
    height: clamp(380px, 31vw, 475px);
    overflow: hidden;
    position: relative;
}

.sobre-foto-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sobre-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Cortina de reveal */
.sobre-foto-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00bf63;
    transform-origin: right;
    transform: scaleX(1);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
}

/* Quando a animação é ativada */
.sobre-foto.animate-active .sobre-foto-reveal {
    transform: scaleX(0);
}

.sobre-foto.animate-active img {
    transform: scale(1);
}

/* Parallax effect via JS */
.sobre-foto[data-parallax="true"] img {
    will-change: transform;
}

/* Área de informações */
.sobre-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Redes Sociais - lado a lado centralizadas */
.sobre-redes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
}

/* Experiência e Formação */
.sobre-detalhes {
    display: flex;
    gap: 40px;
}

.sobre-experiencia,
.sobre-formacao {
    flex: 1;
}

.sobre-qrcode {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.sobre-qrcode:hover {
    transform: scale(1.05);
}

.sobre-qrcode img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sobre-instagram-banner {
    width: clamp(250px, 22vw, 340px);
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.sobre-instagram-banner:hover {
    transform: scale(1.05);
}

.sobre-instagram-banner img {
    width: 100%;
    height: auto;
}

.sobre-experiencia h3,
.sobre-formacao h3 {
    color: #000;
    margin-bottom: 15px;
}

.sobre-experiencia p,
.sobre-formacao p {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
}

/* CTA Contatos */
.sobre-cta {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.cta-contatos {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #141414;
    color: #00bf63;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.cta-contatos:hover {
    background-color: #00bf63;
    color: #141414;
    text-decoration: none;
}

/* Responsivo Sobre */
@media (max-width: 992px) {
    .sobre-content {
        flex-direction: column;
        align-items: center;
    }
    
    .sobre-foto {
        width: 280px;
        height: 420px;
    }
    
    .sobre-info {
        width: 100%;
    }
    
    .sobre-redes {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .sobre-detalhes {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .sobre-header {
        text-align: center;
    }
    
    .sobre-qrcode {
        width: 100px;
        height: 100px;
    }
    
    .sobre-instagram-banner {
        width: 200px;
    }
    
    .sobre-cta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .sobre-section {
        padding: 30px 0 50px;
    }
    
    .sobre-foto {
        width: 100%;
        height: 350px;
    }
    
    .sobre-detalhes {
        text-align: center;
    }
}

.category-card {
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.7) 100%);
    color: #fff;
}

.category-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.category-card-title {
    font-size: 1.3rem;
    font-weight: 700;
}

.category-card-author {
    font-size: 1rem;
    font-weight: 600;
}

.category-card-footer {
    display: flex;
    justify-content: flex-end;
}

/* CTA WhatsApp */
.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(115, 115, 115, 0.9);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-whatsapp:hover {
    background-color: #5a5a5a;
    transform: translateY(-2px);
}

.cta-whatsapp img {
    width: 24px;
    height: 24px;
}

/* Grid Masonry para Galeria */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.masonry-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.masonry-item.tall {
    grid-row: span 2;
}

.masonry-item.wide {
    grid-column: span 2;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

/* Responsivo Home */

/* Tablet Grande */
@media (max-width: 1200px) {
    .masonry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .category-card {
        height: 450px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .category-card {
        height: 400px;
    }
    
    .portfolio-category img {
        height: 350px;
    }
    
    .home-hero .hero-content h1 {
        font-size: 3rem !important;
    }
    
    .home-hero .hero-content h2 {
        font-size: 2.5rem !important;
    }
    
    .cta-whatsapp {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .cta-whatsapp img {
        width: 20px;
        height: 20px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .home-hero {
        min-height: 600px;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .masonry-item.tall,
    .masonry-item.wide {
        grid-row: span 1;
        grid-column: span 1;
    }
    
    .category-card {
        height: 350px;
    }
    
    .category-card-content {
        padding: 20px;
    }
    
    .portfolio-category img {
        height: 300px;
    }
    
    .home-hero .hero-content h1 {
        font-size: 2.5rem !important;
    }
    
    .home-hero .hero-content h2 {
        font-size: 2rem !important;
    }
    
    .categories-section {
        padding: 50px 0;
    }
    
    .cta-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .home-hero {
        min-height: 550px;
    }
    
    .home-hero .hero-badge {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .home-hero .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .home-hero .hero-content h2 {
        font-size: 1.8rem !important;
    }
    
    .category-card {
        height: 300px;
    }
    
    .category-card-title {
        font-size: 1.1rem;
    }
    
    .portfolio-category img {
        height: 250px;
    }
    
    .portfolio-category-title {
        font-size: 1.2rem;
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    .home-hero {
        min-height: 500px;
    }
    
    .home-hero .hero-content h1 {
        font-size: 1.8rem !important;
    }
    
    .home-hero .hero-content h2 {
        font-size: 1.5rem !important;
    }
    
    .category-card {
        height: 280px;
    }
    
    .cta-whatsapp span {
        font-size: 13px;
    }
}

/* ===========================================
   LIGHTBOX - Visualização de Fotos em Tamanho Grande
   =========================================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content {
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
    object-fit: none;
    border-radius: 5px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #ccc;
    transform: scale(1.1);
}

/* Responsivo Lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
}

/* ===========================================
   ANIMAÇÕES DE SCROLL - Entrada das Imagens
   =========================================== */

/* Estado inicial - imagens escondidas */
.scroll-animate {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animação da esquerda */
.scroll-animate.from-left {
    transform: translateX(-80px);
}

/* Animação da direita */
.scroll-animate.from-right {
    transform: translateX(80px);
}

/* Animação de baixo */
.scroll-animate.from-bottom {
    transform: translateY(60px);
}

/* Animação de cima */
.scroll-animate.from-top {
    transform: translateY(-60px);
}

/* Animação com zoom */
.scroll-animate.zoom-in {
    transform: scale(0.8);
}

/* Estado ativo - quando entra na viewport */
.scroll-animate.animate-active {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* Delays para efeito escalonado */
.scroll-animate.delay-1 { transition-delay: 0.1s; }
.scroll-animate.delay-2 { transition-delay: 0.2s; }
.scroll-animate.delay-3 { transition-delay: 0.3s; }
.scroll-animate.delay-4 { transition-delay: 0.4s; }
.scroll-animate.delay-5 { transition-delay: 0.5s; }
.scroll-animate.delay-6 { transition-delay: 0.6s; }

/* Desativa animações em dispositivos que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
}