/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --orange: #FF6600;
    --black: #1A1A1A;
    --dark-gray: #333333;
    --light-gray: #F4F4F4;
    --text-gray: #666666;
    --white: #FFFFFF;
}

body {
    background: linear-gradient(180deg, #F4F4F4 0%, #DCDCDC 100%);
    background-attachment: fixed;
    color: var(--black);
    padding-top: 220px; /* Ajustado para o header centralizado */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Fixo Centralizado com Degradê */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #333333 0%, #000000 100%);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.top-bar {
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--dark-gray);
}

.btn-professional {
    color: var(--orange);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    transition: all 0.3s;
    text-transform: uppercase;
    padding: 5px 15px;
    border-radius: 20px;
}

.highlight-btn {
    background-color: rgba(255, 102, 0, 0.1);
    border: 1px solid var(--orange);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
}

.btn-professional:hover {
    color: var(--white);
    background-color: var(--orange);
}

.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
}

.logo img {
    height: 100px; /* Tamanho ajustado para a nova logo */
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 8px 15px;
    border: 1px solid var(--orange);
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-link:hover {
    background-color: var(--orange);
    color: var(--white);
}

/* Carrossel (Centralizado e Menor) */
.hero-carousel {
    width: 100%;
    padding: 40px 0;
    background-color: var(--light-gray);
}

.mySwiper {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    max-width: 1000px; /* Largura controlada para o carrossel */
    margin: 0 auto;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--orange);
}

.swiper-pagination-bullet-active {
    background: var(--orange);
}

/* Seção de Produtos */
.products-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-size: 2rem;
    color: var(--black);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin: 15px auto 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-item {
    text-decoration: none;
    text-align: center;
    color: var(--black);
    display: block;
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 102, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-overlay span {
    color: var(--white);
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid var(--white);
    padding: 8px 16px;
    border-radius: 4px;
}

/* Animação ao passar o mouse nos produtos */
.product-item:hover .product-image {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.2);
}

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

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-item h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 700;
    transition: color 0.3s ease;
}

.product-item:hover h3 {
    color: var(--orange);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.btn-revele-agora {
    display: inline-block;
    background-color: var(--orange);
    color: var(--white);
    padding: 22px 60px;
    font-size: 1.8rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    transition: all 0.3s ease;
    animation: pulse-attention 2s infinite;
}

@keyframes pulse-attention {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 102, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}

.btn-revele-agora:hover {
    animation: none;
    transform: scale(1.1);
    background-color: #e65c00;
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.6);
}

.cta-quote-main {
    color: var(--white);
    font-size: 1.3rem;
    margin-top: 30px;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Localização e Instagram Grid */
.location {
    padding: 80px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch; /* Garante que as colunas tenham a mesma altura */
}

.location-col {
    display: flex;
    flex-direction: column;
}

.location-col h2 {
    text-align: left;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: var(--black);
    font-size: 1.5rem;
}

.map-container {
    border: 5px solid var(--dark-gray);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-grow: 1; /* Faz o mapa ocupar todo o espaço disponível na coluna */
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

.location-actions {
    text-align: left;
}

.btn-route {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-route:hover {
    background-color: var(--orange);
    transform: translateY(-2px);
}

/* Instagram Card Estilizado */
.instagram-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.insta-feed-preview-single {
    width: 100%;
    overflow: hidden;
    background: #eee;
    flex-grow: 1; /* Faz a imagem crescer para preencher o card */
}

.insta-feed-preview-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.insta-header {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #eee;
}

.insta-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--orange);
}

.insta-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insta-info strong {
    font-size: 0.95rem;
    color: var(--black);
}

.insta-info span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.btn-follow {
    background-color: #0095f6;
    color: white;
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.85rem;
    transition: background 0.3s;
}

.btn-follow:hover {
    background-color: #1877f2;
}

.insta-feed-preview-single {
    width: 100%;
    overflow: hidden;
    background: #eee;
}

.insta-feed-preview-single img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.insta-feed-preview-single img:hover {
    transform: scale(1.05);
}

.insta-footer {
    padding: 12px;
    text-align: center;
}

.insta-footer a {
    color: #0095f6;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
    .location-col h2 {
        text-align: center;
    }
    .location-actions {
        text-align: center;
    }
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-quote {
    font-style: italic;
    color: var(--orange) !important;
    font-size: 1.1rem !important;
    margin-bottom: 20px !important;
    font-family: 'Georgia', serif;
}

.btn-footer-contact {
    display: inline-block;
    background-color: #25D366;
    color: var(--white);
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 35px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-footer-contact:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* WhatsApp Flutuante Vertical */
.whatsapp-float-vertical {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #25D366;
    color: #FFF;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 0 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp-float-vertical i {
    font-size: 24px;
}

.whatsapp-float-vertical span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.whatsapp-float-vertical:hover {
    padding-right: 20px;
    background-color: #1ebe57;
}

@media (max-width: 768px) {
    .whatsapp-float-vertical {
        padding: 15px 8px;
    }
    .whatsapp-float-vertical span {
        font-size: 0.8rem;
    }
}

/* RESPONSIVIDADE */

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pro-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 280px;
    }

    .logo img {
        height: 80px;
    }

    .nav-link {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .swiper-slide img {
        height: 300px;
    }

    .btn-revele-agora {
        padding: 15px 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 320px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }

    .logo img {
        height: 70px;
    }
}

/* Estilos Página Profissional (Integrados) */
.pro-hero { padding: 60px 0; background-color: var(--white); }
.pro-content { display: flex; align-items: center; gap: 50px; justify-content: space-between; }
.pro-text { flex: 1; }
.pro-text h1 { font-size: 2.5rem; color: var(--black); margin-bottom: 20px; line-height: 1.2; }
.pro-text h1 span { color: var(--orange); }
.pro-text p { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 30px; line-height: 1.6; }
.pro-image { flex: 1; }
.pro-image img { width: 100%; border-radius: 15px; box-shadow: 0 15px 40px rgba(0,0,0,0.2); }
.pro-actions { display: flex; gap: 20px; flex-wrap: wrap; }
.btn-pro-login { background-color: var(--orange); color: var(--white); border: none; padding: 15px 30px; font-weight: bold; font-size: 1rem; border-radius: 5px; cursor: pointer; transition: transform 0.3s; }
.btn-pro-request { background-color: var(--black); color: var(--white); text-decoration: none; padding: 15px 30px; font-weight: bold; font-size: 1rem; border-radius: 5px; transition: background-color 0.3s; }
.pro-benefits { padding: 60px 0; background-color: var(--light-gray); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.benefit-card { background-color: var(--white); padding: 40px; text-align: center; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.benefit-card i { font-size: 2.5rem; color: var(--orange); margin-bottom: 20px; }


/* ==================================================
   Página de Fotolivro
   ================================================== */
.nav-link-active {
    background-color: var(--orange);
    color: var(--white);
}

.photobook-hero {
    padding: 80px 0;
    background: radial-gradient(circle at 75% 20%, rgba(255, 102, 0, 0.14), transparent 33%), linear-gradient(135deg, #f7f7f7 0%, #dedede 100%);
}

.photobook-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 70px;
    align-items: center;
}

.photobook-copy {
    max-width: 600px;
}

.photobook-eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.photobook-eyebrow i {
    margin-right: 6px;
}

.photobook-copy h1 {
    margin: 0 0 18px;
    color: var(--black);
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.photobook-copy h1 span {
    display: block;
    color: var(--orange);
}

.photobook-description {
    margin: 0 0 28px;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.price-card {
    display: grid;
    gap: 6px;
    max-width: 410px;
    margin-bottom: 30px;
    padding: 22px 24px;
    border-left: 6px solid var(--orange);
    border-radius: 0 12px 12px 0;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.price-label {
    color: var(--dark-gray);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-value {
    color: var(--orange);
    font-size: 1.4rem;
    font-weight: 700;
}

.price-value strong {
    font-size: 2.35rem;
    letter-spacing: -0.04em;
}

.price-note {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.btn-photobook-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    border-radius: 8px;
    background: #25D366;
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-photobook-order:hover {
    background: #1ebe57;
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.35);
    transform: translateY(-4px);
}

.photobook-hero-image {
    text-align: center;
}

.photobook-image-frame {
    position: relative;
    padding: 12px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
    transform: rotate(2deg);
}

.photobook-image-frame::before {
    position: absolute;
    top: -15px;
    right: 10%;
    width: 110px;
    height: 28px;
    background: rgba(255, 102, 0, 0.8);
    content: '';
    transform: rotate(5deg);
}

.photobook-image-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    object-fit: cover;
}

.photobook-hero-image > p {
    margin: 24px 0 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
    font-style: italic;
}

.photobook-details {
    padding: 100px 0;
    background: var(--white);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 14px;
    color: var(--black);
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -0.04em;
}

.section-heading > p:not(.section-kicker) {
    color: var(--text-gray);
    line-height: 1.6;
}

.photobook-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.photobook-option {
    padding: 36px 28px;
    border: 1px solid #e2e2e2;
    border-radius: 14px;
    background: #fafafa;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.photobook-option:hover {
    border-color: var(--orange);
    box-shadow: 0 16px 32px rgba(255, 102, 0, 0.14);
    transform: translateY(-8px);
}

.featured-option {
    border-color: rgba(255, 102, 0, 0.5);
    background: linear-gradient(150deg, #fff6f0 0%, var(--white) 70%);
}

.option-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 1.35rem;
}

.photobook-option h3 {
    margin: 0 0 12px;
    color: var(--black);
    font-size: 1.25rem;
}

.photobook-option p {
    min-height: 76px;
    margin: 0 0 22px;
    color: var(--text-gray);
    line-height: 1.65;
}

.option-price {
    color: var(--orange);
    font-size: 1.1rem;
    font-weight: 800;
}

.option-price small {
    display: block;
    margin-top: 4px;
    color: var(--text-gray);
    font-size: 0.75rem;
    font-weight: 600;
}

.photobook-gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%);
}

.section-heading-light h2 {
    color: var(--white);
}

.section-heading-light > p:not(.section-kicker) {
    color: #cfcfcf;
}

.photobook-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
}

.gallery-item {
    overflow: hidden;
    margin: 0;
    border-radius: 12px;
    background: var(--dark-gray);
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.93;
    transition: transform 0.55s ease, opacity 0.35s ease;
}

.gallery-item:hover img {
    opacity: 1;
    transform: scale(1.08);
}

.photobook-final-cta {
    padding: 90px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.72)), url('assets/img/fotolivro/fotolivro-04.jpeg');
    background-position: center;
    background-size: cover;
    color: var(--white);
    text-align: center;
}

.photobook-final-cta h2 {
    max-width: 760px;
    margin: 0 auto 16px;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1.1;
}

.photobook-final-cta > .container > p:not(.photobook-eyebrow) {
    max-width: 660px;
    margin: 0 auto 30px;
    color: #eeeeee;
    font-size: 1.08rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .photobook-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .photobook-copy {
        max-width: 700px;
        text-align: center;
    }

    .price-card {
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .photobook-options-grid {
        grid-template-columns: 1fr;
    }

    .photobook-option p {
        min-height: auto;
    }
}

@media (max-width: 680px) {
    .photobook-hero,
    .photobook-details,
    .photobook-gallery-section,
    .photobook-final-cta {
        padding: 65px 0;
    }

    .photobook-copy h1 {
        font-size: 2.8rem;
    }

    .photobook-description {
        font-size: 1rem;
    }

    .btn-photobook-order {
        width: 100%;
        padding: 16px 20px;
        font-size: 0.9rem;
    }

    .photobook-gallery {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
        gap: 10px;
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 420px) {
    .photobook-gallery {
        grid-auto-rows: 145px;
    }

    .price-value strong {
        font-size: 2rem;
    }
}


/* ==================================================
   Página de Álbuns Personalizados
   ================================================== */
.albums-hero {
    padding: 84px 0 95px;
    overflow: hidden;
    background: radial-gradient(circle at 80% 12%, rgba(255, 102, 0, 0.16), transparent 28%), linear-gradient(135deg, #f8f8f8 0%, #d9d9d9 100%);
}

.albums-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 50px;
    align-items: center;
}

.albums-copy {
    max-width: 570px;
}

.albums-copy h1 {
    margin: 0 0 18px;
    color: var(--black);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.albums-copy h1 span {
    display: block;
    color: var(--orange);
}

.albums-copy > p:not(.photobook-eyebrow) {
    margin: 0 0 30px;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.albums-hero-visual {
    position: relative;
    min-height: 470px;
}

.album-hero-back,
.album-hero-main {
    position: absolute;
    overflow: hidden;
    padding: 8px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.album-hero-back {
    top: 0;
    right: 12%;
    width: 47%;
    transform: rotate(10deg);
}

.album-hero-main {
    bottom: 0;
    left: 5%;
    width: 58%;
    transform: rotate(-7deg);
}

.album-hero-back img,
.album-hero-main img {
    display: block;
    width: 100%;
    aspect-ratio: 0.71 / 1;
    border-radius: 10px;
    object-fit: cover;
}

.albums-models-section {
    padding: 100px 0;
    background: var(--white);
}

.albums-models-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    max-width: 1060px;
    margin: 0 auto;
}

.album-model-card {
    display: grid;
    grid-template-columns: minmax(190px, 0.72fr) 1fr;
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 18px;
    background: #fafafa;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.album-model-card:hover {
    box-shadow: 0 22px 42px rgba(255, 102, 0, 0.17);
    transform: translateY(-8px);
}

.album-card-image {
    position: relative;
    min-height: 100%;
    background: #efefef;
}

.album-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 10px;
    border-radius: 30px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.album-card-content {
    display: flex;
    flex-direction: column;
    padding: 30px 26px;
}

.album-format {
    margin: 0 0 10px;
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.11em;
}

.album-card-content h3 {
    margin: 0 0 14px;
    color: var(--black);
    font-size: 1.65rem;
    line-height: 1.05;
}

.album-card-content > p:not(.album-format) {
    margin: 0 0 18px;
    color: var(--text-gray);
    font-size: 0.94rem;
    line-height: 1.6;
}

.album-capacity-list {
    display: grid;
    gap: 8px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.album-capacity-list i {
    margin-right: 6px;
    color: var(--orange);
}

.capacity-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 24px;
    padding: 13px;
    border-radius: 10px;
    background: #fff2ea;
    color: var(--black);
    font-size: 0.9rem;
}

.capacity-highlight i {
    color: var(--orange);
    font-size: 1.25rem;
}

.album-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding: 12px 0 4px;
    border-bottom: 2px solid var(--orange);
    color: var(--black);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color 0.25s ease, gap 0.25s ease;
}

.album-card-cta:hover {
    gap: 16px;
    color: var(--orange);
}

.albums-gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f1f1f 0%, #000000 100%);
}

.albums-gallery-copy {
    max-width: 550px;
    margin-bottom: 45px;
}

.albums-gallery-copy h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    letter-spacing: -0.04em;
}

.albums-gallery-copy > p:not(.section-kicker) {
    color: #d1d1d1;
    line-height: 1.65;
}

.albums-gallery-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 18px;
    align-items: end;
}

.album-gallery-item {
    overflow: hidden;
    margin: 0;
    border-radius: 14px;
    background: #333;
}

.album-gallery-item.item-tall {
    transform: translateY(-32px);
}

.album-gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 0.71 / 1;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.album-gallery-item:hover img {
    transform: scale(1.08);
}

.albums-final-cta {
    padding: 95px 0;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.2), transparent 42%), #141414;
    color: var(--white);
    text-align: center;
}

.albums-final-cta h2 {
    max-width: 760px;
    margin: 0 auto 16px;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1.1;
}

.albums-final-cta > .container > p:not(.photobook-eyebrow) {
    max-width: 650px;
    margin: 0 auto 30px;
    color: #dddddd;
    line-height: 1.65;
}

@media (max-width: 1080px) {
    .albums-models-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }
}

@media (max-width: 920px) {
    .albums-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .albums-copy {
        max-width: 700px;
        text-align: center;
    }

    .albums-hero-visual {
        width: min(100%, 540px);
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .albums-hero,
    .albums-models-section,
    .albums-gallery-section,
    .albums-final-cta {
        padding: 65px 0;
    }

    .albums-hero-visual {
        min-height: 390px;
    }

    .album-model-card {
        grid-template-columns: 0.85fr 1fr;
    }

    .album-card-content {
        padding: 22px 18px;
    }

    .album-card-content h3 {
        font-size: 1.35rem;
    }

    .album-card-content > p:not(.album-format) {
        font-size: 0.85rem;
    }

    .albums-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .album-gallery-item.item-tall {
        grid-row: span 2;
        transform: none;
    }

    .album-gallery-item:last-child {
        grid-column: 2;
    }
}

@media (max-width: 430px) {
    .albums-hero-visual {
        min-height: 325px;
    }

    .album-model-card {
        grid-template-columns: 1fr;
    }

    .album-card-image {
        height: 300px;
    }

    .album-card-image img {
        object-position: center 20%;
    }
}


/* ==================================================
   Páginas de Produtos em Destaque
   ================================================== */
.product-landing-hero {
    padding: 82px 0;
    overflow: hidden;
    background: radial-gradient(circle at 82% 18%, rgba(255, 102, 0, 0.18), transparent 30%), linear-gradient(135deg, #f9f9f9 0%, #dedede 100%);
}

.product-landing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.94fr);
    gap: 64px;
    align-items: center;
}

.product-landing-copy {
    max-width: 620px;
}

.product-landing-copy h1 {
    margin: 0 0 18px;
    color: var(--black);
    font-size: clamp(2.75rem, 5vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.product-landing-copy h1 span {
    display: block;
    color: var(--orange);
}

.product-landing-description {
    margin: 0 0 28px;
    color: var(--text-gray);
    font-size: 1.08rem;
    line-height: 1.7;
}

.product-offer-card {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 470px;
    margin: 0 0 30px;
    padding: 20px 24px;
    border-left: 6px solid var(--orange);
    border-radius: 0 14px 14px 0;
    background: var(--white);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.product-offer-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 1.25rem;
}

.product-offer-label {
    display: block;
    margin-bottom: 3px;
    color: var(--text-gray);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-offer-value {
    color: var(--orange);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.product-offer-value strong {
    font-size: 2rem;
}

.product-landing-image {
    position: relative;
}

.product-landing-image::before {
    position: absolute;
    top: -18px;
    right: -16px;
    bottom: 18px;
    left: 18px;
    z-index: 0;
    border-radius: 20px;
    background: var(--orange);
    content: '';
    transform: rotate(3deg);
}

.product-landing-image img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
    object-fit: cover;
}

.product-details-section {
    padding: 90px 0;
    background: var(--white);
}

.product-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-detail-card {
    padding: 32px 26px;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    background: #fafafa;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-detail-card:hover {
    border-color: var(--orange);
    box-shadow: 0 16px 34px rgba(255, 102, 0, 0.14);
    transform: translateY(-7px);
}

.product-detail-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
}

.product-detail-card h3 {
    margin: 0 0 10px;
    color: var(--black);
    font-size: 1.15rem;
}

.product-detail-card p,
.product-detail-card ul {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.94rem;
    line-height: 1.65;
}

.product-detail-card ul {
    padding-left: 18px;
}

.product-gallery-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #1f1f1f 0%, #050505 100%);
}

.product-gallery-section .section-heading h2 {
    color: var(--white);
}

.product-gallery-section .section-heading > p:not(.section-kicker) {
    color: #d1d1d1;
}

.product-gallery {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 22px;
    max-width: 1080px;
    margin: 0 auto;
}

.product-gallery-item {
    overflow: hidden;
    margin: 0;
    border-radius: 14px;
    background: #333;
}

.product-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.product-gallery-item:hover img {
    transform: scale(1.07);
}

.product-cta-section {
    padding: 90px 0;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.22), transparent 42%), #141414;
    color: var(--white);
    text-align: center;
}

.product-cta-section h2 {
    max-width: 760px;
    margin: 0 auto 16px;
    font-size: clamp(2.1rem, 4vw, 3.35rem);
    line-height: 1.1;
}

.product-cta-section > .container > p:not(.photobook-eyebrow) {
    max-width: 660px;
    margin: 0 auto 30px;
    color: #dedede;
    line-height: 1.65;
}

.product-price-choices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 510px;
    margin: 0 0 30px;
}

.product-price-choice {
    padding: 15px;
    border: 1px solid rgba(255, 102, 0, 0.45);
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.product-price-choice span {
    display: block;
    margin-bottom: 4px;
    color: var(--text-gray);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-price-choice strong {
    color: var(--orange);
    font-size: 1.4rem;
}

@media (max-width: 992px) {
    .product-landing-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .product-landing-copy {
        max-width: 720px;
        text-align: center;
    }

    .product-offer-card,
    .product-price-choices {
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .product-details-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .product-landing-hero,
    .product-details-section,
    .product-gallery-section,
    .product-cta-section {
        padding: 65px 0;
    }

    .product-landing-copy h1 {
        font-size: 2.75rem;
    }

    .product-landing-description {
        font-size: 1rem;
    }

    .product-offer-card {
        padding: 16px;
    }

    .product-offer-value {
        font-size: 1.3rem;
    }

    .product-offer-value strong {
        font-size: 1.7rem;
    }

    .product-gallery {
        grid-template-columns: 1fr;
    }

    .product-gallery-item img {
        min-height: 220px;
    }

    .product-price-choices {
        grid-template-columns: 1fr;
    }
}
