/* Importação das Fontes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/ginora-sans');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Títulos com Ginóra Sans Regular */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Ginora Sans', sans-serif;
    font-weight: 400;
}

/* Otimização global de imagens para máxima qualidade */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -ms-interpolation-mode: bicubic;
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Colors */
.text-orange {
    color: #ceb878;
}

.text-green {
    color: #ceb878;
}

.text-cyan {
    color: #ceb878;
}

.text-white {
    color: #ffffff;
}

/* Header */
.header {
    background: rgba(37, 45, 4, 0.95);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-hint {
    color: #ceb878;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.image-hint:hover {
    color: #ffffff;
}

.image-hint-tooltip {
    position: absolute;
    top: 50px;
    right: 0;
    background: rgba(37, 45, 4, 0.95);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid #ceb878;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.image-hint-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #ceb878;
}

.image-hint-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
}

.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon-square {
    width: 35px;
    height: 35px;
    object-fit: cover;
}

.icon-circle {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.icon-circle-small {
    width: 35px;
    height: 35px;
    object-fit: cover;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #252d04 0%, #2d3605 50%, #252d04 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: rgba(206, 184, 120, 0.1);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ddd;
}

.hero-subtitle strong {
    color: #ffffff;
}

.hero-cta p {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, #ceb878 0%, #b8a466 100%);
    color: #252d04;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.hero-images {
    position: relative;
    margin-top: 0;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 100%;
}

.hero-img-large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-img-small {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-30px);
    position: relative;
    z-index: 2;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Story Section */
.story-section {
    background: linear-gradient(180deg, #2d3605 0%, #252d04 100%);
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.story-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    position: relative;
    min-height: 400px;
}

.story-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.story-img-1 {
    grid-column: 1;
}

.story-img-2 {
    grid-column: 2;
}

.story-img-3 {
    grid-column: 3;
}

.story-text {
    color: #ffffff;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.story-text h3 {
    font-size: 28px;
    margin-top: 40px;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #ddd;
    line-height: 1.7;
}

/* Course Intro */
.course-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.course-intro-text {
    color: #ffffff;
}

.course-intro-text h2 {
    font-size: 34px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.course-intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #ddd;
    line-height: 1.7;
}

/* Video Section */
.video-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 12px;
}

.video-header {
    margin-bottom: 20px;
}

.video-label,
.video-title {
    color: #ddd;
    font-size: 14px;
}

.video-player {
    margin-bottom: 30px;
}

.video-placeholder {
    background: linear-gradient(135deg, #666 0%, #888 100%);
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #ffffff;
    transform: scale(1.1);
}

.video-description {
    color: #ddd;
    font-size: 14px;
}

.video-playlist {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.playlist-item {
    display: flex;
    gap: 15px;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.playlist-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.playlist-thumbnail {
    width: 120px;
    height: 70px;
    background: linear-gradient(135deg, #555 0%, #777 100%);
    border-radius: 6px;
    flex-shrink: 0;
}

.playlist-info {
    flex-grow: 1;
}

.playlist-title,
.playlist-subtitle,
.playlist-time {
    color: #ddd;
    font-size: 13px;
    margin-bottom: 3px;
}

.btn-secondary {
    width: 100%;
    background: linear-gradient(135deg, #ceb878 0%, #b8a466 100%);
    color: #252d04;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #ceb878 50%, #b8a466 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(206, 184, 120, 0.1);
    border-radius: 50%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #252d04;
}

.about-text strong {
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #252d04;
    line-height: 1.7;
}

.about-image {
    position: relative;
}

.about-logo-element {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 90px;
    height: 90px;
    object-fit: contain;
    z-index: 2;
}

.about-logo-bottom {
    position: absolute;
    bottom: 0;
    left: calc(50% - 65px);
    transform: translate(-50%, 50%);
    width: 300px;
    height: 150px;
    object-fit: contain;
    z-index: 2;
}

.about-image > img:not(.about-logo-element):not(.about-logo-bottom) {
    width: 100%;
    max-width: 500px;
    height: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: #252d04;
    min-height: 600px;
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, #252d04 0%, #2d3605 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: 36px;
    color: #ffffff;
    line-height: 1.3;
}

.gallery-arrow {
    font-size: 80px;
    color: #ceb878;
    font-weight: 300;
}

.gallery-grid {
    position: relative;
}

.gallery-icons {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.icon-circle-gallery {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.icon-circle-gallery-small {
    width: 45px;
    height: 45px;
    object-fit: cover;
}

.icon-square-gallery {
    width: 45px;
    height: 45px;
    object-fit: cover;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
    margin-left: 100px;
    align-items: start;
}

.gallery-images img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

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

.gallery-images img:nth-child(2) {
    grid-row: span 2;
    align-self: start;
}

.gallery-text {
    position: absolute;
    right: -50px;
    bottom: 100px;
    font-size: 120px;
    font-weight: 700;
    color: rgba(206, 184, 120, 0.1);
    writing-mode: vertical-rl;
    letter-spacing: 10px;
}

/* Target Audience Section */
.target-section {
    background: linear-gradient(180deg, #252d04 0%, #2d3605 100%);
    padding: 100px 0;
}

.target-section h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.4;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.target-card {
    display: flex;
    gap: 25px;
    align-items: center;
}

.target-image {
    flex-shrink: 0;
}

.target-image img {
    width: 150px;
    height: auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.target-card p {
    font-size: 17px;
    color: #252d04;
    line-height: 1.6;
    padding: 20px;
    font-weight: 500;
    background: linear-gradient(135deg, #ffffff 0%, #ceb878 100%);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Professional Audience Section */
.professional-section {
    background: linear-gradient(135deg, #ceb878 0%, #ffffff 50%, #ceb878 100%);
    padding: 100px 0;
}

.professional-section h2 {
    font-size: 36px;
    color: #252d04;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.4;
}

.professional-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.professional-intro p {
    font-size: 18px;
    color: #252d04;
    line-height: 1.8;
    margin-bottom: 20px;
}

.professional-benefits {
    max-width: 900px;
    margin: 0 auto 50px;
    background: linear-gradient(135deg, #252d04 0%, #2d3605 100%);
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.professional-benefits h3 {
    font-size: 24px;
    color: #ceb878;
    margin-bottom: 25px;
    font-weight: 700;
}

.professional-list {
    list-style: none;
    padding: 0;
}

.professional-list li {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.professional-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ceb878;
    font-size: 22px;
    font-weight: 700;
}

.professional-cta-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.professional-cta-text p {
    font-size: 20px;
    color: #252d04;
    line-height: 1.7;
}

/* Content Section */
.content-section {
    background: linear-gradient(135deg, #ffffff 0%, #ceb878 50%, #ffffff 100%);
    padding: 100px 0;
}

.content-section h2 {
    font-size: 32px;
    color: #252d04;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.5;
}

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

.content-card {
    padding: 35px 30px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.card-dark {
    background: linear-gradient(135deg, #252d04 0%, #2d3605 100%);
    color: #ffffff;
}

.card-light {
    background: linear-gradient(135deg, #ceb878 0%, #b8a466 100%);
    color: #252d04;
}

.content-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.content-card p {
    font-size: 15px;
    line-height: 1.6;
}

.content-cta {
    text-align: center;
    margin-top: 60px;
}

.content-cta h3 {
    font-size: 28px;
    color: #252d04;
    margin-bottom: 20px;
    font-weight: 700;
}

.price-text {
    font-size: 20px;
    color: #252d04;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #ffffff 0%, #ceb878 100%);
    padding: 100px 0;
}

.faq-section h2 {
    font-size: 36px;
    color: #252d04;
    margin-bottom: 20px;
    text-align: center;
}

.faq-tag {
    text-align: center;
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid #252d04;
    border-radius: 30px;
    color: #252d04;
    font-size: 14px;
    font-weight: 600;
    margin: 0 auto 50px;
    display: block;
    width: fit-content;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.4);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #252d04;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.2);
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 30px 25px;
    max-height: 300px;
}

.faq-answer p {
    font-size: 16px;
    color: #252d04;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #ffffff 0%, #ceb878 100%);
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.logo-br-footer {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.footer-credit {
    text-align: center;
}

.footer-credit p {
    font-size: 14px;
    color: #252d04;
    margin-bottom: 5px;
}

.studio-name {
    font-size: 20px;
    font-weight: 700;
    color: #252d04;
}

.btn-back-to-top {
    background: linear-gradient(135deg, #252d04 0%, #2d3605 100%);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-icon {
    font-size: 20px;
}

/* Otimização para telas de alta resolução (Retina, 4K, etc) */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and (min-resolution: 192dpi),
       only screen and (min-resolution: 2dppx) {
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .hero-img-large,
    .hero-img-small,
    .story-img,
    .about-image > img:not(.about-logo-element):not(.about-logo-bottom),
    .gallery-images img,
    .target-image img {
        image-rendering: auto;
        transform: translateZ(0);
        will-change: transform;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-image-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-img-large {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        min-height: 300px;
        transform: none;
    }

    .hero-img-small {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        min-height: 200px;
        transform: none;
    }

    .story-content,
    .course-intro,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-images {
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
        min-height: 300px;
    }

    .story-img {
        height: 300px;
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-images {
        margin-left: 80px;
        gap: 15px;
    }
}

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

    .hero {
        padding: 110px 0 40px; /* mais espaço para o header fixo */
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-image-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
    }

    .hero-img-large {
        grid-column: 1;
        grid-row: 1;
        height: 200px;
        min-height: 200px;
    }

    .hero-img-small {
        grid-column: 1;
        grid-row: 2;
        min-height: 150px;
    }

    .content-grid,
    .target-grid {
        grid-template-columns: 1fr;
    }

    .target-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .target-image img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    .gallery-icons {
        left: -10px;
        gap: 15px;
    }

    .icon-circle-gallery {
        width: 35px;
        height: 35px;
    }

    .icon-circle-gallery-small {
        width: 30px;
        height: 30px;
    }

    .icon-square-gallery {
        width: 30px;
        height: 30px;
    }

    .gallery-images {
        grid-template-columns: repeat(2, 1fr);
        margin-left: 60px;
        gap: 15px;
    }

    .gallery-images img:nth-child(2) {
        grid-row: span 1;
    }

    .gallery-text {
        font-size: 80px;
    }

    /* Espaçamento extra entre imagem e texto na seção Story */
    .story-text {
        margin-top: 20px;
    }

    /* Story images em mobile */
    .story-images {
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
        min-height: 260px;
    }

    .story-img {
        height: 260px;
    }

    .story-img-1,
    .story-img-2,
    .story-img-3 {
        grid-column: auto;
    }

    /* Reduz espaço do h3 no mobile */
    .story-text h3 {
        margin-top: 15px;
    }

    /* Reduz espaço entre story e próxima seção */
    .story-content {
        margin-bottom: 40px;
    }

    /* Ajustes da seção About no mobile */
    .about-image > img:not(.about-logo-element):not(.about-logo-bottom) {
        min-height: 380px;
        max-width: 100%;
    }

    .about-logo-bottom {
        bottom: 0;
        left: calc(50% - 15px);
        transform: translate(-50%, 50%);
        width: 220px;
    }

    /* Footer lado a lado no mobile com elementos menores */
    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: space-between;
        align-items: center;
    }

    .logo-br-footer {
        height: 80px;
    }

    .footer-credit p {
        font-size: 12px;
    }

    .studio-name {
        font-size: 16px;
    }

    .btn-back-to-top {
        padding: 10px 18px;
        font-size: 14px;
    }

    .image-hint {
        font-size: 12px;
    }
    
    .image-hint::after {
        content: '';
    }
    
    .image-hint {
        font-size: 0;
    }
    
    .image-hint::before {
        content: '💡';
        font-size: 24px;
    }

    /* Professional Section mobile */
    .professional-intro p {
        font-size: 16px;
    }

    .professional-benefits {
        padding: 30px 25px;
    }

    .professional-benefits h3 {
        font-size: 20px;
    }

    .professional-list li {
        font-size: 16px;
    }

    .professional-cta-text p {
        font-size: 18px;
    }
}

/* Ajuste para telas muito pequenas - imagens lado a lado */
@media (max-width: 480px) {
    .target-image img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .gallery-icons {
        left: -15px;
        gap: 12px;
    }

    .icon-circle-gallery {
        width: 30px;
        height: 30px;
    }

    .icon-circle-gallery-small {
        width: 25px;
        height: 25px;
    }

    .icon-square-gallery {
        width: 25px;
        height: 25px;
    }

    .gallery-images {
        grid-template-columns: 1fr;
        margin-left: 40px;
        gap: 15px;
    }

    .gallery-images img:nth-child(2) {
        grid-row: span 1;
    }

    .story-images {
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
        min-height: 240px;
    }

    .story-img {
        height: 240px;
        width: 100%;
    }

    .story-img-1,
    .story-img-2,
    .story-img-3 {
        grid-column: auto;
    }

    .about-logo-bottom {
        bottom: 0;
        left: calc(50% - 15px);
        transform: translate(-50%, 50%);
        width: 220px;
    }
}

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

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

.lightbox-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    user-select: none;
}

@keyframes zoomIn {
    from { transform: scale(0.7); }
    to { transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #ffffff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #ceb878;
}

.lightbox-controls {
    position: absolute;
    top: 30px;
    left: 40px;
    display: flex;
    gap: 10px;
    z-index: 10000;
}

.zoom-btn {
    width: 45px;
    height: 45px;
    background: rgba(206, 184, 120, 0.9);
    color: #252d04;
    border: none;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-btn:hover {
    background: #ceb878;
    transform: scale(1.1);
}

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

@media (max-width: 768px) {
    .lightbox-controls {
        left: 20px;
        top: 20px;
        gap: 8px;
    }
    
    .zoom-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .lightbox-close {
        right: 20px;
        font-size: 40px;
    }
}

.lightbox-caption {
    display: none;
}

/* Cursor pointer nas imagens clicáveis */
.hero-img-large,
.hero-img-small,
.story-img,
.about-image > img:not(.about-logo-element):not(.about-logo-bottom),
.gallery-images img,
.target-image img {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-img-large:hover,
.hero-img-small:hover,
.story-img:hover,
.about-image > img:not(.about-logo-element):not(.about-logo-bottom):hover,
.gallery-images img:hover,
.target-image img:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

