/* flat.css */

.page-hero__bg.flat {
    background-image: url('../../imagens/bg-flat.png');
}

/* Flat About Section */
.flat-about {
    padding: 80px 0 0;
    background-color: #fff;
}

.flat-about .container {
    max-width: none;
}

.flat-about__header {
    margin-bottom: 30px;
    text-align: center;
}

.flat-about__header .section-title::after {
    content: "";
    display: block;
    width: 290px;
    height: 3px;
    background-color: #21201B;
    margin: 10px auto 0;
}

.flat-about__text {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.flat-about__text p {
    margin-bottom: 15px;
}

/* Gallery Grid */
.flat-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.flat-gallery__main {
    position: relative;
    width: 975px;
    height: 510px;
    margin: 0 auto 70px;
}

/* 📸 IMAGEM */
.flat-gallery__main a {
    position: relative;
    display: block;
}

.flat-gallery__main img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

/* 🔲 BARRA PRETA (mais ao fundo) */
.flat-gallery__main::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -187.5px -530px;
    width: 1060px;
    height: 375px;
    background: #1a1a1a;
    z-index: 0;
}

/* 🟨 BARRA DOURADA (na frente da preta) */
.flat-gallery__main::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -205px -515px;
    width: 1030px;
    height: 410px;
    background: var(--color-gold);
    z-index: 1;
}

.flat-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.flat-gallery__grid a {
    overflow: hidden;
    display: block;
}

.flat-gallery__grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    aspect-ratio: 4/3;
}

.flat-gallery__grid a:hover img {
    transform: scale(1.05);
}


/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.testimonials__header {
    margin-bottom: 50px;
}

.testimonials__header .section-subtitle {
    margin-bottom: 0;
    font-size: 20px;
    letter-spacing: 2px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.testimonial-card {
    text-align: center;
    padding: 30px 20px 0;
    height: 290px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}

/* linha entre os itens */
.testimonial-card::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 20%;
    width: 1px;
    height: 60%;
    background: #ddd;
}

/* remove no último */
.owl-item:last-child .testimonial-card::after {
    display: none;
}

.testimonial-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    background-color: #222;

    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.017,21v-7.391c0-5.704,3.731-9.57,8.983-10.609l0.995,2.151c-2.432,0.917-3.995,3.638-3.995,5.849h4v10H14.017z M0,21v-7.391C0,7.905,3.731,4.039,8.983,3l0.995,2.151c-2.432,0.917-3.995,3.638-3.995,5.849h4v10H0z"/></svg>') center/contain no-repeat;

    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.017,21v-7.391c0-5.704,3.731-9.57,8.983-10.609l0.995,2.151c-2.432,0.917-3.995,3.638-3.995,5.849h4v10H14.017z M0,21v-7.391C0,7.905,3.731,4.039,8.983,3l0.995,2.151c-2.432,0.917-3.995,3.638-3.995,5.849h4v10H0z"/></svg>') center/contain no-repeat;
}

.testimonial-text {
    font-size: 14px;
    color: #777;
    line-height: normal;
    margin-bottom: 0;
    font-style: normal;
}

.testimonial-author {
    font-weight: 700;
    font-size: 14px;
    color: #444;
    justify-self: flex-end;
    width: calc(100% - 30px);
    bottom: 0;
    position: absolute;
}