/* ========================= */
/* GALERIA DE ARTE - CSS APRIMORADO */
/* Com animações elegantes e design refinado */
/* ========================= */

/* ========================= */
/* FONTS */
/* ========================= */

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/CormorantGaramond-Light.ttf');
}

@font-face {
    font-family: 'subtitulo';
    src: url('FONTS/PlayfairDisplay-Regular.otf');
}

@font-face {
    font-family: 'titulo';
    src: url('FONTS/PlayfairDisplayMedium-9YKZK.ttf');
}

/* ========================= */
/* RESET E BASE */
/* ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #e8e8e8;
    color: #2b2b2b;
    overflow-x: hidden;
}

/* ========================= */
/* HEADER FIXO */
/* ========================= */

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #2b2b2b;
    padding: 25px 0;
    overflow: hidden;
    border-bottom: 1px solid #3a3a3a;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    padding: 15px 0;
    background-color: rgba(43, 43, 43, 0.95);
    backdrop-filter: blur(10px);
}

.art-circle {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #1a1a1a, #0f0f0f);
    z-index: 1;
}

.art-circle.left {
    top: -160px;
    left: -100px;
}

.art-circle.right {
    top: -170px;
    right: -120px;
}

.art-circle .gold-ring {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    border: 1px solid #C9A961;
    opacity: 0.7;
}

.art-circle .ring-1 {
    transform: rotate(18deg);
}

.art-circle .ring-2 {
    inset: -55px;
    opacity: 0.4;
    transform: rotate(-12deg);
}

.circle-decoration {
    position: absolute;
    border: 1px solid #4a4a4a;
    border-radius: 50%;
    opacity: 0.3;
}

.circle-left {
    width: 280px;
    height: 280px;
    top: -140px;
    left: -80px;
}

.circle-right {
    width: 320px;
    height: 320px;
    top: -160px;
    right: -100px;
}

.curves-decoration {
    position: absolute;
    width: 300px;
    height: 200px;
    top: -50px;
    pointer-events: none;
    z-index: 2;
}

.curves-left {
    left: 50px;
}

.curves-right {
    right: 50px;
}

.header-content {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    text-align: center;
}

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

.logoImg {
    padding-top: 35px;
    width: 460px;
    padding-bottom: 15px;
   
}

.content a {
    font-size: 17px;
    font-family: "titulo";
    text-decoration: none;
   
    background: linear-gradient(90deg, #9E7C53, #CCB48C, #9E7C53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    justify-content: center;
}

.logo-aw {
    padding-left: 8px;
    font-size: 60px;
    font-weight: 300;
    letter-spacing: 8px;
    font-family: 'Cormorant Garamond', serif;
    background: linear-gradient(90deg, #9E7C53, #CCB48C, #9E7C53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    font-size: 40px;
    letter-spacing: 8px;
    font-weight: 300;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: "titulo";
    background: linear-gradient(90deg, #9E7C53, #CCB48C, #9E7C53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    width: 100%;
}

.nav-menu {
    
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 45px;
}

.nav-link {
    font-family: "subtitulo";
    color: #b29975;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #C9A961;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #C9A961;
}

/* ========================= */
/* MENU HAMBURGUER MOBILE */
/* ========================= */

.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 1100;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    width: 45px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #C9A961;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Overlay do menu mobile */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* ========================= */
/* MAIN CONTENT */
/* ========================= */

.main-content {
    min-height: calc(100vh - 200px);
    margin-top: 180px;
}

/* ========================= */
/* HERO SECTION - APRIMORADO */
/* ========================= */

.hero-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #e8e8e8 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-image-wrapper {
    position: relative;
    max-width: 800px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    animation: heroReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(201, 169, 97, 0.1);
}

@keyframes heroReveal {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(40px);
        clip-path: inset(100% 0 0 0);
    }
    60% {
        clip-path: inset(0 0 0 0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        clip-path: inset(0 0 0 0);
    }
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s ease;
}

.hero-image-wrapper:hover .hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.hero-title {
    font-family: "subtitulo";
    font-size: 30px;
    letter-spacing: 8px;
    color: #b29975;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: titleFade 1.5s ease 0.5s backwards;
    padding: 10px;
}

.btCatalogo {
    font-family: "subtitulo";
    background: rgba(26, 26, 26, 0.3);
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btCatalogo:hover {
    background: rgba(201, 169, 97, 0.3);
    transform: translateY(-2px);
}

@keyframes titleFade {
    from {
        opacity: 0;
        letter-spacing: 20px;
    }
    to {
        opacity: 1;
        letter-spacing: 10px;
    }
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9A961, transparent);
    animation: lineExpand 1s ease 1s backwards;
}

@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

/* ========================= */
/* SECTIONS - ESTILOS BASE APRIMORADOS */
/* ========================= */

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

.section-title {
    font-family: "titulo";
    font-size: 36px;
    letter-spacing: 6px;
    text-align: center;
    color: #2b2b2b;
    margin-bottom: 70px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 25px;
    opacity: 0;
    animation: sectionTitleReveal 0.8s ease forwards;
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C9A961, transparent);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: rgba(201, 169, 97, 0.4);
}

/* ========================= */
/* ARTISTAS SECTION - APRIMORADO */
/* ========================= */

.artists-section {
    padding: 100px 20px;
    background-color: #ffffff;
    position: relative;
}

.artists-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
}

.artist-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C9A961, #b89440);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.artist-card:hover::before {
    transform: scaleX(1);
}

.artist-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(201, 169, 97, 0.15);
    border-color: rgba(201, 169, 97, 0.2);
}

.artist-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.artist-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.artist-card:hover .artist-image::after {
    opacity: 1;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.artist-card:hover .artist-image img {
    transform: scale(1.08);
}

.artist-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C9A961 0%, #b89440 50%, #9E7C53 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.artist-image-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

.artist-image-placeholder span {
    font-size: 4.5rem;
    color: white;
    font-weight: 300;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.artist-info {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #ffffff, #fafafa);
}

.artist-name {
    color: #1a1a1a;
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-family: "titulo";
    transition: color 0.3s ease;
}

.artist-card:hover .artist-name {
    color: #C9A961;
}

.artist-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.artist-link {
    color: #C9A961;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-right: 20px;
}

.artist-link::after {
    content: '\2192';
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.artist-link:hover {
    color: #9E7C53;
}

.artist-link:hover::after {
    transform: translateX(5px);
}

.no-artists-message {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    padding: 4rem;
    background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
    border-radius: 12px;
    border: 1px dashed rgba(201, 169, 97, 0.3);
    grid-column: 1 / -1;
}

.view-all-container {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 169, 97, 0.15);
}

.view-all-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #C9A961;
    border: 2px solid #C9A961;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #C9A961, #b89440);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.view-all-btn:hover::before {
    left: 0;
}

.view-all-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

/* ========================= */
/* OBRAS SECTION - APRIMORADO */
/* ========================= */

.obras-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f5f5f5 0%, #ececec 100%);
    position: relative;
}

.obras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.obra-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.obra-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(201, 169, 97, 0.2);
}

.obra-image {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.obra-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.obra-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C9A961 0%, #b89440 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.obra-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(43, 43, 43, 0.95) 0%,
        rgba(43, 43, 43, 0.7) 40%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.obra-card:hover .obra-overlay {
    opacity: 1;
}

.obra-view {
    color: #C9A961;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.obra-view::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #C9A961;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.obra-card:hover .obra-view::after {
    transform: scaleX(1);
}

.obra-info {
    padding: 1.8rem;
    background: linear-gradient(to bottom, #ffffff, #fafafa);
}

.obra-title {
    font-family: "titulo";
    color: #1a1a1a;
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}

.obra-card:hover .obra-title {
    color: #C9A961;
}

.obra-artist {
    color: #C9A961;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.obra-year,
.obra-technique {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.obra-price {
    color: #2b2b2b;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.no-obras-message {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    padding: 4rem;
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    border-radius: 12px;
    border: 1px dashed rgba(201, 169, 97, 0.3);
    grid-column: 1 / -1;
}

/* ========================= */
/* EXPOSICOES SECTION - APRIMORADO */
/* ========================= */

.exposicoes-section {
    padding: 100px 20px;
    background-color: #ffffff;
    position: relative;
}

.exposicoes-category {
    margin-bottom: 80px;
}

.category-title {
    font-family: "titulo";
    font-size: 26px;
    letter-spacing: 4px;
    color: #C9A961;
    margin-bottom: 50px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9A961, transparent);
}

.exposicoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 45px;
}

.exposicao-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.exposicao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: border-color 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.exposicao-card:hover::before {
    border-color: rgba(201, 169, 97, 0.3);
}

.exposicao-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(201, 169, 97, 0.2);
}

.exposicao-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.exposicao-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.exposicao-card:hover .exposicao-image img {
    transform: scale(1.08);
}

.exposicao-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #C9A961, #b89440);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(201, 169, 97, 0.6);
    }
}

.exposicao-badge.proximamente {
    background: linear-gradient(135deg, #888, #666);
    animation: none;
}

.exposicao-info {
    padding: 2.2rem;
}

.exposicao-title {
    font-family: "titulo";
    font-size: 1.6rem;
    color: #2b2b2b;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.exposicao-card:hover .exposicao-title {
    color: #C9A961;
}

.exposicao-date {
    color: #C9A961;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.exposicao-date::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #C9A961;
}

.exposicao-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.exposicao-details {
    display: flex;
    gap: 25px;
    margin-bottom: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.15);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888;
    font-size: 0.9rem;
}

.detail-icon {
    font-size: 1.2rem;
    color: #C9A961;
}

/* ========================= */
/* SOBRE SECTION - MODIFICADA */
/* ========================= */

.sobre-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f5f5f5 0%, #ececec 100%);
    position: relative;
    overflow: hidden;
}

.sobre-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.sobre-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.sobre-text-block {
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
    text-align: center;
    max-width: 800px;
    margin-bottom: 50px;
}

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

.sobre-subtitle {
    font-family: "titulo";
    font-size: 32px;
    letter-spacing: 4px;
    color: #C9A961;
    margin-bottom: 35px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    text-align: center;
}

.sobre-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C9A961, transparent);
}

.sobre-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
     text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sobre-image-block {
    opacity: 0;
    animation: slideInRight 0.8s ease 0.2s forwards;
    width: 100%;
    max-width: 800px;
}

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

.sobre-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(201, 169, 97, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 100%;
}

.sobre-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(201, 169, 97, 0.2);
    border-radius: 12px;
    z-index: -1;
    transition: all 0.5s ease;
}

.sobre-image:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.sobre-image:hover::before {
    top: 25px;
    left: 25px;
}

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

/* Valores */
.valores-section {
    margin-bottom: 100px;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.valor-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.valor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C9A961, #b89440);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.valor-card:hover::before {
    transform: scaleX(1);
}

.valor-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.15);
    border-color: rgba(201, 169, 97, 0.2);
}

.valor-icon {
    font-size: 3.5rem;
    margin-bottom: 1.8rem;
    display: inline-block;
    transition: transform 0.5s ease;
}

.valor-card:hover .valor-icon {
    transform: scale(1.15) rotate(5deg);
}

.valor-title {
    font-family: "titulo";
    font-size: 1.4rem;
    color: #2b2b2b;
    margin-bottom: 1.2rem;
}

.valor-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Numeros */
.numeros-section {
    background: linear-gradient(135deg, #2b2b2b 0%, #1a1a1a 100%);
    padding: 80px 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.numeros-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A961' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.numero-item {
    text-align: center;
    padding: 25px;
}

.numero {
    font-family: "titulo";
    font-size: 4rem;
    color: #C9A961;
    margin-bottom: 0.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.numero::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: rgba(201, 169, 97, 0.3);
}

.numero-label {
    color: #b29975;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ========================= */
/* CONTATO SECTION - FORMULÁRIO RESPONSIVO */
/* ========================= */

.contato-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.contato-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.contato-form-container {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 800px;
    margin: 0 auto 60px;
}

.form-title {
    font-family: "titulo";
    font-size: 2.2rem;
    color: #2b2b2b;
    margin-bottom: 2.5rem;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C9A961, transparent);
}

.contato-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.contato-form .form-group:nth-child(1),
.contato-form .form-group:nth-child(2) {
    grid-column: span 1;
}

.contato-form .form-group:nth-child(3),
.contato-form .form-group:nth-child(4),
.contato-form .form-group:nth-child(5) {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: "subtitulo";
    font-size: 0.9rem;
    color: #2b2b2b;
    margin-bottom: 0.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
    box-sizing: border-box;
}

.form-input:hover,
.form-textarea:hover {
    border-color: rgba(201, 169, 97, 0.35);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #C9A961;
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.12);
}

.form-textarea {
    resize: none;
    min-height: 170px;
}

.form-submit {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    background: linear-gradient(135deg, #C9A961, #b89440);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 1.8rem;
    width: auto;
    min-width: 260px;
    gap: 10px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: left 0.5s ease;
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:hover {
    background: linear-gradient(135deg, #b89440, #9E7C53);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 169, 97, 0.35);
}

.form-submit:active {
    transform: translateY(0);
}

.contato-info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    width: 100%;
    max-width: 800px;
}

.info-block,
.social-block {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    width: 100%;
}

.info-block:hover,
.social-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(201, 169, 97, 0.1);
}

.info-title {
    font-family: "titulo";
    font-size: 1.6rem;
    color: #2b2b2b;
    margin-bottom: 1.8rem;
    letter-spacing: 2px;
    text-align: center;
}

.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
    color: #C9A961;
}

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

.info-label {
    font-family: "subtitulo";
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    color: #2b2b2b;
    font-size: 1rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 22px;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    text-decoration: none;
    color: #2b2b2b;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
    background: linear-gradient(135deg, #C9A961, #b89440);
    color: white;
    border-color: #C9A961;
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.25);
}

.social-icon {
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

.social-btn:hover .social-icon {
    transform: scale(1.2);
}

.mapa-placeholder {
    background: linear-gradient(135deg, #C9A961 0%, #b89440 50%, #9E7C53 100%);
    padding: 3.5rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(201, 169, 97, 0.35);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.mapa-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.mapa-content {
    color: white;
    position: relative;
    z-index: 1;
}

.mapa-text {
    font-family: "titulo";
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.mapa-subtext {
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================= */
/* ANIMATIONS APRIMORADAS */
/* ========================= */

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================= */
/* FOOTER */
/* ========================= */

.main-footer {
    position: relative;
    width: 100%;
    background-color: #2b2b2b;
    padding: 60px 0 30px;
    overflow: hidden;
    border-top: 1px solid #3a3a3a;
    margin-top: 80px;
}

.footer-content {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 10;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

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

.footer-heading {
    font-family: "titulo";
    font-size: 16px;
    letter-spacing: 3px;
    color: #C9A961;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-text {
    font-family: "subtitulo";
    font-size: 14px;
    color: #b29975;
    line-height: 1.8;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.social-link {
    font-family: "subtitulo";
    color: #b29975;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #C9A961;
    transition: width 0.3s ease;
}

.social-link:hover::after {
    width: 100%;
}

.social-link:hover {
    color: #C9A961;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3a3a3a;
}

.footer-copyright p {
    font-family: "subtitulo";
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
}

.admin-hidden-btn {
    color: #2B2B2B;
    text-decoration: none;
}

.whatsapp-icon {
    font-size: 26px;
    color: #25D366;
}

.admin-access-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(43, 43, 43, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 100;
    opacity: 0.6;
}

.admin-access-btn:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
}

.admin-icon {
    font-size: 1.3rem;
    color: #C9A961;
}

.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.whatsapp-icon {
    font-size: 28px;
    color: #ffffff;
    line-height: 1;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-link-btn {
    background: #C9A961;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.section-link-btn:hover {
    background: transparent;
    color: #C9A961;
    border-color: #C9A961;
    transform: translateY(-2px);
}

.section-link-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.section-link-btn:hover i {
    transform: translateX(4px);
}

/* ====================================
   CAROUSEL STYLES
   ==================================== */

.carousel-wrapper {
    position: relative;
    padding: 0 60px;
    margin: 2rem 0;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.carousel-item {
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: calc(33.333% - 1.333rem);
    scroll-snap-align: start;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 169, 97, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: #C9A961;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-btn span {
    font-size: 2rem;
    color: #1a1a1a;
    font-weight: bold;
    line-height: 1;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(201, 169, 97, 0.5);
}

.carousel-btn:disabled:hover {
    transform: translateY(-50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    padding: 0;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator:hover {
    background: rgba(201, 169, 97, 0.6);
    transform: scale(1.2);
}

.carousel-indicator.active {
    background: #C9A961;
    width: 30px;
    border-radius: 6px;
}

.carousel-item.artist-card,
.carousel-item.obra-card,
.carousel-item.exposicao-card {
    margin: 0;
}

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

.carousel-item {
    animation: slideIn 0.5s ease forwards;
}

.carousel-track.transitioning {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    color: #C9A961;
    font-size: 1.2rem;
}

.carousel-empty {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.1rem;
}

#carousel-artistas .carousel-item,
#carousel-obras .carousel-item,
#carousel-exposicoes .carousel-item {
    transition: transform 0.3s ease;
}

#carousel-artistas .carousel-item:hover,
#carousel-obras .carousel-item:hover,
#carousel-exposicoes .carousel-item:hover {
    transform: translateY(-10px);
}

.carousel-track.transitioning .carousel-item {
    pointer-events: none;
}

.carousel-btn:focus {
    outline: 3px solid rgba(201, 169, 97, 0.5);
    outline-offset: 2px;
}

.carousel-indicator:focus {
    outline: 2px solid rgba(201, 169, 97, 0.5);
    outline-offset: 2px;
}

/* ========================= */
/* RESPONSIVIDADE APRIMORADA */
/* ========================= */

/* Tablets grandes e desktops pequenos */
@media (max-width: 1200px) {
    .carousel-item {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }

    .header-content,
    .footer-content {
        padding: 0 30px;
    }

    .nav-menu {
        gap: 30px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 6px;
    }

    .section-title {
        font-size: 30px;
    }

    .sobre-content {
        max-width: 90%;
    }

    .contato-form-container {
        max-width: 90%;
        padding: 3rem;
    }

    .exposicoes-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .main-content {
        margin-top: 160px;
    }

    .art-circle {
        width: 250px;
        height: 250px;
    }

    .art-circle.left {
        top: -125px;
        left: -75px;
    }

    .art-circle.right {
        top: -135px;
        right: -75px;
    }

    .logo-aw {
        font-size: 48px;
        letter-spacing: 6px;
    }

    .logo-text {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .hero-section {
        padding: 80px 20px;
    }

    .artists-section,
    .obras-section,
    .exposicoes-section,
    .sobre-section,
    .contato-section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

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

    .valores-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Tablets pequenos e celulares grandes (landscape) */
@media (max-width: 768px) {
    /* Header Mobile */
    .mobile-menu-toggle {
        display: flex;
        padding-top: 30px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background-color: #2b2b2b;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
        z-index: 1060;
        padding: 40px 20px;
    }

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

    .nav-link {
        font-size: 16px;
        letter-spacing: 3px;
    }

    /* Logo mobile */
    .logo-text-wrapper {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        margin-left: 0;
    }

    .logoImg {
        width: 100px;
        margin-left: 0;
    }

    .logo-aw {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .logo-text {
        font-size: 16px;
        letter-spacing: 3px;
    }

    /* Ajustes gerais */
    .main-content {
        margin-top: 140px;
    }

    .hero-section {
        padding: 60px 15px;
    }

    .hero-title {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .btCatalogo {
        padding: 12px 24px;
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .section-header {
        flex-direction: column;
        align-items: stretch;
    }

    .section-link-btn {
        width: 100%;
        justify-content: center;
    }

    /* Seções */
    .artists-section,
    .obras-section,
    .exposicoes-section,
    .sobre-section,
    .contato-section {
        padding: 60px 15px;
    }

    /* Carousel Mobile */
    .carousel-wrapper {
        padding: 0 50px;
    }

    .carousel-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .carousel-track {
        gap: 1rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn span {
        font-size: 1.5rem;
    }

    /* Grids */
    .artists-grid,
    .obras-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .exposicoes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Números */
    .numeros-section {
        padding: 50px 25px;
    }

    .numeros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .numero {
        font-size: 3rem;
    }

    .numero-label {
        font-size: 0.85rem;
    }

    /* Valores */
    .valores-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Formulário Mobile - GRANDE MELHORIA */
    .contato-form-container {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    .form-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
        letter-spacing: 2px;
    }

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

    .contato-form .form-group:nth-child(1),
    .contato-form .form-group:nth-child(2),
    .contato-form .form-group:nth-child(3),
    .contato-form .form-group:nth-child(4),
    .contato-form .form-group:nth-child(5) {
        grid-column: span 1;
    }

    .form-input,
    .form-textarea {
        padding: 15px 18px;
        font-size: 16px; /* Evita zoom no iOS */
        border-radius: 8px;
    }

    .form-textarea {
        min-height: 140px;
    }

    .form-submit {
        grid-column: span 1;
        width: 100%;
        min-width: auto;
        padding: 16px 24px;
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    /* Info blocks mobile */
    .info-block,
    .social-block {
        padding: 2rem 1.5rem;
    }

    .info-title {
        font-size: 1.4rem;
    }

    .info-item {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .info-icon {
        font-size: 1.8rem;
    }

    /* Footer */
    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-social {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .main-footer {
        padding: 40px 20px 20px;
    }

    /* WhatsApp button mobile */
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        font-size: 24px;
    }
}

/* Celulares */
@media (max-width: 600px) {
    /* Header ultra compacto */
    .main-content {
        margin-top: 120px;
    }

    header {
        height: 120px;
        padding: 15px 0;
    }

    .logo-text-wrapper {
        margin-left: 0;
    }

    .logoImg {
        width: 80px;
    }

    .logo-aw {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .logo-text {
        font-size: 12px;
        letter-spacing: 2px;
    }

    /* Hero */
    .hero-title {
        font-size: 16px;
        letter-spacing: 2px;
        padding: 8px;
    }

    .hero-title::after {
        width: 40px;
        bottom: -10px;
    }

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

    /* Seções */
    .section-title {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .section-title::after {
        width: 70px;
        height: 2px;
    }

    .category-title {
        font-size: 18px;
        letter-spacing: 2px;
    }

    /* Carousel ultra mobile */
    .carousel-wrapper {
        padding: 0 40px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .carousel-btn span {
        font-size: 1.3rem;
    }

    /* Cards */
    .artist-card,
    .obra-card,
    .exposicao-card {
        border-radius: 10px;
    }

    .artist-image,
    .obra-image,
    .exposicao-image {
        height: 240px;
    }

    .artist-info,
    .obra-info,
    .exposicao-info {
        padding: 1.5rem;
    }

    /* Exposição details mobile */
    .exposicao-details {
        flex-direction: column;
        gap: 12px;
    }

    .exposicao-badge {
        padding: 8px 18px;
        font-size: 0.7rem;
        top: 15px;
        right: 15px;
    }

    /* Sobre */
    .sobre-subtitle {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .sobre-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Números mobile */
    .numeros-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .numero {
        font-size: 2.5rem;
    }

    .numero-label {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    /* Formulário ultra mobile */
    .form-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .form-label {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .form-input,
    .form-textarea {
        padding: 14px 16px;
        font-size: 16px;
    }

    .form-textarea {
        min-height: 120px;
    }

    .form-submit {
        padding: 15px 20px;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    /* Info blocks ultra mobile */
    .info-block,
    .social-block {
        padding: 1.5rem;
    }

    .info-title {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .info-value {
        font-size: 0.9rem;
    }

    /* Mapa placeholder */
    .mapa-placeholder {
        padding: 2.5rem 1.5rem;
    }

    .mapa-text {
        font-size: 1.3rem;
    }

    .mapa-subtext {
        font-size: 0.9rem;
    }
}

/* Celulares muito pequenos */
@media (max-width: 480px) {
    .carousel-wrapper {
        padding: 0 35px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
    }

    .carousel-btn span {
        font-size: 1.2rem;
    }

    .form-title {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 18px;
    }

    .whatsapp-btn {
        width: 48px;
        height: 48px;
    }

    .whatsapp-icon {
        font-size: 22px;
    }
}

/* ========================= */
/* UTILITARIOS */
/* ========================= */

html {
    scroll-padding-top: 100px;
}

*:focus-visible {
    outline: 2px solid #C9A961;
    outline-offset: 3px;
}

::selection {
    background: rgba(201, 169, 97, 0.3);
    color: #2b2b2b;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #e8e8e8;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #C9A961, #b89440);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #b89440, #9E7C53);
}

/* Touch devices - Carrossel com scroll nativo */
@media (hover: none) and (pointer: coarse) {
    .carousel-track {
        scroll-snap-type: x mandatory;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .carousel-track::-webkit-scrollbar {
        display: none;
    }

    .carousel-btn {
        display: none;
    }
}

/* Modo Escuro */
@media (prefers-color-scheme: dark) {
    .carousel-btn {
        background: rgba(201, 169, 97, 0.95);
    }

    .carousel-indicator {
        background: rgba(201, 169, 97, 0.4);
    }
}

/* Print */
@media print {
    .carousel-btn,
    .carousel-indicators,
    .mobile-menu-toggle,
    .whatsapp-btn {
        display: none;
    }

    .carousel-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .carousel-item {
        flex: none;
        min-width: auto;
    }
}