/* assets/css/style.css - Sem filtro preto e branco */

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #111111;
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-weight: 300;
    line-height: 1.4;
}

h1, h2, h3, .logo, .menu a, .section-title {
    font-weight: 300;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eaeaea;
    display: inline-block;
    padding-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.section-sub {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #888;
}

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

/* Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: #000;
}

.logo span {
    font-weight: 200;
    color: #555;
}

.menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    transition: opacity 0.2s;
}

.menu a:hover {
    opacity: 0.6;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000;
}

/* Hero Section */
.hero {
    height: 95vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background: #f6f6f6;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.92);
    z-index: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.hero-sub {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-explore {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 0.8rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-weight: 400;
}

.btn-explore:hover {
    background: white;
    color: black;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
    margin: 0 auto;
    display: block;
    border-radius: 4px;
}

.about-text {
    padding: 0;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 300;
}

/* Portfolio */
.portfolio {
    padding: 6rem 0;
    background: #fafafa;
}

.cat-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.cat-btn {
    background: none;
    border: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
    cursor: pointer;
    font-weight: 400;
    transition: 0.2s;
    color: #333;
}

.cat-btn.active,
.cat-btn:hover {
    background: #000;
    color: white;
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #eee;
}

.portfolio-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.03);
}

/* Stages */
.stages {
    padding: 6rem 0;
    background: #fff;
}

.stages-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.stage-card {
    flex: 1;
    min-width: 150px;
    border-top: 1px solid #ddd;
    padding-top: 2rem;
}

.stage-number {
    font-size: 2rem;
    font-weight: 300;
    color: #aaa;
    margin-bottom: 0.5rem;
}

.stage-title {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.stage-desc {
    font-size: 0.8rem;
    color: #555;
}

/* Instagram Feed / Últimas Postagens */
.instagram-feed {
    padding: 4rem 0;
    background: #f5f5f5;
}

.instagram-feed .section-title {
    font-size: 1.5rem;
}

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

.insta-item {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.insta-item:hover {
    transform: translateY(-3px);
}

.insta-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: 0.3s;
}

.insta-item:hover img {
    transform: scale(1.02);
}

.post-meta-info {
    padding: 1rem;
}

.post-date {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 0.5rem;
}

.post-title-link {
    text-decoration: none;
    color: inherit;
}

.post-title-link h4 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.post-title-link:hover h4 {
    opacity: 0.6;
}

.post-excerpt {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

.ver-todas-link {
    text-align: center;
    margin-top: 3rem;
}

.ver-todas-link a {
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #ccc;
    padding: 0.8rem 1.8rem;
    transition: all 0.3s ease;
    background: transparent;
}

.ver-todas-link a:hover {
    color: #fff;
    background: #000;
    border-color: #000;
}

/* Contact */
.contact {
    padding: 6rem 0;
    background: #fff;
}

.contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: space-between;
}

.contact-form {
    flex: 2;
    min-width: 260px;
}

.contact-info {
    flex: 1;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    transition: 0.2s;
}

input:focus, textarea:focus {
    border-color: #000;
    outline: none;
}

.btn-send {
    background: #000;
    color: white;
    border: none;
    padding: 0.9rem 1.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.contact-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-icons a {
    color: #222;
    font-size: 1.6rem;
    transition: opacity 0.2s;
}

.contact-icons a:hover {
    opacity: 0.5;
}

/* Footer */
footer {
    background: #0a0a0a;
    color: #ccc;
    padding: 3rem 5%;
    text-align: center;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 85vw;
    max-height: 80vh;
    object-fit: contain;
}

.close-lb {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37,211,102,0.3);
}

.whatsapp-tooltip {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    backdrop-filter: blur(4px);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.2s;
    margin-top: 0.5rem;
}

.footer-whatsapp:hover {
    color: #25D366;
}

.whatsapp-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    margin-top: 1rem;
    transition: color 0.2s;
}

.whatsapp-contact:hover {
    color: #25D366;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .about-img {
        max-width: 240px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .about-img {
        max-width: 200px;
        margin: 0 auto;
    }
    .about-text h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    .about-text p {
        text-align: center;
        font-size: 0.9rem;
    }
    .insta-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .contact-flex {
        flex-direction: column;
    }
}

/* Desktop grande */
@media (min-width: 1200px) {
    .about-img {
        max-width: 300px;
    }
}

/* Menu responsivo */
@media (max-width: 900px) {
    .menu {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 2rem;
        gap: 1rem;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .menu.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .stages-container {
        flex-direction: column;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float a {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .instagram-feed .section-title {
        font-size: 1.2rem;
    }
}

/* FORÇAR FOTOS DOS POSTS FICAREM COLORIDAS */
.post-content img,
.blog-card img,
.insta-item img,
.post-gallery img,
.gallery-item img,
.post-featured-image img {
    filter: none !important;
}

/* Remover qualquer filtro das imagens do blog */
.blog-card img {
    filter: none !important;
}

.insta-item img {
    filter: none !important;
}

.post-gallery img {
    filter: none !important;
}

.blog-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    /* filter: grayscale(100%); REMOVER */
    margin-bottom: 1rem;
    transition: 0.3s;
}

.post-gallery img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: grayscale(100%); REMOVER */
    transition: transform 0.3s;
}