/* =====================================
   HEADER / BREADCRUMB
===================================== */
.foto-header {
    background: #f3fff5;
    text-align: center;
    padding: 40px 0;
}
.foto-header h1 {
    font-size: 34px;
    color: #0f4a1c;
    font-weight: 700;
}
.foto-subtitle {
    font-size: 17px;
    margin-top: 10px;
    color: #205c2f;
}
.foto-breadcrumb {
    margin-top: 15px;
    font-size: 15px;
    color: #0f4a1c;
}
.foto-breadcrumb a {
    color: #0f4a1c;
    text-decoration: none;
}

/* =====================================
   GALERIA – página /foto
===================================== */
.galeria-premium {
    padding: 40px 0;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card da imagem */
.gal-item {
    display: block;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: transform .25s ease, box-shadow .25s ease;
}
.gal-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.gal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

/* Responsivo */
@media (max-width: 1024px) {
    .galeria-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .galeria-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* =====================================
   TEXTO
===================================== */
.conteudo-materia {
    padding: 40px 0;
}

/* Botões laterais */
.insp-btn {
    background: #0f4a1c;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    display: block;
    margin-bottom: 10px;
    transition: .2s ease;
}
.insp-btn:hover {
    opacity: .85;
}
.insp-btn.c2 {
    background: #fff;
    color: #0f4a1c;
    border: 1px solid #0f4a1c;
}

/* =====================================
   OUTRAS INSPIRAÇÕES – swiper cards
===================================== */
.mic-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #0f4a1c;
    margin-bottom: 20px;
}

.mic-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    transition: .25s ease;
}
.mic-card:hover {
    transform: translateY(-4px);
}

.mic-thumb img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.mic-title-card {
    padding: 10px;
    text-align: center;
    font-size: 14px;
    color: #0f4a1c;
}

/* =====================================
   CTA FINAL
===================================== */
.cta-modern {
    background: linear-gradient(180deg, #0b3d19 0%, #064416 100%);
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.cta-box {
    background: linear-gradient(180deg, #0E411B 0%, #052E12 100%);
    padding: 50px 40px;
    border-radius: 28px;
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
    box-shadow: 0 25px 40px rgba(0,0,0,0.28);
}

.cta-box h2 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.cta-box p {
    color: #cdecd5;
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Botões CTA */
.cta-btn {
    padding: 14px 32px;
    font-size: 17px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    transition: .25s ease;
}

.btn-red {
    background: #cbe6cd;
    color: #8a1f00;
}
.btn-red:hover {
    background: #e3f2e5;
}

.btn-white {
    background: #ffffff;
    color: #0f4a1c;
}
.btn-white:hover {
    background: #f5f5f5;
}

/* CTA mobile */
@media(max-width: 640px) {
    .cta-box h2 { font-size: 24px; }
    .cta-box p { font-size: 16px; }
    .cta-btn { font-size: 15px; padding: 12px 26px; }
}

/* =====================================
   /fotos – Texto introdutório SEO
===================================== */
.fotos-intro {
    padding: 25px 0 10px;
}
.fotos-intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.6;
    color: #1c3f24;
    text-align: center;
}
/* ================================
   LISTAGEM /FOTOS (GRID PRINCIPAL)
================================ */
.inspiracoes-list {
    padding: 50px 0 70px;
}

.insp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

/* CARD DE INSPIRAÇÃO */
.insp-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 7px 20px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.insp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.13);
}

/* Imagem no card */
.insp-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

/* Título no card */
.insp-title-card {
    font-size: 18px;
    font-weight: 600;
    color: #0f4a1c;
    padding: 16px 20px;
    text-align: center;
    line-height: 1.25;
}

/* Ajustes responsivos */
@media(max-width: 768px) {
    .insp-img img {
        height: 200px;
    }
    .insp-title-card {
        font-size: 16px;
    }
}
